Skip to content

Latest commit

 

History

History
113 lines (82 loc) · 4.55 KB

File metadata and controls

113 lines (82 loc) · 4.55 KB
layout group subgroup title menu_title menu_order version github_link
default
jsdg
1_Javascript
Using JavaScript mixins
Using JavaScript mixins
6
2.0
javascript-dev-guide/javascript/js_mixins.md

{::options syntax_highlighter="rouge" /}

This topic describes how to use JavaScript mixins to overwrite JavaScript components' methods in Magento.

Overview of JS mixins

One of the ways to implement JavaScript mixins is declaring them on the RequireJS loading level. This approach allows to modify (extend/overwrite) result that a JavaScript component returns before it is used anywhere.

The scope of your mixin usage depends on the application area it is defined for:

  • frontend: the mixin is applied for all usages of the modified JS component on the storefront
  • adminhtml: the mixin is applied for all usages of the modified JS component in the Admin panel
  • base: the mixin is applied for all all usages of the modified JS component, if nothing else is specified in frontend and adminhtml

Generally, to add a JS mixin you need to do the following:

  1. Define a mixin as a separate AMD module. It should return a callback function. This function must get the target JS component (module) as an argument.
  2. Declare the AMD module you created as a mixin to the target module.

There are more details for each step in the following section.

Add a JS mixin

To add a JS mixin take the following steps:

  1. In your custom module, define a mixin as a separate AMD module that returns a callback function. Add the mixin file anywhere in the <your_module_dir>/view/%area%/web directory. In this notation %area% stands for the [application area], and might be one of the following: frontend, backend, or base. There are no strict requirements for the mixin file naming.

    Sample mixin

    Orange/Sample/view/base/web/js/columns-mixin.js:

define(function () { 'use strict';

var mixin = {

    /**
     *
     * @param {Column} elem
     */
    isDisabled: function (elem) {
        return elem.blockVisibility || this._super();
    }
};

return function (target) { // target == Result that Magento_Ui/.../columns returns.
    return target.extend(mixin); // new result that all other modules receive
};

});

This sample mixin introduces a new `blockVisibility` property for [Grid](http://devdocs.magento.com/guides/v2.1/ui_comp_guide/components/ui-listing-grid.html) columns.
2. In the `requirejs-config.js` configuration file in your module, declare the AMD module you created as a mixin to the target module. The file must be located in the `<your_module_dir>/view/%area%` directory. Use the following syntax:

``` javascript
var config = {
 config: {
     mixins: {
         '%path/to/target/component%': {
             '%path/to/mixin/component%': true
         }
     }
 }
};

where:

  • %path/to/target/component% is the RequireJS ID (alias/path) of the target component (module)
  • %path/to/mixin/component% is the RequireJS ID (alias/path) of the mixin
  • mixins is the RequireJS ID (alias/path) for the mage/requirejs/mixin.js file

For details about the config RequireJS option, see http://requirejs.org/docs/api.html#config-moduleconfig.

Sample RequireJS configuration file

<Orange_Sample_module_dir>/view/base/web/js/requirejs-config.js:

var config = {
 config: {
     mixins: {
         'Magento_Ui/js/grid/controls/columns': {
             'Orange_Sample/js/columns-mixin': true
         }
     }
 }
};

Example of usage

For example of using JavaScript mixins, see the Magento_CheckoutAgreement module files:

Related reading