/* * * (c) Copyright Ascensio System SIA 2010-2022 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect * that Ascensio System SIA expressly excludes the warranty of non-infringement * of any third-party rights. * * This program is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html * * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under * Section 5 of the GNU AGPL version 3. * * Pursuant to Section 7(b) of the License you must retain the original Product * logo when distributing the program. Pursuant to Section 7(e) we decline to * grant you any rights under trademark law for use of our trademarks. * * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. See the License * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode * */ /** * RoleEditDlg.js * * Created by Julia Radzhabova on 13/04/22 * Copyright (c) 2022 Ascensio System SIA. All rights reserved. * */ define([ 'common/main/lib/component/Window', 'common/main/lib/component/InputField' ], function () { 'use strict'; DE.Views.RoleEditDlg = Common.UI.Window.extend(_.extend({ options: { width: 330, cls: 'modal-dlg', buttons: ['ok', 'cancel'] }, initialize : function(options) { _.extend(this.options, options || {}); this.template = [ '
', '', '', '', '', '', '
', '', '
', '
', '', '
', '
', '
' ].join(''); this.options.tpl = _.template(this.template)(this.options); this.props = this.options.props; this.lastColor = 'C9C8FF'; Common.UI.Window.prototype.initialize.call(this, this.options); }, render: function() { Common.UI.Window.prototype.render.call(this); var me = this; var $window = this.getChild(); $window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); me.inputName = new Common.UI.InputField({ el : $window.find('#id-dlg-role-name'), allowBlank : false, blankError : me.textEmptyError, style : 'width: 100%;', validateOnBlur: false, validation : function(value) { return value ? true : ''; } }); this.btnColor = new Common.UI.ColorButton({ parentEl: $window.find('#id-dlg-role-color'), additionalItems: [ this.mnuNoFormsColor = new Common.UI.MenuItem({ id: 'id-dlg-role-menu-no-highlight', caption: this.textNoHighlight, checkable: true, style: 'padding-left: 20px;' }), {caption: '--'}], additionalAlign: this.menuAddAlign, colors: ['000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', '800000', 'FF6600', '808000', '00FF00', '008080', '0000FF', '666699', '808080', 'FF0000', 'FF9900', '99CC00', '339966', '33CCCC', '3366FF', '800080', '999999', 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF', '993366', 'C0C0C0', 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', 'C9C8FF', 'CC99FF', 'FFFFFF' ], color: this.lastColor, cls: 'move-focus', takeFocusOnClose: true }); this.btnColor.on('color:select', _.bind(this.onColorsSelect, this)); this.mnuNoFormsColor.on('click', _.bind(this.onNoColorClick, this)); this.mnuColorPicker = this.btnColor.getPicker(); this.afterRender(); }, afterRender: function() { this.setSettings(this.props); this.setTitle((this.isEdit) ? this.txtTitleEdit : this.txtTitleNew); }, show: function() { Common.UI.Window.prototype.show.apply(this, arguments); }, setSettings: function (props) { if (props) { var clr = props.color, show = !!clr; this.mnuNoFormsColor.setChecked(!show, true); this.mnuColorPicker.clearSelection(); if (clr) { clr = Common.Utils.ThemeColor.getHexColor(clr.get_r(), clr.get_g(), clr.get_b()); this.mnuColorPicker.selectByRGB(clr, true); this.lastColor = clr; } this.btnColor.setColor(clr || 'transparent'); this.inputName.setValue(props.name || ''); } }, getSettings: function() { return {name: this.inputName.getValue(), color: this.mnuNoFormsColor.isChecked() ? null : Common.Utils.ThemeColor.getRgbColor(this.lastColor)}; }, onColorsSelect: function(btn, color) { this.lastColor = color; this.mnuNoFormsColor.setChecked(false, true); }, onNoColorClick: function(item) { if (!item.isChecked()) { this.btnColor.setColor(this.lastColor); this.mnuColorPicker.selectByRGB(this.lastColor, true); } else { this.mnuColorPicker.clearSelection(); } }, onPrimary: function(event) { this._handleInput('ok'); return false; }, onBtnClick: function(event) { this._handleInput(event.currentTarget.attributes['result'].value); }, getFocusedComponents: function() { return [this.btnColor, this.inputName]; }, getDefaultFocusableComponent: function () { return this.inputName; }, _handleInput: function(state) { if (this.options.handler) { if (state == 'ok') { if (this.inputName.checkValidate() !== true) { this.inputName.cmpEl.find('input').focus(); return; } } this.options.handler.call(this, state, (state == 'ok') ? this.getSettings() : undefined); } this.close(); }, txtTitleEdit: 'Edit Role', txtTitleNew: 'Create New Role', textName: 'Role name', textEmptyError: 'Role name must not be empty.', textNoHighlight: 'No highlighting' }, DE.Views.RoleEditDlg || {})); });