687 lines
30 KiB
JavaScript
687 lines
30 KiB
JavaScript
/*
|
|
*
|
|
* (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',
|
|
'spreadsheeteditor/main/app/view/FormatRulesEditDlg'
|
|
], 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:name', function() {
|
|
me.render();
|
|
me.trigger('change', me, me.model);
|
|
});
|
|
me.listenTo(me.model, 'change:tip', function() {
|
|
var el = me.$el || $(me.el),
|
|
tip = el.data('bs.tooltip');
|
|
if (tip) {
|
|
var zIndex = tip.options.zIndex;
|
|
el.removeData('bs.tooltip');
|
|
el.tooltip({
|
|
title : me.model.get('tip'),
|
|
placement : 'cursor',
|
|
zIndex : zIndex
|
|
});
|
|
}
|
|
});
|
|
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.langId = options.langId;
|
|
this.rules = [];
|
|
this.rulesStores = {};
|
|
this.rulesDeleted = [];
|
|
this.listSettings = {length: 0, min: 0, max: 0};
|
|
|
|
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%;max-height: 211px;',
|
|
editable : false,
|
|
cls : 'input-group-nr',
|
|
data : []
|
|
}).on('selected', function(combo, record) {
|
|
me.refreshRuleList(record);
|
|
});
|
|
|
|
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-<%= ruleIndex %>">',
|
|
'<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-<%= ruleIndex %>" style=""></div></div>',
|
|
'<div style="width:112px;display: inline-block;vertical-align: middle;"><div id="format-manager-item-preview-<%= ruleIndex %>" style="height:22px;"></div></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({
|
|
parentEl: $('#format-manager-btn-up'),
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'caret-up',
|
|
hint: this.textUp
|
|
});
|
|
this.btnUp.on('click', _.bind(this.onMoveClick, this, true));
|
|
|
|
this.btnDown = new Common.UI.Button({
|
|
parentEl: $('#format-manager-btn-down'),
|
|
cls: 'btn-toolbar',
|
|
iconCls: 'caret-down',
|
|
hint: this.textDown
|
|
});
|
|
this.btnDown.on('click', _.bind(this.onMoveClick, this, false));
|
|
|
|
this.afterRender();
|
|
},
|
|
|
|
afterRender: function() {
|
|
this._setDefaults(this.props);
|
|
},
|
|
|
|
_setDefaults: function (props) {
|
|
this.rulesList.on('item:add', _.bind(this.addControls, this));
|
|
this.rulesList.on('item:change', _.bind(this.addControls, this));
|
|
this.currentSheet = this.api.asc_getActiveWorksheetIndex();
|
|
this.refreshScopeList();
|
|
this.refreshRuleList(this.cmbScope.getSelectedRecord());
|
|
},
|
|
|
|
refreshScopeList: function() {
|
|
var wc = this.api.asc_getWorksheetsCount(), i = -1;
|
|
var items = [
|
|
{ value: Asc.c_oAscSelectionForCFType.selection, displayValue: this.textSelection, sheetIndex: -1 },
|
|
{ value: Asc.c_oAscSelectionForCFType.worksheet, displayValue: this.textThisSheet, sheetIndex: -1 },
|
|
{ value: Asc.c_oAscSelectionForCFType.table, displayValue: this.textThisTable, sheetIndex: -1 },
|
|
{ value: Asc.c_oAscSelectionForCFType.pivot, displayValue: this.textThisPivot, sheetIndex: -1 }
|
|
];
|
|
if (wc>1) {
|
|
while (++i < wc) {
|
|
if (!this.api.asc_isWorksheetHidden(i) && i!==this.currentSheet) {
|
|
items.push({
|
|
displayValue:this.api.asc_getWorksheetName(i),
|
|
value: Asc.c_oAscSelectionForCFType.worksheet,
|
|
sheetIndex: i
|
|
});
|
|
}
|
|
}
|
|
}
|
|
this.cmbScope.setData(items);
|
|
this.cmbScope.setValue(Asc.c_oAscSelectionForCFType.selection);
|
|
},
|
|
|
|
refreshRuleList: function(scope) {
|
|
this.rules = [];
|
|
|
|
var sheetIndex = (scope.sheetIndex>-1) ? scope.sheetIndex : this.currentSheet;
|
|
var ruleStore = this.rulesStores[sheetIndex];
|
|
if (!ruleStore) {
|
|
ruleStore = new Common.UI.DataViewStore();
|
|
this.rulesStores[sheetIndex] = ruleStore;
|
|
|
|
var obj = this.api.asc_getCF(Asc.c_oAscSelectionForCFType.worksheet, sheetIndex);
|
|
var rules = obj[0];
|
|
this.currentRange = obj[1];
|
|
var arr = [];
|
|
if (rules) {
|
|
for (var i=0; i<rules.length; i++) {
|
|
var rule = rules[i],
|
|
name = this.getRuleName(rule),
|
|
location = rule.asc_getLocation();
|
|
arr.push({
|
|
ruleIndex: i, // connect store and list with controls. is not changed
|
|
ruleId: rule.asc_getId(),
|
|
name: name,
|
|
tip: name,
|
|
range: location[1],
|
|
activeSheet: location[0],
|
|
priority: rule.asc_getPriority(), // priority of the rule, is changed when move or when new rule is added
|
|
ruleChanged: false, // true if was edited in FormatRulesEditDlg or was created, need to send this rule to sdk if true
|
|
props: rule
|
|
});
|
|
}
|
|
}
|
|
ruleStore.reset(arr);
|
|
}
|
|
if (sheetIndex == this.currentSheet) {
|
|
ruleStore.each(function(item){
|
|
var hidden = scope.value!==Asc.c_oAscSelectionForCFType.worksheet && !item.get('props').asc_checkScope(scope.value);
|
|
item.set('cls', hidden ? 'hidden' : undefined);
|
|
});
|
|
}
|
|
this.rulesList.setStore(ruleStore);
|
|
this.rulesList.onResetItems();
|
|
this.rulesList.deselectAll();
|
|
this.updateRulesCount();
|
|
(this.listSettings.length>0) && this.rulesList.selectByIndex(this.listSettings.min);
|
|
this.updateButtons();
|
|
},
|
|
|
|
getRuleName: function(rule) {
|
|
var name = '';
|
|
switch (rule.asc_getType()) {
|
|
case Asc.c_oAscCFType.aboveAverage:
|
|
name = this.textAbove;
|
|
var above = rule.asc_getAboveAverage(),
|
|
eq = rule.asc_getEqualAverage(),
|
|
stddev = rule.asc_getStdDev();
|
|
subtype = (above) ? 0 : 1;
|
|
if (eq)
|
|
subtype += 2;
|
|
else if (stddev) {
|
|
subtype += (2 + stddev*2);
|
|
}
|
|
switch (subtype) {
|
|
case 0:
|
|
name = this.textAbove;
|
|
break;
|
|
case 1:
|
|
name = this.textBelow;
|
|
break;
|
|
case 2:
|
|
name = this.textEqAbove;
|
|
break;
|
|
case 3:
|
|
name = this.textEqBelow;
|
|
break;
|
|
case 4:
|
|
name = this.text1Above;
|
|
break;
|
|
case 5:
|
|
name = this.text1Below;
|
|
break;
|
|
case 6:
|
|
name = this.text2Above;
|
|
break;
|
|
case 7:
|
|
name = this.text2Below;
|
|
break;
|
|
case 8:
|
|
name = this.text3Above;
|
|
break;
|
|
case 9:
|
|
name = this.text3Below;
|
|
break;
|
|
}
|
|
break;
|
|
case Asc.c_oAscCFType.beginsWith:
|
|
name = this.textBeginsWith + ' ' + (rule.asc_getContainsText() || '');
|
|
break;
|
|
case Asc.c_oAscCFType.cellIs:
|
|
name = this.textCellValue;
|
|
var subtype = rule.asc_getOperator(),
|
|
op;
|
|
switch (subtype) {
|
|
case Asc.c_oAscCFOperator.greaterThan:
|
|
op = '>';
|
|
name = name + ' ' + op + ' ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFOperator.greaterThanOrEqual:
|
|
op = '>=';
|
|
name = name + ' ' + op + ' ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFOperator.lessThan:
|
|
op = '<';
|
|
name = name + ' ' + op + ' ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFOperator.lessThanOrEqual:
|
|
op = '<=';
|
|
name = name + ' ' + op + ' ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFOperator.equal:
|
|
op = '=';
|
|
name = name + ' ' + op + ' ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFOperator.notEqual:
|
|
op = '<>';
|
|
name = name + ' ' + op + ' ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFOperator.between:
|
|
name = name + ' ' + Common.Utils.String.format(this.textBetween, (rule.asc_getValue1() || ''), (rule.asc_getValue2() || ''));
|
|
break;
|
|
case Asc.c_oAscCFOperator.notBetween:
|
|
name = name + ' ' + Common.Utils.String.format(this.textNotBetween, (rule.asc_getValue1() || ''), (rule.asc_getValue2() || ''));
|
|
break;
|
|
}
|
|
break;
|
|
case Asc.c_oAscCFType.colorScale:
|
|
name = this.textColorScale;
|
|
break;
|
|
case Asc.c_oAscCFType.containsBlanks:
|
|
name = this.textContainsBlank;
|
|
break;
|
|
case Asc.c_oAscCFType.containsErrors:
|
|
name = this.textContainsError;
|
|
break;
|
|
case Asc.c_oAscCFType.containsText:
|
|
name = this.textContains + ' ' + (rule.asc_getContainsText() || '');
|
|
break;
|
|
case Asc.c_oAscCFType.dataBar:
|
|
name = Common.define.conditionalData.textDataBar;
|
|
break;
|
|
case Asc.c_oAscCFType.duplicateValues:
|
|
name = this.textDuplicate;
|
|
break;
|
|
case Asc.c_oAscCFType.expression:
|
|
name = Common.define.conditionalData.textFormula + ': ' + (rule.asc_getValue1() || '');
|
|
break;
|
|
case Asc.c_oAscCFType.iconSet:
|
|
name = this.textIconSet;
|
|
break;
|
|
case Asc.c_oAscCFType.notContainsBlanks:
|
|
name = this.textNotContainsBlank;
|
|
break;
|
|
case Asc.c_oAscCFType.notContainsErrors:
|
|
name = this.textNotContainsError;
|
|
break;
|
|
case Asc.c_oAscCFType.notContainsText:
|
|
name = this.textNotContains + ' ' + (rule.asc_getContainsText() || '');
|
|
break;
|
|
case Asc.c_oAscCFType.timePeriod:
|
|
var subtype = rule.asc_getTimePeriod();
|
|
switch (subtype) {
|
|
case Asc.c_oAscTimePeriod.yesterday:
|
|
name = Common.define.conditionalData.textYesterday;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.today:
|
|
name = Common.define.conditionalData.textToday;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.tomorrow:
|
|
name = Common.define.conditionalData.textTomorrow;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.last7Days:
|
|
name = Common.define.conditionalData.textLast7days;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.lastWeek:
|
|
name = Common.define.conditionalData.textLastWeek;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.thisWeek:
|
|
name = Common.define.conditionalData.textThisWeek;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.nextWeek:
|
|
name = Common.define.conditionalData.textNextWeek;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.lastMonth:
|
|
name = Common.define.conditionalData.textLastMonth;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.thisMonth:
|
|
name = Common.define.conditionalData.textThisMonth;
|
|
break;
|
|
case Asc.c_oAscTimePeriod.nextMonth:
|
|
name = Common.define.conditionalData.textNextMonth;
|
|
break;
|
|
}
|
|
break;
|
|
case Asc.c_oAscCFType.top10:
|
|
name = rule.asc_getBottom() ? Common.define.conditionalData.textBottom : Common.define.conditionalData.textTop;
|
|
name = name + ' ' + (rule.asc_getRank()) + (rule.asc_getPercent() ? '%' : '');
|
|
break;
|
|
case Asc.c_oAscCFType.uniqueValues:
|
|
name = this.textUnique;
|
|
break;
|
|
case Asc.c_oAscCFType.endsWith:
|
|
name = this.textEnds + ' ' + (rule.asc_getContainsText() || '');
|
|
break;
|
|
}
|
|
return name;
|
|
},
|
|
|
|
addControls: function(listView, itemView, item) {
|
|
if (!item) return;
|
|
|
|
var me = this,
|
|
i = item.get('ruleIndex'),
|
|
cmpEl = this.rulesList.cmpEl.find('#format-manager-item-' + i);
|
|
if (!this.rules[i])
|
|
this.rules[i] = {};
|
|
var rule = this.rules[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,
|
|
disabled : !item.get('activeSheet'),
|
|
validateOnChange: true
|
|
}).on('button:click', _.bind(this.onSelectData, this, rule));
|
|
|
|
var val = item.get('range');
|
|
(val!==null) && input.setValue(val);
|
|
rule.txtDataRange = input;
|
|
rule.dataRangeValid = val;
|
|
rule.previewDiv = 'format-manager-item-preview-' + i;
|
|
me.drawRulePreview(item);
|
|
|
|
cmpEl.on('mousedown', 'input', function(){
|
|
me.rulesList.selectRecord(item);
|
|
});
|
|
},
|
|
|
|
drawRulePreview: function(rule) {
|
|
var props = rule.get('props'),
|
|
type = props.asc_getType();
|
|
if (type == Asc.c_oAscCFType.containsText || type == Asc.c_oAscCFType.notContainsText || type == Asc.c_oAscCFType.beginsWith ||
|
|
type == Asc.c_oAscCFType.endsWith || type == Asc.c_oAscCFType.timePeriod || type == Asc.c_oAscCFType.aboveAverage ||
|
|
type == Asc.c_oAscCFType.top10 || type == Asc.c_oAscCFType.cellIs || type == Asc.c_oAscCFType.expression) {
|
|
var dxf = props.asc_getDxf();
|
|
this.api.asc_getPreviewCF(this.rules[rule.get('ruleIndex')].previewDiv, dxf, dxf ? Common.define.conditionalData.exampleText : Common.define.conditionalData.noFormatText);
|
|
}
|
|
},
|
|
|
|
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) {
|
|
var me = this,
|
|
xy = me.$window.offset(),
|
|
rec = this.rulesList.getSelectedRec(),
|
|
previewRec;
|
|
|
|
var win = new SSE.Views.FormatRulesEditDlg({
|
|
api: me.api,
|
|
props : (isEdit && rec) ? rec.get('props') : null,
|
|
isEdit : isEdit,
|
|
langId : me.langId,
|
|
handler : function(result, settings) {
|
|
if (result == 'ok' && settings) {
|
|
var name = me.getRuleName(settings);
|
|
if (isEdit) {
|
|
rec.set('name', name);
|
|
rec.set('tip', name);
|
|
rec.set('ruleChanged', true);
|
|
rec.set('props', settings);
|
|
previewRec = rec;
|
|
} else {
|
|
var store = me.rulesList.store,
|
|
index = rec ? store.indexOf(rec)+1 : store.length;
|
|
settings.asc_setLocation(me.currentRange);
|
|
previewRec = store.add({
|
|
ruleIndex: index,
|
|
name: name,
|
|
tip: name,
|
|
range: me.currentRange,
|
|
activeSheet: true,
|
|
ruleChanged: true,
|
|
props: settings
|
|
}, {at: index});
|
|
me.updateRulesCount();
|
|
me.rulesList.selectRecord(previewRec);
|
|
me.updateButtons();
|
|
// need to update priorities
|
|
}
|
|
}
|
|
}
|
|
}).on('close', function() {
|
|
me.show();
|
|
previewRec && me.drawRulePreview(previewRec);
|
|
});
|
|
|
|
me.hide();
|
|
win.show();
|
|
},
|
|
|
|
onDeleteRule: function () {
|
|
var store = this.rulesList.store,
|
|
rec = this.rulesList.getSelectedRec();
|
|
if (rec) {
|
|
var id = rec.get('ruleId');
|
|
(id!==undefined) && this.rulesDeleted.push(id);
|
|
var index = rec.get('ruleIndex');
|
|
this.rules[index] = undefined;
|
|
index = store.indexOf(rec);
|
|
store.remove(rec);
|
|
this.updateRulesCount();
|
|
(this.listSettings.length>0) && this.rulesList.selectByIndex(index<=this.listSettings.max ? index : this.listSettings.max);
|
|
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)});
|
|
// need to update priorities
|
|
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.listSettings.length<1);
|
|
this.btnEdit.setDisabled(this.listSettings.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<=this.listSettings.min);
|
|
this.btnDown.setDisabled(index<0 || index==this.listSettings.max);
|
|
},
|
|
|
|
updateRulesCount: function() {
|
|
var store = this.rulesList.store;
|
|
if (this.cmbScope.getValue() == Asc.c_oAscSelectionForCFType.worksheet) {
|
|
this.listSettings = {length: store.length, min: 0, max: store.length-1};
|
|
} else {
|
|
this.listSettings = {length: 0, min: -1, max: 0};
|
|
for (var i=0; i<store.length; i++) {
|
|
if (store.at(i).get('cls')!=='hidden') {
|
|
this.listSettings.length++;
|
|
this.listSettings.max = i;
|
|
(this.listSettings.min<0) && (this.listSettings.min=i);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
getSettings: function() {
|
|
var sheets = [];
|
|
for (var sheet in this.rulesStores) {
|
|
if (this.rulesStores.hasOwnProperty(sheet)) {
|
|
var store = this.rulesStores[sheet];
|
|
var arr = [];
|
|
store && store.each(function(item) {
|
|
if (item.get('ruleChanged'))
|
|
arr.push(item.get('props'));
|
|
});
|
|
(arr.length>0) && (sheets[sheet] = arr);
|
|
}
|
|
}
|
|
return {rules: sheets, deleted: this.rulesDeleted};
|
|
},
|
|
|
|
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',
|
|
textThisPivot: 'This pivot',
|
|
textScope: 'Show formatting rules for',
|
|
textRules: 'Rules',
|
|
textApply: 'Apply to',
|
|
textFormat: 'Format',
|
|
textSelectData: 'Select data',
|
|
textAbove: 'Above average',
|
|
textBelow: 'Below average',
|
|
textEqAbove: 'Equal to or above average',
|
|
textEqBelow: 'Equal to or below average',
|
|
text1Above: '1 std dev above average',
|
|
text1Below: '1 std dev below average',
|
|
text2Above: '2 std dev above average',
|
|
text2Below: '2 std dev below average',
|
|
text3Above: '3 std dev above average',
|
|
text3Below: '3 std dev below average',
|
|
textBeginsWith: 'Cell value begins with',
|
|
textCellValue: 'Cell value',
|
|
textBetween: 'is between {0} and {1}',
|
|
textNotBetween: 'is not between {0} and {1}',
|
|
textColorScale: 'Graded color scale',
|
|
textContainsBlank: 'Cell contains a blank value',
|
|
textContainsError: 'Cell contains an error',
|
|
textContains: 'Cell value contains',
|
|
textNotContains: 'Cell value does not contain',
|
|
textNotContainsError: 'Cell does not contain an error',
|
|
textNotContainsBlank: 'Cell does not contain a blank value',
|
|
textEnds: 'Cell value ends with',
|
|
textIconSet: 'Icon set',
|
|
textDuplicate: 'Duplicate values',
|
|
textUnique: 'Unique values'
|
|
|
|
}, SSE.Views.FormatRulesManagerDlg || {}));
|
|
}); |