/*
* (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
*
*/
/**
*
* WatchDialog.js
*
* Created on 24.06.22
*
*/
define([
'text!spreadsheeteditor/main/app/template/WatchDialog.template',
'common/main/lib/view/AdvancedSettingsWindow',
], function (contentTemplate) {
'use strict';
SSE.Views = SSE.Views || {};
SSE.Views.WatchDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
alias: 'WatchDialog',
contentWidth: 560,
modal: false,
separator: false,
buttons: ['close']
},
initialize: function (options) {
var me = this;
_.extend(this.options, {
title: this.txtTitle,
contentStyle: 'padding: 10px 0 0;',
contentTemplate: _.template(contentTemplate)({scope: this})
}, options);
this.api = options.api;
this.handler = options.handler;
this.wrapEvents = {
onRefreshWatchList: _.bind(this.refreshList, this)
};
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
},
render: function () {
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
var me = this;
this.watchList = new Common.UI.ListView({
el: $('#watch-dialog-list', this.$window),
multiSelect: true,
store: new Common.UI.DataViewStore(),
simpleAddMode: true,
headers: [
{name: this.textBook, width: 70},
{name: this.textSheet, width: 70},
{name: this.textName, width: 70},
{name: this.textCell, width: 70},
{name: this.textValue, width: 110},
{name: this.textFormula, width: 135},
],
itemTemplate: _.template([
'
',
'
<%= Common.Utils.String.htmlEncode(book) %>
',
'
<%= Common.Utils.String.htmlEncode(sheet) %>
',
'
<%= Common.Utils.String.htmlEncode(name) %>
',
'
<%= cell %>
',
'
<%= Common.Utils.String.htmlEncode(value) %>
',
'
<%= Common.Utils.String.htmlEncode(formula) %>
',
'
'
].join('')),
tabindex: 1
});
this.watchList.on('item:select', _.bind(this.onSelectWatch, this))
.on('item:deselect', _.bind(this.onSelectWatch, this))
.on('item:keydown', _.bind(this.onKeyDown, this))
.on('item:dblclick', _.bind(this.onDblClickWatch, this))
.on('entervalue', _.bind(this.onEnterValue, this))
.on('item:add', _.bind(this.addTooltips, this))
.on('item:change', _.bind(this.addTooltips, this))
.on('reset:before', _.bind(this.resetItemsBefore, this));
this.btnAdd = new Common.UI.Button({
el: $('#watch-dialog-btn-add', this.$window)
});
this.btnAdd.on('click', _.bind(this.onAddWatch, this, false));
this.btnDelete = new Common.UI.Button({
parentEl: $('#watch-dialog-btn-delete', this.$window),
cls: 'btn-text-split-default auto',
caption: this.textDelete,
split: true,
menu : new Common.UI.Menu({
style: 'min-width:100px;',
items: [
{
caption: this.textDelete,
value: 0
},
{
caption: this.textDeleteAll,
value: 1
}]
}),
takeFocusOnClose: true
});
$(this.btnDelete.cmpEl.find('button')[0]).css('min-width', '87px');
this.btnDelete.on('click', _.bind(this.onDeleteWatch, this));
this.btnDelete.menu.on('item:click', _.bind(this.onDeleteMenu, this));
this.afterRender();
},
afterRender: function() {
this._setDefaults();
},
getFocusedComponents: function() {
return [ this.btnAdd, this.btnDelete, this.watchList ];
},
getDefaultFocusableComponent: function () {
return this.watchList;
},
_setDefaults: function (props) {
this.refreshList();
this.api.asc_registerCallback('asc_onUpdateCellWatches', this.wrapEvents.onRefreshWatchList);
},
refreshList: function(watches) {
if (watches) { // change existing watches
for (var idx in watches) {
if (watches.hasOwnProperty(idx)) {
var index = parseInt(idx),
item = watches[idx],
store = this.watchList.store;
if (index>=0 && index0) && this.watchList.selectByIndex(this._deletedIndex 0) && this.watchList.scrollToRecord(selectedRec[0]);
this._fromKeyDown && this.watchList.focus();
this._fromKeyDown = false;
this._deletedIndex=undefined;
}
this.updateButtons();
}
},
onAddWatch: function() {
var range = '';
var me = this;
if (me.api) {
var handlerDlg = function(dlg, result) {
if (result == 'ok') {
me.api.asc_addCellWatches(dlg.getSettings());
}
};
var win = new SSE.Views.CellRangeDialog({
handler: handlerDlg
}).on('close', function() {
me.show();
});
var xy = Common.Utils.getOffset(me.$window);
me.hide();
win.show(me.$window, xy);
win.setSettings({
api : me.api,
range : me.api.asc_getEscapeSheetName(me.api.asc_getWorksheetName(me.api.asc_getActiveWorksheetIndex())) + '!' + me.api.asc_getActiveRangeStr(Asc.referenceType.A),
type : Asc.c_oAscSelectionDialogType.Chart
});
}
},
onDeleteWatch: function() {
var me = this;
var rec = this.watchList.getSelectedRec();
if (rec) {
var props=[];
_.each(rec, function (r, i) {
me._deletedIndex = me.watchList.store.indexOf(r)-props.length;
props[i] =r.get('props');
});
this.api.asc_deleteCellWatches(props);
}
},
onDeleteMenu: function(menu, item) {
if (item.value == 1) {
this.api.asc_deleteCellWatches(undefined, true);
} else
this.onDeleteWatch();
},
onSelectWatch: function(lisvView, itemView, record) {
this.updateButtons();
},
onDblClickWatch: function(lisvView, itemView, record) {
record && this.api.asc_findCell('\'' + record.get('sheet') + '\'' + '!' + record.get('cell'));
},
onEnterValue: function(lisvView, record) {
if (this.watchList.store.length===0) return;
record && this.api.asc_findCell('\'' + record.get('sheet') + '\'' + '!' + record.get('cell'));
},
onKeyDown: function (lisvView, record, e) {
if (e.keyCode==Common.UI.Keys.DELETE && !this.btnDelete.isDisabled()) {
this._fromKeyDown = true;
this.onDeleteWatch();
}
},
updateButtons: function() {
var rec = this.watchList.getSelectedRec();
this.btnDelete.setDisabled(!(rec && rec.length>0));
this.watchList.scroller && this.watchList.scroller.update({alwaysVisibleY: true});
},
close: function () {
this.api.asc_unregisterCallback('asc_onUpdateCellWatches', this.wrapEvents.onRefreshWatchList);
Common.Views.AdvancedSettingsWindow.prototype.close.call(this);
},
resetItemsBefore: function (dataview) {
dataview.dataViewItems && _.each(dataview.dataViewItems, function(view) {
if (view.tipsArray) {
view.tipsArray.forEach(function (item) {
if (item) {
if (item.dontShow===undefined)
item.dontShow = true;
(item.tip()).remove();
}
});
}
}, this);
},
addTooltips: function (dataview, view, record) {
if (view.tipsArray) {
view.tipsArray.forEach(function (item) {
if (item) {
if (item.dontShow===undefined)
item.dontShow = true;
(item.tip()).remove();
}
});
}
var el = document.createElement('span');
var props = Common.UI.Themes.getThemeProps('font');
el.style.fontSize = props && props.size ? props.size : '11px';
el.style.fontFamily = props && props.name ? props.name : 'Arial, Helvetica, "Helvetica Neue", sans-serif';
el.style.position = "absolute";
el.style.top = '-1000px';
el.style.left = '-1000px';
document.body.appendChild(el);
var divs = $(view.el).find('.list-item > div');
this.checkTextOfItem(el, view, $(divs[4]), record.get('value'), this.watchList.options.headers[4].width );
this.checkTextOfItem(el, view, $(divs[5]), record.get('formula'), this.watchList.options.headers[5].width );
document.body.removeChild(el);
view.tipsArray = [];
},
checkTextOfItem: function (test_el, view, div, txt, limit ) {
test_el.innerHTML = Common.Utils.String.htmlEncode(txt);
var dataview = this.watchList;
if (test_el.offsetWidth > limit) {
div.one('mouseenter', function(e){ // hide tooltip when mouse is over menu
var $target = $(e.target);
$target.tooltip({
title : txt, // use actual tip, because it can be changed
placement : 'cursor',
zIndex : dataview.tipZIndex
});
$target.mouseenter();
view.tipsArray.push($target.data('bs.tooltip'));
});
}
},
txtTitle: 'Watch Window',
textAdd: 'Add watch',
textDelete: 'Delete watch',
textDeleteAll: 'Delete all',
closeButtonText: 'Close',
textBook: 'Book',
textSheet: 'Sheet',
textName: 'Name',
textCell: 'Cell',
textValue: 'Value',
textFormula: 'Formula'
}, SSE.Views.WatchDialog || {}));
});