2019-06-20 09:51:27 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* (c) Copyright Ascensio System SIA 2010-2019
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* FormulaTab.js
|
|
|
|
*
|
|
|
|
* Created by Julia Radzhabova on 14.06.2019
|
|
|
|
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
define([
|
|
|
|
'common/main/lib/util/utils',
|
|
|
|
'common/main/lib/component/BaseView',
|
|
|
|
'common/main/lib/component/Layout'
|
|
|
|
], function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
SSE.Views.FormulaTab = Common.UI.BaseView.extend(_.extend((function(){
|
|
|
|
function setEvents() {
|
|
|
|
var me = this;
|
2019-06-24 12:57:28 +00:00
|
|
|
me.btnAutosum.on('click', function(){
|
|
|
|
me.fireEvent('function:apply', [{name: me.api.asc_getFormulaLocaleName('SUM'), origin: 'SUM'}, true]);
|
|
|
|
});
|
|
|
|
me.btnAutosum.menu.on('item:click', function (menu, item, e) {
|
|
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, true]);
|
|
|
|
});
|
|
|
|
me.btnFormula.on('click', function(){
|
|
|
|
me.fireEvent('function:apply', [{name: 'more', origin: 'more'}]);
|
|
|
|
});
|
2019-06-20 09:51:27 +00:00
|
|
|
}
|
|
|
|
return {
|
|
|
|
options: {},
|
|
|
|
|
|
|
|
initialize: function (options) {
|
|
|
|
Common.UI.BaseView.prototype.initialize.call(this);
|
|
|
|
this.toolbar = options.toolbar;
|
2019-06-24 12:57:28 +00:00
|
|
|
this.formulasGroups = options.formulasGroups;
|
2019-06-20 09:51:27 +00:00
|
|
|
|
|
|
|
this.lockedControls = [];
|
|
|
|
|
|
|
|
var me = this,
|
|
|
|
$host = me.toolbar.$el,
|
|
|
|
_set = SSE.enumLock;
|
|
|
|
|
|
|
|
var formulaDialog = SSE.getController('FormulaDialog');
|
|
|
|
|
|
|
|
this.btnFinancial = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-finance',
|
2019-06-20 09:51:27 +00:00
|
|
|
caption: formulaDialog.sCategoryFinancial,
|
|
|
|
hint: formulaDialog.sCategoryFinancial,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
2019-06-24 12:57:28 +00:00
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-financial'), this.btnFinancial);
|
|
|
|
this.lockedControls.push(this.btnFinancial);
|
|
|
|
|
|
|
|
this.btnLogical = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-logic',
|
2019-06-20 09:51:27 +00:00
|
|
|
caption: formulaDialog.sCategoryLogical,
|
|
|
|
hint: formulaDialog.sCategoryLogical,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
2019-06-24 12:57:28 +00:00
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-logical'), this.btnLogical);
|
|
|
|
this.lockedControls.push(this.btnLogical);
|
|
|
|
|
|
|
|
this.btnTextData = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-func-text',
|
2019-06-20 09:51:27 +00:00
|
|
|
caption: formulaDialog.sCategoryTextAndData,
|
|
|
|
hint: formulaDialog.sCategoryTextAndData,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
2019-06-24 12:57:28 +00:00
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-text'), this.btnTextData);
|
|
|
|
this.lockedControls.push(this.btnTextData);
|
|
|
|
|
|
|
|
this.btnDateTime = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-datetime',
|
2019-06-20 09:51:27 +00:00
|
|
|
caption: formulaDialog.sCategoryDateAndTime,
|
|
|
|
hint: formulaDialog.sCategoryDateAndTime,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
2019-06-24 12:57:28 +00:00
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-datetime'), this.btnDateTime);
|
|
|
|
this.lockedControls.push(this.btnDateTime);
|
|
|
|
|
|
|
|
this.btnReference = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-lookup',
|
2019-06-20 09:51:27 +00:00
|
|
|
caption: formulaDialog.sCategoryLookupAndReference,
|
|
|
|
hint: formulaDialog.sCategoryLookupAndReference,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
2019-06-24 12:57:28 +00:00
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-lookup'), this.btnReference);
|
|
|
|
this.lockedControls.push(this.btnReference);
|
|
|
|
|
|
|
|
this.btnMath = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-func-math',
|
2019-06-20 09:51:27 +00:00
|
|
|
caption: formulaDialog.sCategoryMathematic,
|
|
|
|
hint: formulaDialog.sCategoryMathematic,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
2019-06-24 12:57:28 +00:00
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-math'), this.btnMath);
|
|
|
|
this.lockedControls.push(this.btnMath);
|
|
|
|
|
2019-06-24 12:57:28 +00:00
|
|
|
this.btnRecent = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-recent',
|
2019-06-24 12:57:28 +00:00
|
|
|
caption: this.txtRecent,
|
|
|
|
hint: this.txtRecent,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-recent'), this.btnRecent);
|
|
|
|
this.lockedControls.push(this.btnRecent);
|
|
|
|
|
|
|
|
this.btnAutosum = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-autosum',
|
2019-06-24 12:57:28 +00:00
|
|
|
caption: this.txtAutosum,
|
|
|
|
hint: this.txtAutosumTip,
|
|
|
|
split: true,
|
|
|
|
disabled: true,
|
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth],
|
|
|
|
menu: new Common.UI.Menu({
|
|
|
|
items : [
|
|
|
|
{caption: 'SUM', value: 'SUM'},
|
|
|
|
{caption: 'MIN', value: 'MIN'},
|
|
|
|
{caption: 'MAX', value: 'MAX'},
|
|
|
|
{caption: 'COUNT', value: 'COUNT'},
|
|
|
|
{caption: '--'},
|
|
|
|
{
|
|
|
|
caption: me.txtAdditional,
|
|
|
|
value: 'more'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-autosum'), this.btnAutosum);
|
|
|
|
this.lockedControls.push(this.btnAutosum);
|
|
|
|
|
|
|
|
this.btnFormula = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-ins-formula',
|
2019-06-24 12:57:28 +00:00
|
|
|
caption: this.txtFormula,
|
|
|
|
hint: this.txtFormulaTip,
|
|
|
|
disabled: true,
|
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-additional-formula'), this.btnFormula);
|
|
|
|
this.lockedControls.push(this.btnFormula);
|
|
|
|
|
2019-06-24 13:53:12 +00:00
|
|
|
this.btnMore = new Common.UI.Button({
|
|
|
|
cls: 'btn-toolbar x-huge icon-top',
|
2019-06-28 10:31:59 +00:00
|
|
|
iconCls: 'btn-more',
|
2019-06-24 13:53:12 +00:00
|
|
|
caption: this.txtMore,
|
|
|
|
hint: this.txtMore,
|
|
|
|
menu: true,
|
|
|
|
split: false,
|
|
|
|
disabled: true,
|
|
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth]
|
|
|
|
});
|
|
|
|
Common.Utils.injectComponent($host.find('#slot-btn-more'), this.btnMore);
|
|
|
|
this.lockedControls.push(this.btnMore);
|
|
|
|
|
2019-06-20 09:51:27 +00:00
|
|
|
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function (el) {
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
onAppReady: function (config) {
|
|
|
|
var me = this;
|
|
|
|
(new Promise(function (accept, reject) {
|
|
|
|
accept();
|
|
|
|
})).then(function(){
|
2019-06-24 12:57:28 +00:00
|
|
|
setEvents.call(me);
|
2019-06-20 09:51:27 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
show: function () {
|
|
|
|
Common.UI.BaseView.prototype.show.call(this);
|
|
|
|
this.fireEvent('show', this);
|
|
|
|
},
|
|
|
|
|
|
|
|
getButtons: function(type) {
|
|
|
|
return this.lockedControls;
|
|
|
|
},
|
|
|
|
|
|
|
|
SetDisabled: function (state) {
|
|
|
|
this.lockedControls && this.lockedControls.forEach(function(button) {
|
|
|
|
if ( button ) {
|
|
|
|
button.setDisabled(state);
|
|
|
|
}
|
|
|
|
}, this);
|
|
|
|
},
|
|
|
|
|
2019-06-24 12:57:28 +00:00
|
|
|
setButtonMenu: function(btn, name) {
|
|
|
|
var me = this,
|
|
|
|
arr = [],
|
|
|
|
group = me.formulasGroups.findWhere({name : name});
|
|
|
|
|
|
|
|
if (group) {
|
|
|
|
var functions = group.get('functions');
|
|
|
|
functions && functions.forEach(function(item) {
|
|
|
|
arr.push(new Common.UI.MenuItem({
|
|
|
|
caption: item.get('name'),
|
|
|
|
value: item.get('origin')
|
|
|
|
}));
|
|
|
|
});
|
2019-06-24 13:53:12 +00:00
|
|
|
}
|
|
|
|
if (arr.length) {
|
2019-06-24 12:57:28 +00:00
|
|
|
arr.push(new Common.UI.MenuItem({
|
|
|
|
caption: '--'
|
|
|
|
}));
|
|
|
|
arr.push(new Common.UI.MenuItem({
|
|
|
|
caption: me.txtAdditional,
|
|
|
|
value: 'more'
|
|
|
|
}));
|
|
|
|
|
|
|
|
if (btn.menu && btn.menu.rendered) {
|
|
|
|
btn.menu.removeAll();
|
|
|
|
arr.forEach(function(item){
|
|
|
|
btn.menu.addItem(item);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
btn.setMenu(new Common.UI.Menu({
|
|
|
|
restoreHeight: 415,
|
|
|
|
items: arr
|
|
|
|
}));
|
|
|
|
btn.menu.on('item:click', function (menu, item, e) {
|
2019-06-25 07:39:09 +00:00
|
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, false, name]);
|
2019-06-24 12:57:28 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
btn.setDisabled(arr.length<1);
|
|
|
|
},
|
|
|
|
|
2019-06-20 09:51:27 +00:00
|
|
|
fillFunctions: function () {
|
|
|
|
if (this.formulasGroups) {
|
2019-06-24 12:57:28 +00:00
|
|
|
this.setButtonMenu(this.btnFinancial, 'Financial');
|
|
|
|
this.setButtonMenu(this.btnLogical, 'Logical');
|
|
|
|
this.setButtonMenu(this.btnTextData, 'TextAndData');
|
|
|
|
this.setButtonMenu(this.btnDateTime, 'DateAndTime');
|
|
|
|
this.setButtonMenu(this.btnReference, 'LookupAndReference');
|
|
|
|
this.setButtonMenu(this.btnMath, 'Mathematic');
|
|
|
|
this.setButtonMenu(this.btnRecent, 'Last10');
|
|
|
|
|
|
|
|
var formulas = this.btnAutosum.menu.items;
|
|
|
|
for (var i=0; i<Math.min(4,formulas.length); i++) {
|
|
|
|
this.api && formulas[i].setCaption(this.api.asc_getFormulaLocaleName(formulas[i].value));
|
|
|
|
}
|
2019-06-24 13:53:12 +00:00
|
|
|
|
|
|
|
// more button
|
|
|
|
var me = this,
|
|
|
|
morearr = [],
|
|
|
|
formulaDialog = SSE.getController('FormulaDialog');
|
|
|
|
['Cube', 'Database', 'Engineering', 'Information', 'Statistical'].forEach(function(name) {
|
|
|
|
var group = me.formulasGroups.findWhere({name : name});
|
|
|
|
if (group) {
|
|
|
|
var functions = group.get('functions'),
|
|
|
|
arr = [];
|
|
|
|
functions && functions.forEach(function(item) {
|
|
|
|
arr.push(new Common.UI.MenuItem({
|
|
|
|
caption: item.get('name'),
|
|
|
|
value: item.get('origin')
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
if (arr.length) {
|
|
|
|
arr.push(new Common.UI.MenuItem({
|
|
|
|
caption: '--'
|
|
|
|
}));
|
|
|
|
arr.push(new Common.UI.MenuItem({
|
|
|
|
caption: me.txtAdditional,
|
|
|
|
value: 'more'
|
|
|
|
}));
|
|
|
|
var mnu = new Common.UI.MenuItem({
|
|
|
|
caption : formulaDialog['sCategory' + name] || name,
|
|
|
|
menu : new Common.UI.Menu({
|
|
|
|
restoreHeight: 415,
|
|
|
|
menuAlign: 'tl-tr',
|
|
|
|
items: arr
|
|
|
|
})
|
|
|
|
});
|
|
|
|
mnu.menu.on('item:click', function (menu, item, e) {
|
2019-06-25 07:39:09 +00:00
|
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, false, name]);
|
2019-06-24 13:53:12 +00:00
|
|
|
});
|
|
|
|
morearr.push(mnu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var btn = this.btnMore;
|
|
|
|
if (morearr.length) {
|
|
|
|
if (btn.menu && btn.menu.rendered) {
|
|
|
|
btn.menu.removeAll();
|
|
|
|
morearr.forEach(function(item){
|
|
|
|
btn.menu.addItem(item);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
btn.setMenu(new Common.UI.Menu({
|
|
|
|
restoreHeight: 415,
|
|
|
|
items: morearr
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
btn.setDisabled(morearr.length<1);
|
2019-06-20 09:51:27 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-06-24 12:57:28 +00:00
|
|
|
updateRecent: function() {
|
|
|
|
this.formulasGroups && this.setButtonMenu(this.btnRecent, 'Last10');
|
|
|
|
},
|
|
|
|
|
|
|
|
setApi: function (api) {
|
|
|
|
this.api = api;
|
|
|
|
},
|
|
|
|
|
|
|
|
txtRecent: 'Recently used',
|
|
|
|
txtAutosum: 'Autosum',
|
|
|
|
txtAutosumTip: 'Summation',
|
|
|
|
txtAdditional: 'Additional',
|
|
|
|
txtFormula: 'Function',
|
2019-06-24 13:53:12 +00:00
|
|
|
txtFormulaTip: 'Insert function',
|
|
|
|
txtMore: 'More functions'
|
2019-06-20 09:51:27 +00:00
|
|
|
}
|
|
|
|
}()), SSE.Views.FormulaTab || {}));
|
|
|
|
});
|