805 lines
39 KiB
JavaScript
805 lines
39 KiB
JavaScript
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2024
|
|
*
|
|
* 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-6 Ernesta Birznieka-Upish
|
|
* 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 on 14.06.2019
|
|
*
|
|
*/
|
|
|
|
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;
|
|
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'}]);
|
|
});
|
|
me.btnCalculate.on('click', function () {
|
|
me.fireEvent('function:calculate', [{type: Asc.c_oAscCalculateType.All}]);
|
|
});
|
|
me.btnCalculate.menu.on('item:click', function (menu, item, e) {
|
|
me.fireEvent('function:calculate', [{type: item.value}]);
|
|
});
|
|
me.btnNamedRange.menu.on('show:after', function (menu) {
|
|
me.fireEvent('function:namedrange-open', [menu]);
|
|
});
|
|
me.btnNamedRange.menu.on('item:click', function (menu, item, e) {
|
|
me.fireEvent('function:namedrange', [menu, item, e]);
|
|
});
|
|
me.btnWatch.on('click', function(b, e){
|
|
me.fireEvent('function:watch', [b.pressed]);
|
|
});
|
|
|
|
me.btnTracePrec.on('click', function (b, e) {
|
|
me.fireEvent('function:precedents');
|
|
});
|
|
me.btnTraceDep.on('click', function (b, e) {
|
|
me.fireEvent('function:dependents');
|
|
});
|
|
me.btnRemArrows.menu.on('item:click', function (menu, item, e) {
|
|
me.fireEvent('function:remove-arrows', [item.value]);
|
|
});
|
|
me.btnRemArrows.on('click', function (b, e) {
|
|
me.fireEvent('function:remove-arrows', [Asc.c_oAscRemoveArrowsType.all]);
|
|
});
|
|
me.btnShowFormulas && this.btnShowFormulas.on('click', function (btn, e) {
|
|
me.fireEvent('function:showformula', [btn.pressed]);
|
|
});
|
|
}
|
|
return {
|
|
options: {},
|
|
|
|
initialize: function (options) {
|
|
Common.UI.BaseView.prototype.initialize.call(this);
|
|
this.toolbar = options.toolbar;
|
|
this.formulasGroups = options.formulasGroups;
|
|
|
|
this.lockedControls = [];
|
|
this.formulaControls = [];
|
|
|
|
this.shortcutsController = SSE.getController('Common.Controllers.Shortcuts');
|
|
|
|
var me = this,
|
|
$host = me.toolbar.$el,
|
|
_set = Common.enumLock;
|
|
|
|
var formulaDialog = SSE.getController('FormulaDialog');
|
|
|
|
this.btnFinancial = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-financial'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-finance',
|
|
caption: formulaDialog.sCategoryFinancial,
|
|
hint: formulaDialog.sCategoryFinancial,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-financial',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnFinancial);
|
|
this.formulaControls.push(this.btnFinancial);
|
|
|
|
this.btnLogical = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-logical'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-logic',
|
|
caption: formulaDialog.sCategoryLogical,
|
|
hint: formulaDialog.sCategoryLogical,
|
|
menu: true,
|
|
split: false,
|
|
disabled: true,
|
|
action: 'formula-logical',
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnLogical);
|
|
this.formulaControls.push(this.btnLogical);
|
|
|
|
this.btnTextData = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-text'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-func-text',
|
|
caption: formulaDialog.sCategoryTextAndData,
|
|
hint: formulaDialog.sCategoryTextAndData,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-textdata',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnTextData);
|
|
this.formulaControls.push(this.btnTextData);
|
|
|
|
this.btnDateTime = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-datetime'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-datetime',
|
|
caption: formulaDialog.sCategoryDateAndTime,
|
|
hint: formulaDialog.sCategoryDateAndTime,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-datetime',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnDateTime);
|
|
this.formulaControls.push(this.btnDateTime);
|
|
|
|
this.btnReference = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-lookup'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-lookup',
|
|
caption: formulaDialog.sCategoryLookupAndReference,
|
|
hint: formulaDialog.sCategoryLookupAndReference,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-reference',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnReference);
|
|
this.formulaControls.push(this.btnReference);
|
|
|
|
this.btnMath = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-math'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-func-math',
|
|
caption: formulaDialog.sCategoryMathematic,
|
|
hint: formulaDialog.sCategoryMathematic,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-math',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnMath);
|
|
this.formulaControls.push(this.btnMath);
|
|
|
|
this.btnRecent = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-recent'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-recent',
|
|
caption: this.txtRecent,
|
|
hint: this.txtRecent,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-recent',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnRecent);
|
|
this.formulaControls.push(this.btnRecent);
|
|
|
|
this.btnAutosum = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-autosum'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-autosum',
|
|
caption: this.txtAutosum,
|
|
hint: [this.txtAutosumTip, this.txtFormulaTip],
|
|
split: true,
|
|
action: 'autosum',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.userProtected],
|
|
menu: new Common.UI.Menu({
|
|
items : [
|
|
{caption: 'SUM', value: 'SUM'},
|
|
{caption: 'AVERAGE', value: 'AVERAGE'},
|
|
{caption: 'MIN', value: 'MIN'},
|
|
{caption: 'MAX', value: 'MAX'},
|
|
{caption: 'COUNT', value: 'COUNT'},
|
|
{caption: '--'},
|
|
{
|
|
caption: me.txtAdditional,
|
|
value: 'more',
|
|
hint: me.txtFormulaTip
|
|
}
|
|
]
|
|
}),
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnAutosum);
|
|
this.formulaControls.push(this.btnAutosum);
|
|
this.shortcutsController.updateShortcutHints({
|
|
CellInsertSumFunction: {
|
|
btn: this.btnAutosum,
|
|
label: this.txtAutosumTip,
|
|
applyCallback: function(item, hintText) {
|
|
item.btn.updateHint([hintText, item.btn.options.hint[1]]);
|
|
}
|
|
},
|
|
OpenInsertFunctionDialog: {
|
|
btn: this.btnAutosum,
|
|
label: this.txtFormulaTip,
|
|
applyCallback: function(item, hintText) {
|
|
const moreMenuItem = _.find(item.btn.menu.items, function(item) {
|
|
return item.value == 'more'
|
|
});
|
|
moreMenuItem && moreMenuItem.updateHint(hintText);
|
|
item.btn.updateHint([item.btn.options.hint[0], hintText]);
|
|
}
|
|
}
|
|
});
|
|
|
|
this.btnFormula = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-additional-formula'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-ins-formula',
|
|
caption: this.txtFormula,
|
|
hint: this.txtFormulaTip,
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnFormula);
|
|
this.formulaControls.push(this.btnFormula);
|
|
this.shortcutsController.updateShortcutHints({
|
|
OpenInsertFunctionDialog: {
|
|
btn: this.btnFormula,
|
|
label: this.txtFormulaTip
|
|
}
|
|
});
|
|
|
|
this.btnMore = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-more'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-big-more',
|
|
caption: this.txtMore,
|
|
hint: this.txtMore,
|
|
menu: true,
|
|
split: false,
|
|
action: 'formula-more',
|
|
disabled: true,
|
|
lock: [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.noSubitems, _set.userProtected],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnMore);
|
|
this.formulaControls.push(this.btnMore);
|
|
|
|
this.btnCalculate = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-calculate'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-calculation',
|
|
caption: this.txtCalculation,
|
|
split: true,
|
|
menu: true,
|
|
action: 'calculate',
|
|
disabled: true,
|
|
lock: [_set.editCell, _set.selRangeEdit, _set.lostConnect, _set.coAuth],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnCalculate);
|
|
this.formulaControls.push(this.btnCalculate);
|
|
|
|
this.btnNamedRange = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-named-range-huge'),
|
|
cls : 'btn-toolbar x-huge icon-top',
|
|
iconCls : 'toolbar__icon btn-big-named-range',
|
|
caption: this.toolbar.txtNamedRange,
|
|
hint: this.toolbar.txtNamedRange,
|
|
split: false,
|
|
disabled: true,
|
|
lock : [_set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.selRangeEdit, _set.wsLock],
|
|
menu: new Common.UI.Menu({
|
|
items: [
|
|
{
|
|
caption: me.toolbar.txtManageRange,
|
|
lock : [_set.editCell],
|
|
value: 'manage'
|
|
},
|
|
{
|
|
caption: me.toolbar.txtNewRange,
|
|
lock : [_set.editCell],
|
|
value: 'new'
|
|
},
|
|
{
|
|
caption: me.toolbar.txtPasteRange,
|
|
lock: [_set.userProtected],
|
|
value: 'paste'
|
|
}
|
|
]
|
|
}),
|
|
action: 'named-ranges',
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnNamedRange);
|
|
|
|
this.btnWatch = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-watch-window'),
|
|
cls: 'btn-toolbar x-huge icon-top',
|
|
iconCls: 'toolbar__icon btn-watch-window',
|
|
caption: this.txtWatch,
|
|
hint: this.tipWatch,
|
|
disabled: true,
|
|
enableToggle: true,
|
|
lock: [_set.editCell, _set.lostConnect, _set.coAuth],
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: 'small'
|
|
});
|
|
this.lockedControls.push(this.btnWatch);
|
|
|
|
this.btnTracePrec = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-trace-prec'),
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'toolbar__icon btn-trace-precedents',
|
|
lock: [_set.editCell, _set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.wsLock],
|
|
caption: this.capBtnTracePrec,
|
|
dataHint: '1',
|
|
dataHintDirection: 'left',
|
|
dataHintOffset: 'medium'
|
|
});
|
|
this.lockedControls.push(this.btnTracePrec);
|
|
|
|
this.btnTraceDep = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-trace-dep'),
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'toolbar__icon btn-trace-dependents',
|
|
lock: [_set.editCell, _set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.wsLock],
|
|
caption: this.capBtnTraceDep,
|
|
dataHint: '1',
|
|
dataHintDirection: 'left',
|
|
dataHintOffset: 'medium'
|
|
});
|
|
this.lockedControls.push(this.btnTraceDep);
|
|
|
|
this.btnRemArrows = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-remove-arrows'),
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'toolbar__icon btn-remove-trace-arrows',
|
|
lock: [_set.editCell, _set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.wsLock],
|
|
caption: this.capBtnRemoveArr,
|
|
split: true,
|
|
menu: true,
|
|
dataHint: '1',
|
|
dataHintDirection: 'bottom',
|
|
dataHintOffset: '0, -8'
|
|
});
|
|
this.lockedControls.push(this.btnRemArrows);
|
|
|
|
this.btnShowFormulas = new Common.UI.Button({
|
|
parentEl: $host.find('#slot-btn-show-formulas'),
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'toolbar__icon btn-show-formulas',
|
|
caption: this.txtShowFormulas,
|
|
disabled: true,
|
|
enableToggle: true,
|
|
lock: [_set.sheetLock, _set.editCell, _set.lostConnect, _set.coAuth],
|
|
dataHint: '1',
|
|
dataHintDirection: 'left',
|
|
dataHintOffset: 'medium'
|
|
});
|
|
this.lockedControls.push(this.btnShowFormulas);
|
|
Common.UI.LayoutManager.addControls(this.lockedControls);
|
|
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(){
|
|
me.btnCalculate.updateHint([me.tipCalculateTheEntireWorkbook, me.tipCalculate]);
|
|
var _menu = new Common.UI.Menu({
|
|
items: [
|
|
{caption: me.textCalculateWorkbook, value: Asc.c_oAscCalculateType.All},
|
|
{caption: me.textCalculateCurrentSheet, value: Asc.c_oAscCalculateType.ActiveSheet}
|
|
//{caption: '--'},
|
|
//{caption: me.textAutomatic, value: '', toggleGroup: 'menuCalcMode', checkable: true, checked: true},
|
|
//{caption: me.textManual, value: '', toggleGroup: 'menuCalcMode', checkable: true, checked: false}
|
|
]
|
|
});
|
|
me.btnCalculate.setMenu(_menu);
|
|
me.shortcutsController.updateShortcutHints({
|
|
RecalculateAll: {
|
|
btn: me.btnCalculate,
|
|
label: me.tipCalculateTheEntireWorkbook,
|
|
applyCallback: function(item, hintText) {
|
|
item.btn.updateHint([hintText, item.btn.options.hint[1]]);
|
|
}
|
|
}
|
|
});
|
|
|
|
me.btnShowFormulas.updateHint(me.tipShowFormulas + Common.Utils.String.format(' ({0}+`)', Common.Utils.String.textCtrl));
|
|
me.btnTracePrec.updateHint(me.tipTracePrec);
|
|
me.btnTraceDep.updateHint(me.tipTraceDep);
|
|
me.btnRemArrows.updateHint(me.tipRemoveArr);
|
|
me.btnRemArrows.setMenu(new Common.UI.Menu({
|
|
items: [
|
|
{caption: me.capBtnRemoveArr, value: Asc.c_oAscRemoveArrowsType.all},
|
|
{caption: me.txtRemPrec, value: Asc.c_oAscRemoveArrowsType.precedent},
|
|
{caption: me.txtRemDep, value: Asc.c_oAscRemoveArrowsType.dependent}
|
|
]
|
|
}));
|
|
|
|
setEvents.call(me);
|
|
});
|
|
},
|
|
|
|
show: function () {
|
|
Common.UI.BaseView.prototype.show.call(this);
|
|
this.fireEvent('show', this);
|
|
},
|
|
|
|
getButtons: function(type) {
|
|
if (type == 'formula')
|
|
return this.formulaControls;
|
|
else if (type == 'range')
|
|
return this.btnNamedRange;
|
|
else
|
|
return this.lockedControls;
|
|
},
|
|
|
|
SetDisabled: function (state) {
|
|
this.lockedControls && this.lockedControls.forEach(function(button) {
|
|
if ( button ) {
|
|
button.setDisabled(state);
|
|
}
|
|
}, this);
|
|
},
|
|
|
|
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')
|
|
}));
|
|
});
|
|
}
|
|
if (arr.length) {
|
|
if (btn.menu && btn.menu.rendered) {
|
|
var menu = btn.menu._innerMenu;
|
|
if (menu) {
|
|
menu.removeAll();
|
|
arr.forEach(function(item){
|
|
menu.addItem(item);
|
|
});
|
|
}
|
|
} else {
|
|
btn.setMenu(new Common.UI.Menu({
|
|
items: [
|
|
{template: _.template('<div id="id-toolbar-formula-menu-'+ name +'" style="display: flex;" class="open"></div>')},
|
|
{ caption: '--' },
|
|
{
|
|
caption: me.txtAdditional,
|
|
value: 'more',
|
|
hint: me.txtFormulaTip
|
|
}
|
|
]
|
|
}));
|
|
btn.menu.items[2].on('click', function (item, e) {
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, false, name]);
|
|
});
|
|
btn.menu.on('show:after', function (menu, e) {
|
|
var internalMenu = menu._innerMenu;
|
|
internalMenu.scroller.update({alwaysVisibleY: true});
|
|
_.delay(function() {
|
|
menu._innerMenu && menu._innerMenu.cmpEl.focus();
|
|
}, 10);
|
|
});
|
|
me.shortcutsController.updateShortcutHints({
|
|
OpenInsertFunctionDialog: {
|
|
btn: btn,
|
|
label: me.txtFormulaTip,
|
|
applyCallback: function(item, hintText) {
|
|
const moreMenuItem = _.find(item.btn.menu.items, function(item) {
|
|
return item.value == 'more'
|
|
});
|
|
moreMenuItem && moreMenuItem.updateHint(hintText);
|
|
}
|
|
}
|
|
});
|
|
|
|
var menu = new Common.UI.Menu({
|
|
maxHeight: 300,
|
|
cls: 'internal-menu',
|
|
items: arr,
|
|
outerMenu: {menu: btn.menu, index: 0}
|
|
});
|
|
menu.render(btn.menu.items[0].cmpEl.children(':first'));
|
|
menu.cmpEl.css({
|
|
display : 'block',
|
|
position : 'relative',
|
|
left : 0,
|
|
top : 0
|
|
});
|
|
menu.cmpEl.attr({tabindex: "-1"});
|
|
menu.on('item:click', function (menu, item, e) {
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, false, name]);
|
|
});
|
|
btn.menu._innerMenu = menu;
|
|
btn.menu.setInnerMenu([{menu: menu, index: 0}]);
|
|
}
|
|
}
|
|
Common.Utils.lockControls(Common.enumLock.noSubitems, arr.length<1, {array: [btn]});
|
|
},
|
|
|
|
setMenuItemMenu: function(name) {
|
|
var me = this,
|
|
arr = [],
|
|
formulaDialog = SSE.getController('FormulaDialog'),
|
|
group = me.formulasGroups.findWhere({name : name});
|
|
|
|
var functions = group ? group.get('functions') : [];
|
|
functions && functions.forEach(function(item) {
|
|
arr.push(new Common.UI.MenuItem({
|
|
caption: item.get('name'),
|
|
value: item.get('origin')
|
|
}));
|
|
});
|
|
var btn = this.btnMore,
|
|
mnu;
|
|
if (btn.menu && btn.menu.rendered) {
|
|
for (var i = 0; i < btn.menu.getItemsLength(true); i++) {
|
|
if (btn.menu.items[i].options.value===name) {
|
|
mnu = btn.menu.items[i];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (mnu) {
|
|
var menu = mnu.menu._innerMenu;
|
|
if (menu) {
|
|
menu.removeAll();
|
|
arr.forEach(function(item){
|
|
menu.addItem(item);
|
|
});
|
|
}
|
|
mnu.setVisible(arr.length>0);
|
|
} else {
|
|
mnu = new Common.UI.MenuItem({
|
|
caption: formulaDialog['sCategory' + name] || name,
|
|
value: name,
|
|
visible: arr.length>0,
|
|
menu: new Common.UI.Menu({
|
|
menuAlign: 'tl-tr',
|
|
items: [
|
|
{template: _.template('<div id="id-toolbar-formula-menu-' + name + '" style="display: flex;" class="open"></div>')},
|
|
{caption: '--'},
|
|
{
|
|
caption: me.txtAdditional,
|
|
value: 'more',
|
|
hint: me.txtFormulaTip
|
|
}
|
|
]
|
|
})
|
|
});
|
|
mnu.menu.items[2].on('click', function (item, e) {
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, false, name]);
|
|
});
|
|
mnu.menu.on('show:after', function (menu, e) {
|
|
var internalMenu = menu._innerMenu;
|
|
internalMenu.scroller.update({alwaysVisibleY: true});
|
|
_.delay(function () {
|
|
menu._innerMenu && menu._innerMenu.items[0].cmpEl.find('> a').focus();
|
|
}, 10);
|
|
}).on('keydown:before', function (menu, e) {
|
|
if (e.keyCode == Common.UI.Keys.LEFT || e.keyCode == Common.UI.Keys.ESC) {
|
|
var $parent = menu.cmpEl.parent();
|
|
if ($parent.hasClass('dropdown-submenu') && $parent.hasClass('over')) { // close submenu
|
|
$parent.removeClass('over');
|
|
$parent.find('> a').focus();
|
|
}
|
|
}
|
|
});
|
|
me.shortcutsController.updateShortcutHints({
|
|
OpenInsertFunctionDialog: {
|
|
label: me.txtFormulaTip,
|
|
applyCallback: function(item, hintText) {
|
|
const moreMenuItem = _.find(mnu.menu.items, function(item) {
|
|
return item.value == 'more'
|
|
});
|
|
moreMenuItem && moreMenuItem.updateHint(hintText);
|
|
}
|
|
}
|
|
});
|
|
|
|
// internal menu
|
|
var menu = new Common.UI.Menu({
|
|
maxHeight: 300,
|
|
cls: 'internal-menu',
|
|
items: arr,
|
|
outerMenu: {menu: mnu.menu, index: 0}
|
|
});
|
|
menu.on('item:click', function (menu, item, e) {
|
|
me.fireEvent('function:apply', [{name: item.caption, origin: item.value}, false, name]);
|
|
});
|
|
mnu.menu._innerMenu = menu;
|
|
mnu.menu.setInnerMenu([{menu: menu, index: 0}]);
|
|
}
|
|
return mnu;
|
|
},
|
|
|
|
fillFunctions: function () {
|
|
if (this.formulasGroups) {
|
|
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.getItems(true);
|
|
for (var i=0; i<Math.min(4,formulas.length); i++) {
|
|
this.api && formulas[i].setCaption(this.api.asc_getFormulaLocaleName(formulas[i].value));
|
|
}
|
|
|
|
// more button
|
|
var me = this,
|
|
btn = this.btnMore,
|
|
morearr = [],
|
|
visiblecount = 0;
|
|
|
|
btn.menu && btn.menu.rendered && btn.menu.removeAll(true);
|
|
|
|
['Cube', 'Database', 'Engineering', 'Information', 'Statistical', 'Custom'].forEach(function(name) {
|
|
var mnu = me.setMenuItemMenu(name);
|
|
if (mnu) {
|
|
morearr.push(mnu);
|
|
mnu.visible && (visiblecount++);
|
|
}
|
|
});
|
|
if (morearr.length) {
|
|
if (btn.menu && btn.menu.rendered) {
|
|
morearr.forEach(function(item){
|
|
btn.menu.addItem(item, true);
|
|
});
|
|
} else {
|
|
btn.setMenu(new Common.UI.Menu({
|
|
items: morearr
|
|
}));
|
|
}
|
|
btn.menu.getItems(true).forEach(function(mnu){
|
|
var menuContainer = mnu.menu.items[0].cmpEl.children(':first'),
|
|
menu = mnu.menu._innerMenu;
|
|
menu.render(menuContainer);
|
|
menu.cmpEl.css({
|
|
display : 'block',
|
|
position : 'relative',
|
|
left : 0,
|
|
top : 0
|
|
});
|
|
menu.cmpEl.attr({tabindex: "-1"});
|
|
});
|
|
}
|
|
Common.Utils.lockControls(Common.enumLock.noSubitems, visiblecount<1, {array: [btn]});
|
|
}
|
|
},
|
|
|
|
updateRecent: function() {
|
|
this.formulasGroups && this.setButtonMenu(this.btnRecent, 'Last10');
|
|
},
|
|
|
|
updateCustom: function() {
|
|
var btn = this.btnMore,
|
|
mnu = this.formulasGroups ? this.setMenuItemMenu('Custom') : null;
|
|
if (mnu) {
|
|
var hasvisible = false;
|
|
if (btn.menu && btn.menu.rendered) {
|
|
for (var i = 0; i < btn.menu.getItemsLength(true); i++) {
|
|
if (btn.menu.items[i].visible) {
|
|
hasvisible = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
Common.Utils.lockControls(Common.enumLock.noSubitems, !hasvisible, {array: [btn]});
|
|
}
|
|
},
|
|
|
|
setApi: function (api) {
|
|
this.api = api;
|
|
},
|
|
|
|
txtRecent: 'Recently used',
|
|
txtAutosum: 'Autosum',
|
|
txtAutosumTip: 'Summation',
|
|
txtAdditional: 'Insert Function',
|
|
txtFormula: 'Function',
|
|
txtFormulaTip: 'Insert function',
|
|
txtMore: 'More functions',
|
|
txtCalculation: 'Calculation',
|
|
tipCalculate: 'Calculate',
|
|
textCalculateWorkbook: 'Calculate workbook',
|
|
textCalculateCurrentSheet: 'Calculate current sheet',
|
|
textAutomatic: 'Automatic',
|
|
textManual: 'Manual',
|
|
tipCalculateTheEntireWorkbook: 'Calculate the entire workbook',
|
|
txtWatch: 'Watch Window',
|
|
tipWatch: 'Add cells to the Watch Window list',
|
|
capBtnTracePrec: 'Trace Precedents',
|
|
tipTracePrec: 'Show arrows that indicate which cells affect the value of the selected cell',
|
|
capBtnTraceDep: 'Trace Dependents',
|
|
tipTraceDep: 'Show arrows that indicate which cells are affected by the value of the selected cell',
|
|
capBtnRemoveArr: 'Remove Arrows',
|
|
tipRemoveArr: 'Remove the arrows drawn by Trace Precedents or Trace Dependents',
|
|
txtRemPrec: 'Remove Precedents Arrows',
|
|
txtRemDep: 'Remove Dependents Arrows',
|
|
txtShowFormulas: 'Show Formulas',
|
|
tipShowFormulas: 'Display the formula in each cell instead of the resulting value'
|
|
}
|
|
}()), SSE.Views.FormulaTab || {}));
|
|
});
|