Make Css style to not be returned
Question
How to prevent the CSS of a block/component to be not returned when we used
editor.getCss();
it's like
https://grapesjs.com/docs/api/component.html#tohtml
but should be something like toCSS inside custom component
Answers (3)
toHTML() {
return '';
},
toCSS() {
return '';
},
The component has the getStyle method which returns an object like this { color: 'red'}. If the returning object is empty no rule will be created in the code, but the same is applied in the canvas, so you won't see your styles.
What you can do is create a custom component like this:
domc.addType('no-css-in-code', {
model: {
...
getStyle() {
if (exportingCode) {
return {}
} else {
return defaultModel.prototype.getStyle.apply(this);
}
}
},
});
So before exporting the code you can use exportingCode as a flag
@artf the solution "getStyle()" that you provided can only be applied to
style: {
"pointer-events":"none";
},
what if this component has a class of "isNewComponent" and has style of
.isNewComponent{
background-color: #222;
}
is possible for the editor to not include the above style (with a class) when we call editor.getCss();
Related Questions and Answers
Continue research with similar issue discussions.
Issue #3258
QUESTION: Prevent/Disable Custom Blocks from being dropped inside other Custom Blocks
Hello, I have a custom component, let's call it a Section Block. I want to prevent the user from dropping Section Blocks inside other Secti...
Issue #2651
[QUESTION] Background image via inline style not accessible?
This is very simple, but i can not access the background image set via CSS, within my custom block 'content'. How do i change the backgroun...
Issue #1255
[QUESTION]: How to set editor html contents from custom component?
I'm having trouble getting a custom block+component to display its template HTML inside the grapes editor. Within the exported HTML, the ma...
Issue #1990
[QUESTIONS] need to call method before remove the html component
Hi, I need to call the method before remove the HTML component. how can I do that calling method like editor.on('block:drag:stop', function...
Paid Plugins That Match This Issue
Curated by issue keywords and label relevance to help you ship faster.
Loading paid plugin recommendations...
Browse Plugin Categories
Jump directly to plugin category pages on the marketplace.