Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/app/code/Amasty/Base/view/adminhtml/web/js/actions/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/Base/view/adminhtml/web/js/actions/createMenuItem.js

/**
 *  Amasty Base Create Menu Item Action
 */

define([
    'mageUtils',
    'uiLayout'
], function (utils, layout) {
    'use strict';

    /**
     * Create Ui Item
     *
     * @param {Object} data
     * @param {number} index
     * @return {void}
     */
    return function (data, index) {
        var field;

        field = utils.extend(data, {
            'name': this.name + '.' + index,
            'component': 'Amasty_Base/js/menu/item',
            'template': data.type === 'solution' ? this.templates.dropdown : 'Amasty_Base/submenu/components/menu_item',
            'provider': this.provider
        });

        layout([field]);
        this.insertChild(field.name);
    };
});