first commit
This commit is contained in:
142
admin-kalsport/themes/new-theme/js/app/utils/init-components.js
Normal file
142
admin-kalsport/themes/new-theme/js/app/utils/init-components.js
Normal file
@@ -0,0 +1,142 @@
|
||||
/**
|
||||
* 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 TranslatableField from '@js/components/translatable-field.js';
|
||||
import TranslatableInput from '@js/components/translatable-input.js';
|
||||
import TinyMCEEditor from '@js/components/tinymce-editor.js';
|
||||
import TaggableField from '@js/components/taggable-field.js';
|
||||
import ChoiceTable from '@js/components/choice-table.js';
|
||||
import ChoiceTree from '@js/components/form/choice-tree.js';
|
||||
import MultipleChoiceTable from '@js/components/multiple-choice-table.js';
|
||||
import GeneratableInput from '@js/components/generatable-input.js';
|
||||
import CountryStateSelectionToggler from '@components/country-state-selection-toggler';
|
||||
import CountryDniRequiredToggler from '@components/country-dni-required-toggler';
|
||||
import TextWithLengthCounter from '@components/form/text-with-length-counter';
|
||||
import PreviewOpener from '@components/form/preview-opener';
|
||||
import MultistoreConfigField from '@js/components/form/multistore-config-field.js';
|
||||
import {EventEmitter} from '@components/event-emitter';
|
||||
import Grid from '@components/grid/grid';
|
||||
import Router from '@components/router';
|
||||
|
||||
// Grid extensions
|
||||
import AsyncToggleColumnExtension from '@components/grid/extension/column/common/async-toggle-column-extension';
|
||||
import BulkActionCheckboxExtension from '@components/grid/extension/bulk-action-checkbox-extension';
|
||||
import BulkOpenTabsExtension from '@components/grid/extension/bulk-open-tabs-extension';
|
||||
import ChoiceExtension from '@components/grid/extension/choice-extension';
|
||||
import ColumnTogglingExtension from '@components/grid/extension/column-toggling-extension';
|
||||
import ExportToSqlManagerExtension from '@components/grid/extension/export-to-sql-manager-extension';
|
||||
import FiltersResetExtension from '@components/grid/extension/filters-reset-extension.js';
|
||||
import FiltersSubmitButtonEnablerExtension from '@components/grid/extension/filters-submit-button-enabler-extension';
|
||||
import LinkRowActionExtension from '@components/grid/extension/link-row-action-extension';
|
||||
import ModalFormSubmitExtension from '@components/grid/extension/modal-form-submit-extension';
|
||||
import PositionExtension from '@components/grid/extension/position-extension';
|
||||
import PreviewExtension from '@components/grid/extension/preview-extension';
|
||||
import ReloadListExtension from '@components/grid/extension/reload-list-extension';
|
||||
import SortingExtension from '@components/grid/extension/sorting-extension';
|
||||
import SubmitBulkActionExtension from '@components/grid/extension/submit-bulk-action-extension';
|
||||
import SubmitGridActionExtension from '@components/grid/extension/submit-grid-action-extension';
|
||||
import SubmitRowActionExtension from '@components/grid/extension/action/row/submit-row-action-extension';
|
||||
|
||||
const GridExtensions = {
|
||||
AsyncToggleColumnExtension,
|
||||
BulkActionCheckboxExtension,
|
||||
BulkOpenTabsExtension,
|
||||
ChoiceExtension,
|
||||
ColumnTogglingExtension,
|
||||
ExportToSqlManagerExtension,
|
||||
FiltersResetExtension,
|
||||
FiltersSubmitButtonEnablerExtension,
|
||||
LinkRowActionExtension,
|
||||
ModalFormSubmitExtension,
|
||||
PositionExtension,
|
||||
PreviewExtension,
|
||||
ReloadListExtension,
|
||||
SortingExtension,
|
||||
SubmitBulkActionExtension,
|
||||
SubmitGridActionExtension,
|
||||
SubmitRowActionExtension,
|
||||
};
|
||||
|
||||
const initPrestashopComponents = () => {
|
||||
window.prestashop = {...window.prestashop};
|
||||
|
||||
if (!window.prestashop.instance) {
|
||||
window.prestashop.instance = {};
|
||||
}
|
||||
|
||||
window.prestashop.component = {
|
||||
initComponents(components) {
|
||||
components.forEach((component) => {
|
||||
if (window.prestashop.component[component] === undefined) {
|
||||
console.error(`Failed to initialize PrestaShop component "${component}". This component doesn't exist.`);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const componentInstanceName = component.charAt(0).toLowerCase() + component.slice(1);
|
||||
|
||||
if (window.prestashop.instance[componentInstanceName] !== undefined) {
|
||||
console.warn(
|
||||
`Failed to initialize PrestaShop component "${component}". This component is already initialized.`,
|
||||
);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
// EventEmitter is a special case it has no constructor and could be used via
|
||||
// window.prestashop.component.EventEmitter straight away
|
||||
if (component === 'EventEmitter') {
|
||||
window.prestashop.instance[componentInstanceName] = window.prestashop.component[component];
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
window.prestashop.instance[componentInstanceName] = new window.prestashop.component[component]();
|
||||
});
|
||||
|
||||
// Send an event so external users can initiate their own components
|
||||
EventEmitter.emit('PSComponentsInitiated');
|
||||
},
|
||||
// @todo: add all standard components in this list
|
||||
TranslatableField,
|
||||
TinyMCEEditor,
|
||||
TranslatableInput,
|
||||
TaggableField,
|
||||
ChoiceTable,
|
||||
EventEmitter,
|
||||
ChoiceTree,
|
||||
MultipleChoiceTable,
|
||||
GeneratableInput,
|
||||
CountryStateSelectionToggler,
|
||||
CountryDniRequiredToggler,
|
||||
TextWithLengthCounter,
|
||||
MultistoreConfigField,
|
||||
PreviewOpener,
|
||||
Grid,
|
||||
GridExtensions,
|
||||
Router,
|
||||
};
|
||||
};
|
||||
export default initPrestashopComponents;
|
||||
Reference in New Issue
Block a user