Magento2:コアjsモジュールprice-box.jsをオーバーライドする方法


15

私は拡張する必要がありますMagento_Catalog/js/price-box.js。「ミックスイン」機能を使用しましたが、では機能しませんprice-box.js

requirejs-config.js

var config = {
    config: {
        mixins: {
            'Magento_Catalog/js/price-box': {
                'My_Module/js/price-box/pluggin': true
            }
        }
    }
};

My_Module/view/frontend/web/js/price-box/pluggin.js

define(function () {
    'use strict';

    return function (target) { 
        // modify target
        var reloadPrice = target.reloadPrice;
        target.reloadPrice = function() {
           cosole.log("hello");
        };
        return target;
    };
});

Yogesh、これについてもう少し情報を提供してください。
Codrain Technolabs Pvt Ltd

回答:


12
  1. カスタムモジュールのPriceBox jsファイルをrequirejs-config.js、コアモジュールで既に宣言されている名前と同じ名前で指定します。私たちの場合、それはpriceBox以下のようなものです。あなたのモジュールrequirejs-config.jsは次のようになります

    var config = {
        map: {
             '*': {
                    priceBox:'namespace_modulename/js/custompricebox',
             }
        }
    };
  2. 次に、custompricebox.js上記で指定したパスにファイルを作成します。私はあなたreloadPriceが価格ボックスの方法を拡張したいと仮定しています。あなたはので、custompricebox.js以下のようになります。

    define(
        [
            'jquery',
            'Magento_Catalog/js/price-utils',
            'underscore',
            'mage/template',
            'mage/priceBox',
            'jquery/ui'
        ],
        function ($, utils, _, mageTemplate) {
    
            'use strict';
    
            $.widget('yournamespace.custompriceBox', $.mage.priceBox, {
                /**
                 * Render price unit block.
                 */
                reloadPrice: function reDrawPrices() {
    
                    var priceFormat = (this.options.priceConfig && this.options.priceConfig.priceFormat) || {},
                        priceTemplate = mageTemplate(this.options.priceTemplate);
    
                    _.each(this.cache.displayPrices, function (price, priceCode) {
                        price.final = _.reduce(price.adjustments, function(memo, amount) {
                            return memo + amount;
                        }, price.amount);
    
                        // you can put your custom code here. 
    
                        price.formatted = utils.formatPrice(price.final, priceFormat);
    
                        $('[data-price-type="' + priceCode + '"]', this.element).html(priceTemplate({data: price}));
                    }, this);
                },
    
    
            });
    
            return $.yournamespace.custompriceBox;
        }
    );
  3. このコードはテストされていないことに注意してください。いくつかの構文エラーがある可能性があります。これに関するヘルプが必要な場合はお知らせください。


こんにちはYagnesh、Mixinで達成できますか?オーバーライドする代わりに、拡張することもできますか?
Prafulラージプート

@PrafulRajput、私はまだmixinを使用していません。一度やったら必ずこれを更新します。
Codrain Technolabs Pvt Ltd

2
どういうわけかこれは私のために機能しません(ver。2.1.2)。また、mage / priceBoxはスクリプトエラーを発生させます。
-TrytoFly

1
誰かがMixinを通してそれを書き換えることに成功しましたか?
ポルラヴァリテラ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.