Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/cartforge.co/app/code/Amasty/Base/view/adminhtml/web/js/menu/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartforge.co/app/code/Amasty/Base/view/adminhtml/web/js/menu/search.js
/**
 *  Amasty Base Search UI Component
 */

define([
    'ko',
    'uiElement'
], function (ko, Element) {
    'use strict';

    return Element.extend({
        defaults: {
            template: 'Amasty_Base/submenu/components/search',
            links: {
                solutions: 'ambase_solutions:elems',
                simples: 'ambase_simples:elems',
                links: 'ambase_links:elems'
            },
            exports: {
                noSearchResults: 'ambase_submenu:noSearchResults',
                solutionNotFound: 'ambase_solutions:isNotFound',
                simplesNotFound: 'ambase_simples:isNotFound',
                linksNotFound: 'ambase_links:isNotFound'
            },
            listens: {
                value: 'onValueChanged'
            }
        },

        /** @inheritdoc */
        initObservable: function () {
            this._super()
                .observe({
                    value: '',
                    noSearchResults: false,
                    simplesNotFound: false,
                    solutionNotFound: false,
                    linksNotFound: false
                });

            this.noSearchResults = ko.computed(function () {
                return this.simplesNotFound() && this.solutionNotFound() && this.linksNotFound()
            }.bind(this));

            return this;
        },

        /**
         * On value change handler
         *
         * @param {String} value
         * @return {void}
         */
        onValueChanged: function (value) {
            if (value.length !== 1) {
                this.solutionNotFound(!this.search(this.solutions, value));
                this.simplesNotFound(!this.search(this.simples, value));
                this.linksNotFound(!this.search(this.links, value));
            }
        },

        /**
         * Search value in menu items
         *
         * @param {Array} items
         * @param {String} value
         * @return {Boolean}
         */
        search: function (items, value) {
            var isFoundItem = false,
                isMatch;

            items.forEach(function (item) {
                item.foundStr('');
                isMatch = item.onSearchQuery(value.toLowerCase());

                if (isMatch) {
                    isFoundItem = isMatch;
                }
            }.bind(this));

            return isFoundItem;
        },

        /**
         * Clear search value
         *
         * @return {void}
         */
        cancel: function () {
            this.value('');
        }
    });
});

Spamworldpro Mini