/* * * (c) Copyright Ascensio System SIA 2010-2021 * * 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 * */ /** * CreateSparklineDialog.js * * Created by Julia Radzhabova on 23.03.2021 * Copyright (c) 2021 Ascensio System SIA. All rights reserved. * */ define([ 'common/main/lib/util/utils', 'common/main/lib/component/InputField', 'common/main/lib/view/AdvancedSettingsWindow' ], function () { 'use strict'; SSE.Views.CreateSparklineDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({ options: { contentWidth: 310, height: 195 }, initialize : function(options) { var me = this; _.extend(this.options, { title: this.textTitle, template: [ '
', '
', '
', '', '', '', '', '', '', '', '', '', '', '', '', '', '
', '', '
', '
', '
', '', '
', '
', '
', '
', '
', '
' ].join('') }, options); this.api = options.api; this.props = options.props; this.options.handler = function(result, value) { if ( result != 'ok' || this.isRangeValid() ) { if (options.handler) options.handler.call(this, result, value); return; } return true; }; this.dataSourceValid = ''; this.dataDestValid = ''; Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options); }, render: function() { Common.Views.AdvancedSettingsWindow.prototype.render.call(this); var me = this; this.txtSourceRange = new Common.UI.InputFieldBtn({ el : $('#create-spark-input-source'), name : 'range', style : 'width: 100%;', btnHint : this.textSelectData, allowBlank : true, validateOnChange: true }); this.txtSourceRange.on('button:click', _.bind(this.onSelectData, this, 'source')); this.txtDestRange = new Common.UI.InputFieldBtn({ el : $('#create-spark-input-dest'), name : 'range', style : 'width: 100%;', btnHint : this.textSelectData, allowBlank : true, validateOnChange: true, validateOnBlur: false }); this.txtDestRange.on('button:click', _.bind(this.onSelectData, this, 'dest')); this.afterRender(); }, getFocusedComponents: function() { return [this.txtSourceRange, this.txtDestRange]; }, afterRender: function() { this._setDefaults(this.props); }, _setDefaults: function (props) { var cells = props ? props.selectedCells : 0; var me = this; if (cells>0) { var range = this.api.asc_getActiveRangeStr(Asc.referenceType.R); this.txtSourceRange.setValue(range); this.dataSourceValid = range; setTimeout(function(){me.txtDestRange.focus();}, 100); } else { var range = this.api.asc_getActiveRangeStr(Asc.referenceType.A); this.txtDestRange.setValue(range); this.dataDestValid = range; setTimeout(function(){me.txtSourceRange.focus();}, 100); } this.txtSourceRange.validation = function(value) { var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.Chart, value, false); return (isvalid==Asc.c_oAscError.ID.DataRangeError) ? me.textInvalidRange : true; }; this.txtDestRange.validation = function(value) { var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.FormatTable, value, false); return (isvalid==Asc.c_oAscError.ID.DataRangeError) ? me.textInvalidRange : true; }; }, getSettings: function () { var source = this.txtSourceRange.getValue(), dest = this.txtDestRange.getValue(); return {source: source, destination: dest}; }, isRangeValid: function() { var isvalid = true, txtError = ''; if (_.isEmpty(this.txtSourceRange.getValue())) { isvalid = false; txtError = this.txtEmpty; } else { isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.Chart, this.txtSourceRange.getValue()); isvalid = (isvalid == Asc.c_oAscError.ID.No); !isvalid && (txtError = this.textInvalidRange); } if (!isvalid) { this.txtSourceRange.showError([txtError]); this.txtSourceRange.focus(); return isvalid; } if (_.isEmpty(this.txtDestRange.getValue())) { isvalid = false; txtError = this.txtEmpty; } else { isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.FormatTable, this.txtDestRange.getValue()); isvalid = (isvalid == Asc.c_oAscError.ID.No); !isvalid && (txtError = this.textInvalidRange); } if (!isvalid) { this.txtDestRange.showError([txtError]); this.txtDestRange.focus(); return isvalid; } return isvalid; }, onSelectData: function(type) { var me = this, txtRange = (type=='source') ? me.txtSourceRange : me.txtDestRange; if (me.api) { var handlerDlg = function(dlg, result) { if (result == 'ok') { var txt = dlg.getSettings(); (type=='source') ? (me.dataSourceValid = txt) : (me.dataDestValid = txt); txtRange.setValue(txt); txtRange.checkValidate(); } }; var win = new SSE.Views.CellRangeDialog({ handler: handlerDlg }).on('close', function() { me.show(); _.delay(function(){ txtRange.focus(); },1); }); var xy = me.$window.offset(); me.hide(); win.show(xy.left + 160, xy.top + 125); win.setSettings({ api : me.api, range : (!_.isEmpty(txtRange.getValue()) && (txtRange.checkValidate()==true)) ? txtRange.getValue() : ((type=='source') ? me.dataSourceValid : me.dataDestValid), type : (type=='source') ? Asc.c_oAscSelectionDialogType.Chart : Asc.c_oAscSelectionDialogType.FormatTable }); } }, textTitle: 'Create Sparklines', textDataRange: 'Source data range', textSelectData: 'Select data', textDestination: 'Choose, where to place the sparklines', txtEmpty: 'This field is required', textInvalidRange: 'Invalid cells range' }, SSE.Views.CreateSparklineDialog || {})) });