[SSE] Add rules manager for conditional formatting
This commit is contained in:
parent
796cbd9c57
commit
fd4716eb72
|
@ -58,7 +58,8 @@ define([
|
|||
'spreadsheeteditor/main/app/view/PageMarginsDialog',
|
||||
'spreadsheeteditor/main/app/view/HeaderFooterDialog',
|
||||
'spreadsheeteditor/main/app/view/PrintTitlesDialog',
|
||||
'spreadsheeteditor/main/app/view/ScaleDialog'
|
||||
'spreadsheeteditor/main/app/view/ScaleDialog',
|
||||
'spreadsheeteditor/main/app/view/FormatRulesManagerDlg'
|
||||
], function () { 'use strict';
|
||||
|
||||
SSE.Controllers.Toolbar = Backbone.Controller.extend(_.extend({
|
||||
|
@ -1457,7 +1458,7 @@ define([
|
|||
var me = this,
|
||||
props = me.api.asc_getSortProps();
|
||||
if (props) {
|
||||
(new SSE.Views.ConditionalFormaDialog({
|
||||
(new SSE.Views.FormatRulesManagerDlg({
|
||||
props: props,
|
||||
api: me.api,
|
||||
handler: function (result, settings) {
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
<div class="settings-panel active">
|
||||
<div class="inner-content">
|
||||
<table cols="2" style="width: 100%;">
|
||||
<tr>
|
||||
<td colspan=2 class="padding-large">
|
||||
<label><%= scope.textScope %></label>
|
||||
<div id="format-manager-combo-scope" class="input-group-nr" style="width:185px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=2>
|
||||
<label id="format-manager-label-column" class="header" style="width: 186px;"><%= scope.textRules %></label>
|
||||
<label id="format-manager-label-sort" class="header" style="width: 177px;"><%= scope.textApply %></label>
|
||||
<label class="header" style=""><%= scope.textFormat %></label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=2 class="padding-small">
|
||||
<div id="format-manager-rules-list" class="" style="width:100%; height: 151px;"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="padding-large">
|
||||
<button type="button" class="btn btn-text-default" id="format-manager-btn-new" style="min-width: 100px;margin-right:5px;"><%= scope.textNew %></button>
|
||||
<button type="button" class="btn btn-text-default" id="format-manager-btn-edit" style="min-width: 100px;margin-right:5px;"><%= scope.textEdit %></button>
|
||||
<div id="format-manager-btn-up" style="display: inline-block;border: 1px solid #cfcfcf;border-radius: 1px;"></div>
|
||||
<div id="format-manager-btn-down" style="display: inline-block;border: 1px solid #cfcfcf;border-radius: 1px;"></div>
|
||||
</td>
|
||||
<td class="padding-large" style="text-align: right;width:90px;">
|
||||
<button type="button" class="btn btn-text-default" id="format-manager-btn-delete" style="min-width: 100px;"><%= scope.textDelete %></button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
381
apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js
Normal file
381
apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js
Normal file
|
@ -0,0 +1,381 @@
|
|||
/*
|
||||
*
|
||||
* (c) Copyright Ascensio System SIA 2010-2020
|
||||
*
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
* FormatRulesManagerDlg.js
|
||||
*
|
||||
* Created by Julia.Radzhabova on 14.04.2020
|
||||
* Copyright (c) 2020 Ascensio System SIA. All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
define([ 'text!spreadsheeteditor/main/app/template/FormatRulesManagerDlg.template',
|
||||
'common/main/lib/view/AdvancedSettingsWindow',
|
||||
'common/main/lib/component/ComboBox',
|
||||
'common/main/lib/component/ListView',
|
||||
'common/main/lib/component/InputField'
|
||||
], function (contentTemplate) {
|
||||
'use strict';
|
||||
|
||||
SSE.Views = SSE.Views || {};
|
||||
|
||||
var _CustomItem = Common.UI.DataViewItem.extend({
|
||||
initialize : function(options) {
|
||||
Common.UI.BaseView.prototype.initialize.call(this, options);
|
||||
|
||||
var me = this;
|
||||
|
||||
me.template = me.options.template || me.template;
|
||||
|
||||
me.listenTo(me.model, 'change:sort', function() {
|
||||
me.render();
|
||||
me.trigger('change', me, me.model);
|
||||
});
|
||||
me.listenTo(me.model, 'change:selected', function() {
|
||||
var el = me.$el || $(me.el);
|
||||
el.toggleClass('selected', me.model.get('selected') && me.model.get('allowSelected'));
|
||||
me.onSelectChange(me.model, me.model.get('selected') && me.model.get('allowSelected'));
|
||||
});
|
||||
me.listenTo(me.model, 'remove', me.remove);
|
||||
}
|
||||
});
|
||||
|
||||
SSE.Views.FormatRulesManagerDlg = Common.Views.AdvancedSettingsWindow.extend(_.extend({
|
||||
options: {
|
||||
alias: 'FormatRulesManagerDlg',
|
||||
contentWidth: 510,
|
||||
height: 361,
|
||||
buttons: ['ok', 'cancel']
|
||||
},
|
||||
|
||||
initialize: function (options) {
|
||||
var me = this;
|
||||
_.extend(this.options, {
|
||||
title: this.txtTitle,
|
||||
template: [
|
||||
'<div class="box" style="height:' + (this.options.height-85) + 'px;">',
|
||||
'<div class="content-panel" style="padding: 0;">' + _.template(contentTemplate)({scope: this}) + '</div>',
|
||||
'</div>',
|
||||
'<div class="separator horizontal"/>'
|
||||
].join('')
|
||||
}, options);
|
||||
|
||||
this.api = options.api;
|
||||
this.handler = options.handler;
|
||||
this.props = options.props;
|
||||
this.levels = [];
|
||||
|
||||
this.rulesStore = new Common.UI.DataViewStore();
|
||||
|
||||
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
|
||||
},
|
||||
render: function () {
|
||||
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
|
||||
var me = this;
|
||||
|
||||
this.cmbScope = new Common.UI.ComboBox({
|
||||
el : $('#format-manager-combo-scope'),
|
||||
menuStyle : 'min-width: 100%;',
|
||||
editable : false,
|
||||
cls : 'input-group-nr',
|
||||
data : [
|
||||
{ value: 0, displayValue: this.textSelection },
|
||||
{ value: 1, displayValue: this.textThisSheet },
|
||||
{ value: 2, displayValue: this.textThisTable }
|
||||
]
|
||||
}).on('selected', function(combo, record) {
|
||||
me.refreshRuleList(record.value);
|
||||
});
|
||||
this.cmbScope.setValue(0);
|
||||
|
||||
this.rulesList = new Common.UI.ListView({
|
||||
el: $('#format-manager-rules-list', this.$window),
|
||||
store: new Common.UI.DataViewStore(),
|
||||
emptyText: '',
|
||||
template: _.template(['<div class="listview inner" style=""></div>'].join('')),
|
||||
itemTemplate: _.template([
|
||||
'<div class="list-item" style="width: 100%;display:inline-block;" id="format-manager-item-<%= levelIndex %>">',
|
||||
'<div style="width:181px;padding-right: 10px;display: inline-block;vertical-align: middle;overflow: hidden; text-overflow: ellipsis; white-space: nowrap;"><%= name %></div>',
|
||||
'<div style="width:181px;padding-right: 10px;display: inline-block;vertical-align: middle;"><div id="format-manager-txt-rule-<%= levelIndex %>" style=""></div></div>',
|
||||
'<div style="width:94px;display: inline-block;vertical-align: middle;"></div>',
|
||||
'</div>'
|
||||
].join(''))
|
||||
});
|
||||
this.rulesList.createNewItem = function(record) {
|
||||
return new _CustomItem({
|
||||
template: this.itemTemplate,
|
||||
model: record
|
||||
});
|
||||
};
|
||||
this.rulesList.on('item:select', _.bind(this.onSelectRule, this))
|
||||
.on('item:keydown', _.bind(this.onKeyDown, this));
|
||||
|
||||
this.btnNew = new Common.UI.Button({
|
||||
el: $('#format-manager-btn-new')
|
||||
});
|
||||
this.btnNew.on('click', _.bind(this.onEditRule, this, false));
|
||||
|
||||
this.btnEdit = new Common.UI.Button({
|
||||
el: $('#format-manager-btn-edit')
|
||||
});
|
||||
this.btnEdit.on('click', _.bind(this.onEditRule, this, true));
|
||||
|
||||
this.btnDelete = new Common.UI.Button({
|
||||
el: $('#format-manager-btn-delete')
|
||||
});
|
||||
this.btnDelete.on('click', _.bind(this.onDeleteRule, this));
|
||||
|
||||
this.btnUp = new Common.UI.Button({
|
||||
cls: 'btn-toolbar',
|
||||
iconCls: 'caret-up',
|
||||
hint: this.textUp
|
||||
});
|
||||
this.btnUp.render($('#format-manager-btn-up')) ;
|
||||
this.btnUp.on('click', _.bind(this.onMoveClick, this, true));
|
||||
|
||||
this.btnDown = new Common.UI.Button({
|
||||
cls: 'btn-toolbar',
|
||||
iconCls: 'caret-down',
|
||||
hint: this.textDown
|
||||
});
|
||||
this.btnDown.render($('#format-manager-btn-down')) ;
|
||||
this.btnDown.on('click', _.bind(this.onMoveClick, this, false));
|
||||
|
||||
this.afterRender();
|
||||
},
|
||||
|
||||
afterRender: function() {
|
||||
this._setDefaults(this.props);
|
||||
},
|
||||
|
||||
_setDefaults: function (props) {
|
||||
if (props) {
|
||||
this.rulesList.on('item:add', _.bind(this.addControls, this));
|
||||
this.rulesList.on('item:change', _.bind(this.addControls, this));
|
||||
this.refreshRuleList(this.cmbScope.getValue());
|
||||
}
|
||||
},
|
||||
|
||||
refreshRuleList: function(scope) {
|
||||
// var levels = this.api.asc_getRules(scope);
|
||||
var levels = [{name: 'some name', range: '=A1', props: {}}, {name: 'equals', range: '=A1', props: {}}];
|
||||
var arr = [];
|
||||
if (levels) {
|
||||
for (var i=0; i<levels.length; i++) {
|
||||
var level = levels[i];
|
||||
// arr.push({
|
||||
// levelIndex: i,
|
||||
// name: level.asc_getType(),
|
||||
// range: level.asc_getRange(),
|
||||
// props: level.asc_getProps()
|
||||
// });
|
||||
arr.push({
|
||||
levelIndex: i,
|
||||
name: level.name,
|
||||
range: level.range,
|
||||
props: level.props
|
||||
});
|
||||
}
|
||||
}
|
||||
this.rulesList.store.reset(arr);
|
||||
(this.rulesList.store.length>0) && this.rulesList.selectByIndex(0);
|
||||
|
||||
this.updateButtons();
|
||||
},
|
||||
|
||||
addControls: function(listView, itemView, item) {
|
||||
if (!item) return;
|
||||
|
||||
var me = this,
|
||||
i = item.get('levelIndex'),
|
||||
cmpEl = this.rulesList.cmpEl.find('#format-manager-item-' + i);
|
||||
if (!this.levels[i])
|
||||
this.levels[i] = {};
|
||||
var level = this.levels[i];
|
||||
var input = new Common.UI.InputFieldBtn({
|
||||
el : cmpEl.find('#format-manager-txt-rule-' + i),
|
||||
name : 'range',
|
||||
style : 'width: 100%;',
|
||||
btnHint : this.textSelectData,
|
||||
allowBlank : true,
|
||||
validateOnChange: true
|
||||
}).on('button:click', _.bind(this.onSelectData, this, level));
|
||||
|
||||
var val = item.get('range');
|
||||
(val!==null) && input.setValue(val);
|
||||
level.txtDataRange = input;
|
||||
level.dataRangeValid = val;
|
||||
|
||||
cmpEl.on('mousedown', 'input', function(){
|
||||
me.rulesList.selectRecord(item);
|
||||
});
|
||||
},
|
||||
|
||||
onSelectData: function(item, cmp) {
|
||||
var me = this;
|
||||
if (me.api) {
|
||||
var handlerDlg = function(dlg, result) {
|
||||
if (result == 'ok') {
|
||||
item.dataRangeValid = dlg.getSettings();
|
||||
item.txtDataRange.setValue(item.dataRangeValid);
|
||||
item.txtDataRange.checkValidate();
|
||||
}
|
||||
};
|
||||
|
||||
var win = new SSE.Views.CellRangeDialog({
|
||||
handler: handlerDlg
|
||||
}).on('close', function() {
|
||||
me.show();
|
||||
});
|
||||
|
||||
var xy = me.$window.offset();
|
||||
me.hide();
|
||||
win.show(xy.left + 160, xy.top + 125);
|
||||
win.setSettings({
|
||||
api : me.api,
|
||||
range : (!_.isEmpty(item.txtDataRange.getValue()) && (item.txtDataRange.checkValidate()==true)) ? item.txtDataRange.getValue() : item.dataRangeValid,
|
||||
type : Asc.c_oAscSelectionDialogType.Chart
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
onEditRule: function (isEdit) {
|
||||
return;
|
||||
|
||||
var me = this,
|
||||
xy = me.$window.offset(),
|
||||
rec = this.rangeList.getSelectedRec(),
|
||||
idx = _.indexOf(this.rangeList.store.models, rec),
|
||||
oldname = (isEdit && rec) ? new Asc.asc_CDefName(rec.get('name'), rec.get('range'), rec.get('scope'), rec.get('isTable'), undefined, undefined, undefined, true) : null;
|
||||
|
||||
var win = new SSE.Views.NamedRangeEditDlg({
|
||||
api: me.api,
|
||||
sheets : this.sheets,
|
||||
props : (isEdit) ? oldname : this.props,
|
||||
isEdit : isEdit,
|
||||
handler : function(result, settings) {
|
||||
if (result == 'ok' && settings) {
|
||||
if (isEdit) {
|
||||
me.currentNamedRange = settings;
|
||||
me.api.asc_editDefinedNames(oldname, settings);
|
||||
} else {
|
||||
me.cmbFilter.setValue(0);
|
||||
me.currentNamedRange = settings;
|
||||
me.api.asc_setDefinedNames(settings);
|
||||
me.updateButtons();
|
||||
}
|
||||
}
|
||||
}
|
||||
}).on('close', function() {
|
||||
me.show();
|
||||
_.delay(function () {
|
||||
me.rangeList.cmpEl.find('.listview').focus();
|
||||
}, 100, me);
|
||||
});
|
||||
|
||||
me.hide();
|
||||
win.show(xy.left + 65, xy.top + 77);
|
||||
},
|
||||
|
||||
onDeleteRule: function () {
|
||||
var store = this.rulesList.store,
|
||||
rec = this.rulesList.getSelectedRec();
|
||||
if (rec) {
|
||||
var index = rec.get('levelIndex');
|
||||
this.levels[index] = undefined;
|
||||
index = store.indexOf(rec);
|
||||
store.remove(rec);
|
||||
(store.length>0) && this.rulesList.selectByIndex(index<store.length ? index : store.length-1);
|
||||
this.rulesList.scrollToRecord(this.rulesList.getSelectedRec());
|
||||
}
|
||||
this.updateButtons();
|
||||
},
|
||||
|
||||
onMoveClick: function(up) {
|
||||
var store = this.rulesList.store,
|
||||
length = store.length,
|
||||
rec = this.rulesList.getSelectedRec();
|
||||
if (rec) {
|
||||
var index = store.indexOf(rec);
|
||||
store.add(store.remove(rec), {at: up ? Math.max(0, index-1) : Math.min(length-1, index+1)});
|
||||
this.rulesList.selectRecord(rec);
|
||||
this.rulesList.scrollToRecord(rec);
|
||||
}
|
||||
this.updateMoveButtons();
|
||||
},
|
||||
|
||||
onSelectRule: function(lisvView, itemView, record) {
|
||||
this.updateMoveButtons();
|
||||
},
|
||||
|
||||
updateButtons: function() {
|
||||
this.btnNew.setDisabled(this.rulesList.store.length>63);
|
||||
this.btnDelete.setDisabled(this.rulesList.store.length<1);
|
||||
this.btnEdit.setDisabled(this.rulesList.store.length<1);
|
||||
this.updateMoveButtons();
|
||||
this.rulesList.scroller && this.rulesList.scroller.update();
|
||||
},
|
||||
|
||||
updateMoveButtons: function() {
|
||||
var rec = this.rulesList.getSelectedRec(),
|
||||
index = rec ? this.rulesList.store.indexOf(rec) : -1;
|
||||
this.btnUp.setDisabled(index<1);
|
||||
this.btnDown.setDisabled(index<0 || index==this.rulesList.store.length-1);
|
||||
},
|
||||
|
||||
getSettings: function() {
|
||||
return this.sort;
|
||||
},
|
||||
|
||||
onKeyDown: function (lisvView, record, e) {
|
||||
if (e.keyCode==Common.UI.Keys.DELETE && !this.btnDelete.isDisabled())
|
||||
this.onDeleteRule();
|
||||
},
|
||||
|
||||
txtTitle: 'Conditional Formatting',
|
||||
textNew: 'New',
|
||||
textEdit: 'Edit',
|
||||
textDelete: 'Delete',
|
||||
textUp: 'Move rule up',
|
||||
textDown: 'Move rule down',
|
||||
textSelection: 'Current selection',
|
||||
textThisSheet: 'This worksheet',
|
||||
textThisTable: 'This table',
|
||||
textScope: 'Show formatting rules for',
|
||||
textRules: 'Rules',
|
||||
textApply: 'Apply to',
|
||||
textFormat: 'Format',
|
||||
textSelectData: 'Select data'
|
||||
|
||||
}, SSE.Views.FormatRulesManagerDlg || {}));
|
||||
});
|
Loading…
Reference in a new issue