คอมโพเนนต์กริดของวีโอไอพีไม่ได้เรียงอย่างถูกต้อง


16

ฉันได้กำหนดค่าองค์ประกอบกริดใน Magento - และพฤติกรรมการเรียงลำดับดูเหมือนขาด ฉันจะแก้ไขข้อบกพร่องนี้ได้ในระดับ javascript และ / หรือใครมีความคิดใด ๆ ว่าทำไมสิ่งนี้อาจเกิดขึ้น?

ถ้าฉันเรียงลำดับกริดหนึ่งครั้งจะมีการร้องขอ ajax และทุกอย่างจะเรียงลำดับอย่างถูกต้อง

ป้อนคำอธิบายรูปภาพที่นี่

อย่างไรก็ตามการเรียงลำดับที่สองโดยไม่มีการร้องขอ ajax จะแสดงผลกริดด้วย ID เดียวกันทั้งหมด

ป้อนคำอธิบายรูปภาพที่นี่

พฤติกรรมไม่ได้เกิดขึ้นซ้ำบนกริดหลักของ Magento ดังนั้นฉันค่อนข้างแน่ใจว่านี่คือสิ่งที่ฉันทำ ฉันไม่ทราบว่าระบบคอมโพเนนต์ ui นั้นดีพอที่จะทราบว่าจะเริ่มแก้ไขข้อบกพร่องนี้ได้ที่ไหน

คำตอบ:


21

เอาล่ะฉันไม่สามารถหลอกให้เข้าใจว่าทำไม แต่ปัญหาที่เกิดขึ้นเป็นdataข้อโต้แย้งของฉันdataProviderอาร์กิวเมนต์

<!-- ... -->
<argument name="dataProvider" xsi:type="configurableObject">
    <!-- ... --->
    <argument name="data" xsi:type="array">
        <item name="config" xsi:type="array">
            <item name="update_url" xsi:type="url" path="mui/index/render"/>
        </item>
    </argument>
    <!-- ... -->
</argument>
<!-- ... -->

เมื่อฉันเปรียบเทียบสิ่งนี้กับกริดหลักสองสามdataข้ออาร์กิวเมนต์นั้นหายไปจากstorageConfigโหนดโดยมีindexFieldโหนดย่อยกับคีย์หลักของแบบจำลองของฉัน

<argument name="data" xsi:type="array">
    <item name="config" xsi:type="array">
        <item name="update_url" xsi:type="url" path="mui/index/render"/>
        <item name="storageConfig" xsi:type="array">
            <item name="indexField" xsi:type="string">pulsestorm_commercebug_log_id</item>
        </item>                    

    </item>                          
</argument>

เมื่อฉันเพิ่มโหนดเหล่านี้ฟังก์ชันการเรียงลำดับจะถูกกู้คืน


เพิ่งพบปัญหาเดียวกันฉันคิดว่ามันย้อนกลับหรือโหลดค่าจากหน่วยเก็บข้อมูลโดยดัชนีแถวแทนที่จะเป็น id แถวข้อมูลแม้ว่าจะไม่สมเหตุสมผลว่าทำไมข้อมูลจึงซ้ำซ้อน ขอบคุณสำหรับคำตอบ
LM_Fielding

7

TL; DR

นี่เป็นปัญหาที่น่าสนใจอย่างแน่นอน

นี่คือวิธีที่ฉันเข้าใจระบบ แต่ฉันอาจไม่ถูกต้อง 100%

ดังที่คุณเห็นการคลิกคอลัมน์ส่วนหัวจะสร้างคำขอ AJAX ไปยังเส้นทางต่อไปนี้: /admin_key/mui/index/renderด้วยพารามิเตอร์ต่อไปนี้:

  • ฟิลเตอร์ [placeholder]
  • isAjax
  • namespace
  • เพจ [ปัจจุบัน]
  • เพจ [PageSize]
  • ค้นหา
  • การเรียงลำดับ [ทิศทาง]
  • การเรียงลำดับ [ข้อมูล]

อันสุดท้ายคือฟิลด์ที่คุณกำลังเรียงลำดับกริดของคุณ

เส้นทางนี้มีการประกาศตามค่าเริ่มต้นในapp/code/Magento/Ui/view/base/ui_component/etc/definition.xml:

<insertListing class="Magento\Ui\Component\Container">
    <argument name="data" xsi:type="array">
        <item name="config" xsi:type="array">
            <item name="component" xsi:type="string">Magento_Ui/js/form/components/insert-listing</item>
            <item name="update_url" xsi:type="url" path="mui/index/render"/>
            <item name="render_url" xsi:type="url" path="mui/index/render"/>
            <item name="autoRender" xsi:type="boolean">false</item>
            <item name="dataLinks" xsi:type="array">
                <item name="imports" xsi:type="boolean">true</item>
                <item name="exports" xsi:type="boolean">false</item>
            </item>
            <item name="realTimeLink" xsi:type="boolean">true</item>
        </item>
    </argument>
</insertListing>

แต่ในรายการ ui_component XML จะมีการประกาศด้วย:

        <argument name="data" xsi:type="array">
            <item name="config" xsi:type="array">
                <item name="component" xsi:type="string">Magento_Ui/js/grid/provider</item>
                <item name="update_url" xsi:type="url" path="mui/index/render"/>
                <item name="storageConfig" xsi:type="array">
                    <item name="indexField" xsi:type="string">page_id</item>
                </item>
            </item>
        </argument>

เราต์นี้จัดการโดยapp/code/Magento/Ui/Controller/Adminhtml/Index/Render.phpยึดตามพารามิเตอร์เนมสเปซ (ซึ่งโดยปกติจะเป็นชื่อขององค์ประกอบ UI ของคุณ)

public function execute()
{
    if ($this->_request->getParam('namespace') === null) {
        $this->_redirect('admin/noroute');
        return;
    }

    $component = $this->factory->create($this->_request->getParam('namespace'));
    $this->prepareComponent($component);
    $this->_response->appendBody((string) $component->render());
}

ตำแหน่งที่prepareComponentเมธอดจะเรียกซ้ำบนคอมโพเนนต์ชายน์:

protected function prepareComponent(UiComponentInterface $component)
{
    foreach ($component->getChildComponents() as $child) {
        $this->prepareComponent($child);
    }
    $component->prepare();
}

เมื่อเตรียมส่วนประกอบของคอลัมน์การเรียงลำดับคอลัมน์จะถูกจัดการโดยapp/code/Magento/Ui/Component/Listing/Columns/Column.php:

public function prepare()
{
    $this->addFieldToSelect();

    $dataType = $this->getData('config/dataType');
    if ($dataType) {
        $this->wrappedComponent = $this->uiComponentFactory->create(
            $this->getName(),
            $dataType,
            array_merge(['context' => $this->getContext()], (array) $this->getData())
        );
        $this->wrappedComponent->prepare();
        $wrappedComponentConfig = $this->getJsConfig($this->wrappedComponent);
        // Merge JS configuration with wrapped component configuration
        $jsConfig = array_replace_recursive($wrappedComponentConfig, $this->getJsConfig($this));
        $this->setData('js_config', $jsConfig);

        $this->setData(
            'config',
            array_replace_recursive(
                (array)$this->wrappedComponent->getData('config'),
                (array)$this->getData('config')
            )
        );
    }

    $this->applySorting();

    parent::prepare();
}

โดยที่applySorting()เมธอดนั้นอิงตามพารามิเตอร์การเรียงลำดับและเพียงเพิ่มคำสั่งไปยังผู้ให้บริการข้อมูล:

protected function applySorting()
{
    $sorting = $this->getContext()->getRequestParam('sorting');
    $isSortable = $this->getData('config/sortable');
    if ($isSortable !== false
        && !empty($sorting['field'])
        && !empty($sorting['direction'])
        && $sorting['field'] === $this->getName()
    ) {
        $this->getContext()->getDataProvider()->addOrder(
            $this->getName(),
            strtoupper($sorting['direction'])
        );
    }
}

เมื่อทุกองค์ประกอบถูกเตรียมไว้คลาสการกระทำจะแสดงส่วนประกอบ (ซ้ำอีกครั้ง) สำหรับการตอบสนอง:

$this->_response->appendBody((string) $component->render());

ฉันคิดว่านั่นเป็นขั้นตอน PHP ที่สำคัญของสิ่งที่เกิดขึ้นระหว่างการเรียงลำดับ

ตอนนี้ถึง JS แล้ว URL การแสดงผลและการอัพเดท (ประกาศในdefinition.xmlด้านบน) จะถูกกำหนดให้กับองค์ประกอบในapp/code/Magento/Ui/view/base/web/js/form/components/insert.js:

return Element.extend({
    defaults: {
        content: '',
        template: 'ui/form/insert',
        showSpinner: true,
        loading: false,
        autoRender: true,
        visible: true,
        contentSelector: '${$.name}',
        externalData: [],
        params: {
            namespace: '${ $.ns }'
        },
        renderSettings: {
            url: '${ $.render_url }',
            dataType: 'html'
        },
        updateSettings: {
            url: '${ $.update_url }',
            dataType: 'json'
        },
        imports: {},
        exports: {},
        listens: {},
        links: {
            value: '${ $.provider }:${ $.dataScope}'
        },
        modules: {
            externalSource: '${ $.externalProvider }'
        }
    }

ยังคงอยู่ในไฟล์นี้มีrequestDataวิธีการที่ใช้เพื่อดึงข้อมูล AJAX:

    requestData: function (params, ajaxSettings) {
        var query = utils.copy(params);

        ajaxSettings = _.extend({
            url: this['update_url'],
            method: 'GET',
            data: query,
            dataType: 'json'
        }, ajaxSettings);

        this.loading(true);

        return $.ajax(ajaxSettings);
    }

คุณจะเห็นว่าวิธีนี้เรียกว่าเมื่อrender()วิธีการที่เรียกว่า:

        $.async({
            component: this.name,
            ctx: '.' + this.contentSelector
        }, function (el) {
            self.contentEl = $(el);
            self.startRender = true;
            params = _.extend({}, self.params, params || {});
            request = self.requestData(params, self.renderSettings);
            request
                .done(self.onRender)
                .fail(self.onError);
        });

เมื่อเสร็จแล้วจะมีการเรียกวิธีการโทรกลับเพื่อใช้ข้อมูล มันคือonRender():

    onRender: function (data) {
        this.loading(false);
        this.set('content', data);
        this.isRendered = true;
        this.startRender = false;
    }

ฉันคิดว่านั่นคือสิ่งที่เนื้อหาใหม่ถูกนำไปใช้


รหัส Columbo ...
LM_Fielding
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.