Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
410 lines (347 sloc)
11.7 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Shopware 5 | |
| * Copyright (c) shopware AG | |
| * | |
| * According to our dual licensing model, this program can be used either | |
| * under the terms of the GNU Affero General Public License, version 3, | |
| * or under a proprietary license. | |
| * | |
| * The texts of the GNU Affero General Public License with an additional | |
| * permission and of our proprietary license can be found at and | |
| * in the LICENSE file you have received along with this program. | |
| * | |
| * This program is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| * GNU Affero General Public License for more details. | |
| * | |
| * "Shopware" is a registered trademark of shopware AG. | |
| * The licensing of the program under the AGPLv3 does not imply a | |
| * trademark license. Therefore any rights, title and interest in | |
| * our trademarks remain entirely with us. | |
| * | |
| * @category Shopware | |
| * @package Base | |
| * @subpackage Attribute | |
| * @version $Id$ | |
| * @author shopware AG | |
| */ | |
| //{namespace name="backend/attributes/main"} | |
| //{block name="backend/base/attribute/form"} | |
| Ext.define('Shopware.attribute.Form', { | |
| extend: 'Ext.form.Panel', | |
| layout: 'anchor', | |
| alias: 'widget.shopware-attribute-form', | |
| cls: 'shopware-attribute-form', | |
| bodyStyle: { | |
| background: 'transparent' | |
| }, | |
| autoScroll: false, | |
| mixins: { helper: 'Shopware.model.Helper' }, | |
| defaults: { anchor: '100%' }, | |
| border: false, | |
| fieldSetPadding: 10, | |
| fields: [], | |
| /** | |
| * @required | |
| * @var string|null | |
| * @example s_articles_attributes | |
| */ | |
| table: null, | |
| /** | |
| * Disable to deactivate translation plugin | |
| * @boolean | |
| */ | |
| allowTranslation: true, | |
| /** | |
| * Ext.tab.Panel | |
| */ | |
| tabPanel: null, | |
| /** | |
| * Ext.form.Panel | |
| */ | |
| translationForm: null, | |
| /** | |
| * @var boolean | |
| */ | |
| configLoaded: false, | |
| /** | |
| * @var Shopware.form.Translation|null | |
| */ | |
| translationPlugin: null, | |
| initComponent: function() { | |
| var me = this; | |
| me.typeHandlers = me.registerTypeHandlers(); | |
| me.initTabChange(); | |
| me.initTranslation(); | |
| me.loadConfig(); | |
| // refresh translation plugin after panel expanded to display translation icons | |
| me.on('expand', function() { | |
| me.refreshTranslationPlugin(); | |
| }); | |
| // refresh translation after form showed. special case for tab panels | |
| me.on('show', function() { | |
| me.refreshTranslationPlugin(); | |
| }); | |
| me.callParent(arguments); | |
| }, | |
| initTabChange: function() { | |
| var me = this; | |
| if (!me.tabPanel) { | |
| return; | |
| } | |
| me.on('config-loaded', function() { | |
| me.tabPanel.setActiveTab(0); | |
| }, me, { single: true }); | |
| }, | |
| initTranslation: function() { | |
| var me = this; | |
| if (!me.allowTranslation) { | |
| return; | |
| } | |
| me.translationPlugin = Ext.create('Shopware.form.Translation', { | |
| translationType: me.table | |
| }); | |
| me.plugins = [me.translationPlugin]; | |
| }, | |
| loadAttribute: function(foreignKey, callback) { | |
| var me = this; | |
| callback = callback ? callback: Ext.emptyFn; | |
| if (!foreignKey) { | |
| me.disableForm(true); | |
| callback(); | |
| return; | |
| } | |
| if (!me.configLoaded) { | |
| me.on('config-loaded', function() { | |
| me.loadAttribute(foreignKey, callback); | |
| }, me, { single: true }); | |
| return; | |
| } | |
| if (me.fields.length <= 0) { | |
| callback(); | |
| return; | |
| } | |
| try { | |
| me.disableForm(false); | |
| } catch (e) { } | |
| me.resetFields(); | |
| me.setLoading(true); | |
| me.load({ | |
| url: '{url controller=AttributeData action=loadData}', | |
| params: { | |
| _foreignKey: foreignKey, | |
| _table: me.table | |
| }, | |
| success: function() { | |
| me.setLoading(false); | |
| try { | |
| me.refreshTranslationPlugin(foreignKey); | |
| } catch (e) { } | |
| callback(); | |
| }, | |
| failure: function() { | |
| me.setLoading(false); | |
| me.resetFields(); | |
| callback(); | |
| } | |
| }); | |
| }, | |
| disableForm: function(disabled) { | |
| var me = this; | |
| if (me.fields.length <= 0) { | |
| return; | |
| } | |
| me.setDisabled(disabled); | |
| }, | |
| resetFields: function() { | |
| var me = this; | |
| var fields = me.getForm().getFields(); | |
| Ext.each(fields.items, function(field) { | |
| try { | |
| field.setValue(null); | |
| } catch (e) { | |
| } | |
| }); | |
| }, | |
| saveAttribute: function(foreignKey, callback) { | |
| var me = this, callbackFn = Ext.emptyFn; | |
| if (Ext.isFunction(callback)) { | |
| callbackFn = callback; | |
| } | |
| if (!foreignKey) { | |
| callbackFn(false); | |
| return; | |
| } | |
| if (!me.getForm().isValid()) { | |
| callbackFn(false); | |
| return; | |
| } | |
| if (me.fields.length <= 0) { | |
| callbackFn(false); | |
| return; | |
| } | |
| me.submit({ | |
| url: '{url controller=AttributeData action=saveData}', | |
| params: { | |
| _table: me.table, | |
| _foreignKey: foreignKey | |
| }, | |
| success: function() { | |
| callbackFn(true); | |
| }, | |
| failure: function() { | |
| callbackFn(false); | |
| } | |
| }); | |
| }, | |
| refreshTranslationPlugin: function(foreignKey) { | |
| var me = this; | |
| if (foreignKey) { | |
| me._translationConfig.translationKey = foreignKey; | |
| } | |
| if (me.translationForm) { | |
| me.translationForm.translationPlugin.initTranslationFields(me.translationForm); | |
| return; | |
| } | |
| if (!me.translationPlugin || !me.allowTranslation) { | |
| return; | |
| } | |
| me.translationPlugin.initTranslationFields(me); | |
| }, | |
| loadConfig: function() { | |
| var me = this; | |
| me.configLoaded = false; | |
| me.store = Ext.create('Shopware.store.AttributeConfig'); | |
| me.store.getProxy().extraParams = { table: me.table }; | |
| me.store.load(function(attributes) { | |
| me.fields = me.createFields(attributes); | |
| me.removeAll(); | |
| me.add(me.createFieldSet(me.fields)); | |
| me.configLoaded = true; | |
| me.refreshTranslationPlugin(); | |
| me.fireEvent('config-loaded', me.fields); | |
| }); | |
| }, | |
| createFieldSet: function(fields) { | |
| var me = this, items, hidden = false; | |
| items = fields; | |
| if (fields.length <= 0) { | |
| /*{if !{acl_is_allowed resource=attributes privilege=read}}*/ | |
| hidden = true; | |
| me.fireEvent('hide-attribute-field-set'); | |
| /*{/if}*/ | |
| items = [me.createNotification()]; | |
| } | |
| me.fieldSet = Ext.create('Ext.form.FieldSet', { | |
| title: '{s name="attribute_form_title"}{/s}', | |
| defaults: { anchor: '100%' }, | |
| layout: 'anchor', | |
| background: 'transparent', | |
| hidden: hidden, | |
| items: [{ | |
| xtype: 'container', | |
| padding: me.fieldSetPadding, | |
| defaults: me.defaults, | |
| layout: 'anchor', | |
| items: items | |
| }] | |
| }); | |
| return me.fieldSet; | |
| }, | |
| createNotification: function() { | |
| var me = this; | |
| me.moduleButton = Ext.create('Ext.button.Button', { | |
| text: '{s name="configure_now"}{/s}', | |
| cls: 'primary attribute-notification-button configure-button', | |
| margin: 4, | |
| handler: function() { | |
| Shopware.app.Application.addSubApplication({ | |
| name: 'Shopware.apps.Attributes', | |
| params: { | |
| table: me.table | |
| } | |
| }); | |
| } | |
| }); | |
| me.reloadButton = Ext.create('Ext.button.Button', { | |
| text: '{s name="reload"}{/s}', | |
| cls: 'secondary attribute-notification-button', | |
| handler: function() { | |
| me.loadConfig(); | |
| } | |
| }); | |
| var notification = Ext.create('Ext.Component', { | |
| cls: 'attribute-notification', | |
| padding: 10, | |
| html: '{s name="notification"}{/s}' | |
| }); | |
| return Ext.create('Ext.container.Container', { | |
| items: [notification, me.moduleButton, me.reloadButton] | |
| }); | |
| }, | |
| createFields: function(attributes) { | |
| var me = this, fields = []; | |
| Ext.each(attributes, function(attribute) { | |
| var field = { | |
| name: '__attribute_' + attribute.get('columnName'), | |
| translatable: attribute.get('translatable'), | |
| fieldLabel: attribute.get('label'), | |
| supportText: attribute.get('supportText'), | |
| helpText: attribute.get('helpText'), | |
| labelWidth: 155, | |
| value: attribute.get('defaultValue') | |
| }; | |
| var handler = me.getTypeHandler(attribute); | |
| if (handler && attribute.get('displayInBackend')) { | |
| fields.push(handler.create(field, attribute)); | |
| } | |
| }); | |
| return fields; | |
| }, | |
| getTypeHandler: function(attribute) { | |
| var me = this; | |
| var found = null; | |
| Ext.each(me.typeHandlers, function(handler) { | |
| if (handler.supports(attribute)) { | |
| found = handler; | |
| return false; | |
| } | |
| }); | |
| return found; | |
| }, | |
| registerTypeHandlers: function() { | |
| return [ | |
| Ext.create('Shopware.attribute.ShopFieldHandler'), | |
| Ext.create('Shopware.attribute.ProductStreamFieldHandler'), | |
| Ext.create('Shopware.attribute.PremiumFieldHandler'), | |
| Ext.create('Shopware.attribute.EmotionFieldHandler'), | |
| Ext.create('Shopware.attribute.MailFieldHandler'), | |
| Ext.create('Shopware.attribute.PaymentFieldHandler'), | |
| Ext.create('Shopware.attribute.DispatchFieldHandler'), | |
| Ext.create('Shopware.attribute.CustomerFieldHandler'), | |
| Ext.create('Shopware.attribute.FormFieldHandler'), | |
| Ext.create('Shopware.attribute.PartnerFieldHandler'), | |
| Ext.create('Shopware.attribute.NewsletterFieldHandler'), | |
| Ext.create('Shopware.attribute.ProductFeedFieldHandler'), | |
| Ext.create('Shopware.attribute.VoucherFieldHandler'), | |
| Ext.create('Shopware.attribute.PropertyOptionFieldHandler'), | |
| Ext.create('Shopware.attribute.CategoryFieldHandler'), | |
| Ext.create('Shopware.attribute.MediaFieldHandler'), | |
| Ext.create('Shopware.attribute.ProductFieldHandler'), | |
| Ext.create('Shopware.attribute.BlogFieldHandler'), | |
| Ext.create('Shopware.attribute.BooleanFieldHandler'), | |
| Ext.create('Shopware.attribute.DateFieldHandler'), | |
| Ext.create('Shopware.attribute.DateTimeFieldHandler'), | |
| Ext.create('Shopware.attribute.FloatFieldHandler'), | |
| Ext.create('Shopware.attribute.HtmlFieldHandler'), | |
| Ext.create('Shopware.attribute.IntegerFieldHandler'), | |
| Ext.create('Shopware.attribute.StringFieldHandler'), | |
| Ext.create('Shopware.attribute.TextAreaFieldHandler'), | |
| Ext.create('Shopware.attribute.ComboBoxFieldHandler'), | |
| Ext.create('Shopware.attribute.SingleSelectionFieldHandler'), | |
| Ext.create('Shopware.attribute.MultiSelectionFieldHandler') | |
| ]; | |
| } | |
| }); | |
| //{/block} |