まず、カートページでのMagentoギフトメッセージの仕組みを理解する必要があります。
vendor/magento/module-gift-message/view/frontend/templates/cart/gift_options.phtml
このファイルは私たちの光です。その論理を理解すれば、多くの時間を節約できます。
window.giftOptionsConfig
:このグローバル変数は設定に使用されます。チェックアウト時に再作成する必要があります。
カスタムロジックの実装を始めましょう。新しいモジュールを作成し、次のロジックを追加します。
app / code / Vendor / CheckoutDemo / view / frontend / layout / checkout_index_index.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="content">
<referenceBlock name="checkout.root">
<arguments>
<argument name="jsLayout" xsi:type="array">
<item name="components" xsi:type="array">
<item name="checkout" xsi:type="array">
<item name="children" xsi:type="array">
<item name="steps" xsi:type="array">
<item name="children" xsi:type="array">
<item name="shipping-step" xsi:type="array">
<item name="children" xsi:type="array">
<item name="shippingAddress" xsi:type="array">
<item name="config" xsi:type="array">
<item name="template" xsi:type="string">Vendor_CheckoutDemo/shipping</item>
</item>
<item name="children" xsi:type="array">
<!--Gift Options Cart-->
<item name="giftOptionsCart" xsi:type="array">
<item name="displayArea" xsi:type="string">gift_options</item>
<item name="component" xsi:type="string">Magento_GiftMessage/js/view/gift-message</item>
<item name="config" xsi:type="array">
<item name="template" xsi:type="string">Magento_GiftMessage/gift-message</item>
<item name="formTemplate" xsi:type="string">Magento_GiftMessage/gift-message-form</item>
</item>
</item>
<!--End Gift Option-->
</item>
</item>
</item>
</item>
</item>
</item>
</item>
</item>
</item>
</argument>
</arguments>
</referenceBlock>
<block class="Magento\Framework\View\Element\Template" name="gift.messages.data" template="Vendor_CheckoutDemo::gift_options.phtml"/>
</referenceBlock>
</body>
</page>
3つのメモがあります。
-配送手順では、カスタムの配送htmlテンプレートを使用します。カスタム領域を追加する方が簡単です。
<item name="shippingAddress" xsi:type="array">
<item name="config" xsi:type="array">
<item name="template" xsi:type="string">Vendor_CheckoutDemo/shipping</item>
</item>
-ギフトエリア:からコンテンツをコピーしましたvendor/magento/module-gift-message/view/frontend/layout/checkout_cart_index.xml
。
<!--Gift Options Cart-->
<item name="giftOptionsCart" xsi:type="array">
<item name="displayArea" xsi:type="string">gift_options</item>
<item name="component" xsi:type="string">Magento_GiftMessage/js/view/gift-message</item>
<item name="config" xsi:type="array">
<item name="template" xsi:type="string">Magento_GiftMessage/gift-message</item>
<item name="formTemplate" xsi:type="string">Magento_GiftMessage/gift-message-form</item>
</item>
</item>
<!--End Gift Option-->
-ギフト設定
<block class="Magento\Framework\View\Element\Template" name="gift.messages.data" template="Vendor_CheckoutDemo::gift_options.phtml"/>
app / code / Vendor / CheckoutDemo / view / frontend / templates / gift_options.phtmlを作成します
<script>
window.giftOptionsConfig = window.checkoutConfig.giftMessageConfig;
</script>
giftOptionsConfig
ギフトメッセージのjsロジックがグローバル変数を使用するため、グローバル変数を使用します。
app / code / Vendor / CheckoutDemo / etc / frontend / di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Checkout\Model\CompositeConfigProvider">
<arguments>
<argument name="configProviders" xsi:type="array">
<item name="gift_message_checkout_config_provider" xsi:type="object">Vendor\CheckoutDemo\Model\GiftMessageConfigProvider\Proxy</item>
</argument>
</arguments>
</type>
</config>
app / code / Vendor / CheckoutDemo / Model / GiftMessageConfigProvider.php
<?php
namespace Vendor\CheckoutDemo\Model;
class GiftMessageConfigProvider extends \Magento\GiftMessage\Model\GiftMessageConfigProvider
{
public function getConfig()
{
$config = parent::getConfig();
return ['giftMessageConfig' => $config];
}
}
配送用htmlを作成し、コンテンツをからvendor/magento/module-checkout/view/frontend/web/template/shipping.html
カスタムにコピーしますapp/code/Vendor/CheckoutDemo/view/frontend/web/template/shipping.html
。そして、カスタムギフトメッセージリージョンを追加します。
app / code / Vendor / CheckoutDemo / view / frontend / web / template / shipping.html
......
<div class="step-title" translate="'Gift Options'" data-role="title" />
<each args="getRegion('gift_options')" render="" />
......
結果: