Issue #445💬 AnsweredOpened October 24, 2017by suchithmahadi0 reactions

Calling a function which is outside the component same as explained in issue #395

快速解答by artf

If you want a function attached inside the string you have to pass a string

Read full answer below ↓

Question

代码片段TEXT
I am calling a function which is outside the component same as explained in issue #395
but it is returning a string instead of a function
I want to call defaults.drawGauge function in script and pass the id that is created dynamically

I am stuck please help me out
grapesjs.plugins.add('liquid-gauge-plugin', function(editor, options){


    let defaults = {
        // this function has to be called in  component script
        drawGauge:function(id){
            alert("draw" + id);
        }
    }

    for (let name in defaults) {
        if (!(name in options))
            options[name] = defaults[name];
    }
    var domComponents = editor.BlockManager;
    domComponents.add('h1-block', {
        id: 'liquid',
        label: 'Liquid Gauge',
        category: 'plugin',
        attributes: {
            class: 'fa fa-square-o'
        },
        style: {
            padding: '100px'
        },
        content: {
            type: 'liquid'
        }
    });

    // Get DomComponents module
    var comps = editor.DomComponents;

    // Get the model and the view from the default Component type
    var defaultType = comps.getType('default');
    var defaultModel = defaultType.model;
    var defaultView = defaultType.view;
    comps.addType('liquid', {
        model: defaultModel.extend({
                defaults: Object.assign({}, defaultModel.prototype.defaults, {
                    removable: true,
                    d: options.drawGauge,
                    draggable: true,
                    editable: true,
                    copyable: true,
                    badgable: true,
                    highlightable: true,
                    resizable: true,
                    droppable: true,
                    content: `<svg style="width:90%"; >
                    </svg>`,
                    script: function() {
                        console.log(this.id);
                        // I want to call defaults.drawGauge function here and pass this.id
                        var di =   `{[ d ]}`;
                        console.log(typeof(di));

                    },

                    traits: [

                        {
                            type: 'color',
                            label: 'Circle',
                            name: 'circles',
                            changeProp: 1,
                            // and update once traits changes
                            // options: options.drawGauge.update()
                        },
                        {
                            type: 'color',
                            label: 'wave',
                            name: 'wave',
                            changeProp: 1
                        },
                        {
                            type: 'color',
                            label: 'waveText',
                            name: 'waveText',
                            changeProp: 1
                        },
                        {
                            type: 'color',
                            label: 'Text Color',
                            name: 'textColor',
                            changeProp: 1
                        },
                    ],
                })
            },
            {
                isComponent: function(el) {
                    if (el.tagName == 'LIQUID') {
                        return {
                            type: 'liquid'
                        };
                    }
                },
            }),

        // Define the View
        view: defaultType.view.extend({

            render: function() {
                defaultType.view.prototype.render.apply(this, arguments);
                return this;
            },
        }),
    });
})

Answers (3)

artfOctober 25, 2017

If you want a function attached inside the string you have to pass a string

drawGauge: `function(id){
        alert(1);
}`
suchithmahadiOctober 25, 2017

Sorry @artf i didn't understood what exactly you are saying, can you please elaborate? Here i want to call the function ("drawGauge" which is in 3rd line) in domComponents script function. Please explain related to the problem given above. Thanks for your help. please help in this as it is very critical for me and i am stuck on this from past 1 week.

artfOctober 25, 2017

Inside your script property, {[ d ]} will be replaced with a d property of the componet and it can't be a function, so if your final result should be like this:

var di =  function() {...};

you have to set a string for d

...
removable: true,
d: "function() {...}",// <- string, NOT function
draggable: true,
editable: true,
...

Related Questions and Answers

Continue research with similar issue discussions.

Paid Plugins That Match This Issue

Curated by issue keywords and label relevance to help you ship faster.

View all plugins

Loading paid plugin recommendations...

Free option

Check the open-source GrapesJS plugins on GitHub or run a quick search in our free catalog.

Browse free plugins →
Premium option

Premium plugins ship with support, regular updates, and production-ready features — save days of integration work.

Browse premium plugins →

Related tutorials

In-depth guides on the same topic.

All tutorials →

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.