update
This commit is contained in:
126
iadmin/themes/new-theme/js/pages/category/index.js
Normal file
126
iadmin/themes/new-theme/js/pages/category/index.js
Normal file
@@ -0,0 +1,126 @@
|
||||
/**
|
||||
* Copyright since 2007 PrestaShop SA and Contributors
|
||||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.md.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/OSL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
||||
*
|
||||
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
||||
* @copyright Since 2007 PrestaShop SA and Contributors
|
||||
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
import Grid from '@components/grid/grid';
|
||||
import FiltersResetExtension from '@components/grid/extension/filters-reset-extension';
|
||||
import SortingExtension from '@components/grid/extension/sorting-extension';
|
||||
import ExportToSqlManagerExtension from '@components/grid/extension/export-to-sql-manager-extension';
|
||||
import ReloadListExtension from '@components/grid/extension/reload-list-extension';
|
||||
import BulkActionCheckboxExtension from '@components/grid/extension/bulk-action-checkbox-extension';
|
||||
import SubmitBulkExtension from '@components/grid/extension/submit-bulk-action-extension';
|
||||
import SubmitRowActionExtension from '@components/grid/extension/action/row/submit-row-action-extension';
|
||||
import LinkRowActionExtension from '@components/grid/extension/link-row-action-extension';
|
||||
import CategoryPositionExtension from '@components/grid/extension/column/catalog/category-position-extension';
|
||||
import AsyncToggleColumnExtension from '@components/grid/extension/column/common/async-toggle-column-extension';
|
||||
import DeleteCategoryRowActionExtension
|
||||
from '@components/grid/extension/action/row/category/delete-category-row-action-extension';
|
||||
import DeleteCategoriesBulkActionExtension
|
||||
from '@components/grid/extension/action/bulk/category/delete-categories-bulk-action-extension';
|
||||
import ChoiceTable from '@components/choice-table';
|
||||
import textToLinkRewriteCopier from '@components/text-to-link-rewrite-copier';
|
||||
import ChoiceTree from '@components/form/choice-tree';
|
||||
import FormSubmitButton from '@components/form-submit-button';
|
||||
import FiltersSubmitButtonEnablerExtension
|
||||
from '@components/grid/extension/filters-submit-button-enabler-extension';
|
||||
import ShowcaseCard from '@components/showcase-card/showcase-card';
|
||||
import ShowcaseCardCloseExtension from '@components/showcase-card/extension/showcase-card-close-extension';
|
||||
import TextWithRecommendedLengthCounter from '@components/form/text-with-recommended-length-counter';
|
||||
import Serp from '@app/utils/serp/index';
|
||||
|
||||
const {$} = window;
|
||||
|
||||
$(() => {
|
||||
const categoriesGrid = new Grid('category');
|
||||
|
||||
categoriesGrid.addExtension(new FiltersResetExtension());
|
||||
categoriesGrid.addExtension(new SortingExtension());
|
||||
categoriesGrid.addExtension(new CategoryPositionExtension());
|
||||
categoriesGrid.addExtension(new ExportToSqlManagerExtension());
|
||||
categoriesGrid.addExtension(new ReloadListExtension());
|
||||
categoriesGrid.addExtension(new BulkActionCheckboxExtension());
|
||||
categoriesGrid.addExtension(new SubmitBulkExtension());
|
||||
categoriesGrid.addExtension(new SubmitRowActionExtension());
|
||||
categoriesGrid.addExtension(new LinkRowActionExtension());
|
||||
categoriesGrid.addExtension(new AsyncToggleColumnExtension());
|
||||
categoriesGrid.addExtension(new DeleteCategoryRowActionExtension());
|
||||
categoriesGrid.addExtension(new DeleteCategoriesBulkActionExtension());
|
||||
categoriesGrid.addExtension(new FiltersSubmitButtonEnablerExtension());
|
||||
|
||||
const showcaseCard = new ShowcaseCard('categoriesShowcaseCard');
|
||||
showcaseCard.addExtension(new ShowcaseCardCloseExtension());
|
||||
|
||||
window.prestashop.component.initComponents(
|
||||
[
|
||||
'TranslatableField',
|
||||
'TinyMCEEditor',
|
||||
'TranslatableInput',
|
||||
],
|
||||
);
|
||||
|
||||
const translatorInput = window.prestashop.instance.translatableInput;
|
||||
new ChoiceTable();
|
||||
new TextWithRecommendedLengthCounter();
|
||||
|
||||
textToLinkRewriteCopier({
|
||||
sourceElementSelector: 'input[name^="category[name]"]',
|
||||
/* eslint-disable-next-line max-len */
|
||||
destinationElementSelector: `${translatorInput.localeInputSelector}:not(.d-none) input[name^="category[link_rewrite]"]`,
|
||||
});
|
||||
|
||||
textToLinkRewriteCopier({
|
||||
sourceElementSelector: 'input[name^="root_category[name]"]',
|
||||
/* eslint-disable-next-line max-len */
|
||||
destinationElementSelector: `${translatorInput.localeInputSelector}:not(.d-none) input[name^="root_category[link_rewrite]"]`,
|
||||
});
|
||||
|
||||
new Serp(
|
||||
{
|
||||
container: '#serp-app',
|
||||
defaultTitle: 'input[name^="category[name]"]',
|
||||
watchedTitle: 'input[name^="category[meta_title]"]',
|
||||
defaultDescription: 'textarea[name^="category[description]"]',
|
||||
watchedDescription: 'textarea[name^="category[meta_description]"]',
|
||||
watchedMetaUrl: 'input[name^="category[link_rewrite]"]',
|
||||
multiLanguageInput: `${translatorInput.localeInputSelector}:not(.d-none)`,
|
||||
multiLanguageItem: translatorInput.localeItemSelector,
|
||||
},
|
||||
$('#serp-app').data('category-url'),
|
||||
);
|
||||
|
||||
new FormSubmitButton();
|
||||
|
||||
new window.prestashop.component.TaggableField({
|
||||
tokenFieldSelector: 'input.js-taggable-field',
|
||||
options: {
|
||||
createTokensOnBlur: true,
|
||||
},
|
||||
});
|
||||
|
||||
new ChoiceTree('#category_id_parent');
|
||||
new ChoiceTree('#category_shop_association').enableAutoCheckChildren();
|
||||
|
||||
new ChoiceTree('#root_category_id_parent');
|
||||
new ChoiceTree('#root_category_shop_association').enableAutoCheckChildren();
|
||||
});
|
||||
Reference in New Issue
Block a user