web-apps/apps/documenteditor/main/app/view/CaptionDialog.js

480 lines
24 KiB
JavaScript
Raw Normal View History

2019-09-11 14:26:20 +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
*
*/
/**
* CaptionDialog.js
*
* Created by Julia Radzhabova on 10.09.2019
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
*
*/
define([
'common/main/lib/util/utils',
'common/main/lib/component/MetricSpinner',
'common/main/lib/component/ComboBox',
2019-10-04 08:14:09 +00:00
'common/main/lib/view/AdvancedSettingsWindow',
'documenteditor/main/app/view/AddNewCaptionLabelDialog'
2019-09-11 14:26:20 +00:00
], function () { 'use strict';
DE.Views.CaptionDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
contentWidth: 351,
2020-10-13 11:30:52 +00:00
height: 350
2019-09-11 14:26:20 +00:00
},
initialize : function(options) {
var me = this;
_.extend(this.options, {
title: this.textTitle,
template: [
'<div class="box" style="height:' + (me.options.height - 85) + 'px;">',
'<div class="content-panel" style="padding: 0 5px;"><div class="inner-content">',
'<div class="settings-panel active">',
'<table cols="4" style="width: auto;">',
'<tr>',
'<td colspan="3" class="padding-small">',
'<label class="input-label">', me.textCaption,'</label>',
'<div id="caption-txt-caption" style="margin-right: 10px;"></div>',
'</td>',
'<td class="padding-small">',
'<label class="input-label">', me.textInsert,'</label>',
'<div id="caption-combo-position" class="input-group-nr" style="width:75px;"></div>',
'</td>',
'</tr>',
'<tr>',
'<td colspan="2" class="padding-small">',
'<label class="input-label">', me.textLabel,'</label>',
'<div id="caption-combo-label" class="input-group-nr" style="width:160px;margin-right: 10px;"></div>',
'</td>',
'<td class="padding-small" style="vertical-align: bottom;">',
'<button type="button" result="add" class="btn btn-text-default" id="caption-btn-add" style="margin-right: 10px;">', me.textAdd,'</button>',
'</td>',
'<td class="padding-small" style="vertical-align: bottom;">',
'<button type="button" result="add" class="btn btn-text-default" id="caption-btn-delete">', me.textDelete,'</button>',
'</td>',
'</tr>',
2019-09-12 09:20:50 +00:00
'<tr>',
'<td colspan="4" class="padding-small">',
'<div id="caption-checkbox-exclude"></div>',
'</td>',
'</tr>',
2019-09-11 14:26:20 +00:00
'<tr>',
'<td colspan="2" class="padding-large">',
'<label class="input-label" >', me.textNumbering,'</label>',
'<div id="caption-combo-numbering" class="input-group-nr" style="width:160px;"></div>',
'</td>',
'<td class="padding-large">',
'</td>',
'<td class="padding-large">',
'</td>',
'</tr>',
'<tr>',
'<td colspan="4" class="padding-small">',
'<div id="caption-checkbox-chapter"></div>',
'</td>',
'</tr>',
'<tr>',
'<td colspan="2" class="padding-small">',
'<label class="input-label">', me.textChapter,'</label>',
'<div id="caption-combo-chapter" class="input-group-nr" style="width:160px;margin-right: 10px;"></div>',
'</td>',
'<td colspan="2" class="padding-small">',
'<label class="input-label" >', me.textSeparator,'</label>',
'<div id="caption-combo-separator" class="input-group-nr" style="width:160px;"></div>',
'</td>',
'</tr>',
'<tr>',
'<td colspan="4" class="padding-small">',
'<label class="input-label" id="caption-label-example">', me.textExamples,'</label>',
'</td>',
'</tr>',
'</table>',
'</div>',
'</div></div>',
'</div>'
].join('')
}, options);
2019-09-12 09:20:50 +00:00
this.isObject = options.isObject;
2019-09-11 14:26:20 +00:00
this.handler = options.handler;
this.props = options.props;
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
},
render: function() {
Common.Views.AdvancedSettingsWindow.prototype.render.call(this);
var me = this;
this.txtCaption = new Common.UI.InputField({
el : $('#caption-txt-caption'),
allowBlank : false,
value : ''
});
var $captionInput = this.txtCaption.$el.find('input');
$captionInput.on('mouseup', _.bind(this.checkStartPosition, this, 'mouse'));
$captionInput.on('keydown', _.bind(this.checkStartPosition, this, 'key'));
2019-09-11 14:26:20 +00:00
this.cmbPosition = new Common.UI.ComboBox({
el: $('#caption-combo-position'),
cls: 'input-group-nr',
menuStyle: 'min-width: 75px;',
editable: false,
2019-09-12 09:20:50 +00:00
disabled: !this.isObject,
2020-10-02 09:43:59 +00:00
takeFocusOnClose: true,
2019-09-11 14:26:20 +00:00
data: [
2019-09-12 08:29:49 +00:00
{ displayValue: this.textBefore, value: 1 },
{ displayValue: this.textAfter, value: 0 }
2019-09-11 14:26:20 +00:00
]
});
2020-01-16 11:45:49 +00:00
this.cmbPosition.setValue(Common.Utils.InternalSettings.get("de-settings-label-position") || 0);
2019-09-12 08:29:49 +00:00
this.cmbPosition.on('selected', function(combo, record) {
me.props.put_Before(!!record.value);
});
var arr = Common.Utils.InternalSettings.get("de-settings-captions");
if (arr==null || arr==undefined) {
arr = Common.localStorage.getItem("de-settings-captions") || '';
Common.Utils.InternalSettings.set("de-settings-captions", arr);
}
arr = arr ? JSON.parse(arr) : [];
2019-09-12 08:29:49 +00:00
2019-09-12 09:20:50 +00:00
// 0 - not removable
this.arrLabel = arr.concat([{ displayValue: this.textEquation, value: this.textEquation, type: 0 },
{ displayValue: this.textFigure, value: this.textFigure, type: 0 },
{ displayValue: this.textTable, value: this.textTable, type: 0 }
]);
2019-09-11 14:26:20 +00:00
this.cmbLabel = new Common.UI.ComboBox({
el: $('#caption-combo-label'),
cls: 'input-group-nr',
menuStyle: 'min-width: 160px;max-height:155px;',
2019-10-04 08:14:09 +00:00
editable: false,
2020-10-02 09:43:59 +00:00
takeFocusOnClose: true,
data: this.arrLabel,
alwaysVisibleY: true
});
2019-09-12 08:29:49 +00:00
this.cmbLabel.on('selected', function(combo, record) {
var value = record.value;
me.props.put_Label(value);
2019-09-12 08:29:49 +00:00
me.props.updateName();
me.txtCaption.setValue(me.props.get_Name());
2019-10-04 08:14:09 +00:00
var custom = (record.type==1);
2019-09-12 08:29:49 +00:00
me.btnDelete.setDisabled(!custom);
me.currentLabel = value;
me.positionCaption = me.txtCaption.getValue().length;
2019-09-12 08:29:49 +00:00
});
2019-09-20 10:16:19 +00:00
var curLabel = Common.Utils.InternalSettings.get("de-settings-current-label"),
recLabel,
findIndLabel;
if (curLabel) {
findIndLabel = _.findIndex(this.arrLabel, function (item) {
return item.value === curLabel;
});
}
if (curLabel && findIndLabel !== -1) {
recLabel = this.cmbLabel.store.at(findIndLabel);
} else {
recLabel = this.cmbLabel.store.at(this.arrLabel.length-1);
}
this.cmbLabel.selectRecord(recLabel);
2019-09-11 14:26:20 +00:00
this.btnAdd = new Common.UI.Button({
2019-10-04 08:14:09 +00:00
el: $('#caption-btn-add')
2019-09-11 14:26:20 +00:00
});
this.btnAdd.on('click', _.bind(function (e) {
2019-10-04 08:14:09 +00:00
var me = this;
2019-10-04 08:41:02 +00:00
(new DE.Views.AddNewCaptionLabelDialog({
2019-10-04 08:14:09 +00:00
handler: function(result, value) {
if (result == 'ok') {
var rec = _.findWhere(me.arrLabel, {value: value});
if (rec) {
me.cmbLabel.setValue(value);
me.cmbLabel.trigger('selected', me.cmbLabel, rec);
} else {
var rec = {displayValue: value, value: value, type: 1};
me.arrLabel.unshift(rec);
me.cmbLabel.setData(me.arrLabel);
me.cmbLabel.setValue(value);
me.cmbLabel.trigger('selected', me.cmbLabel, rec);
me.cmbLabel.scroller.update({alwaysVisibleY: true});
}
}
}
})).show();
}, this));
2019-09-11 14:26:20 +00:00
this.btnDelete = new Common.UI.Button({
el: $('#caption-btn-delete'),
disabled: true
});
this.btnDelete.on('click', _.bind(function (e) {
var value = this.cmbLabel.getValue();
this.arrLabel = _.reject(this.arrLabel, function (item) {
return item.value === value;
});
this.cmbLabel.setData(this.arrLabel);
this.cmbLabel.setValue(this.arrLabel[0].value);
this.cmbLabel.trigger('selected', this.cmbLabel, this.arrLabel[0]);
}, this));
2019-09-11 14:26:20 +00:00
2019-09-12 09:20:50 +00:00
this.chExclude = new Common.UI.CheckBox({
el: $('#caption-checkbox-exclude'),
labelText: this.textExclude
});
this.chExclude.on('change', function(field, newValue, oldValue) {
me.props.put_ExcludeLabel(newValue=='checked');
me.props.updateName();
me.txtCaption.setValue(me.props.get_Name());
2019-10-15 13:19:07 +00:00
me.positionCaption = me.txtCaption.getValue().length;
2019-09-12 09:20:50 +00:00
});
2020-01-16 11:45:49 +00:00
this.chExclude.setValue(!!Common.Utils.InternalSettings.get("de-settings-label-exclude"), true);
2019-09-12 09:20:50 +00:00
2019-09-11 14:26:20 +00:00
this.cmbNumbering = new Common.UI.ComboBox({
el: $('#caption-combo-numbering'),
cls: 'input-group-nr',
2019-09-12 08:29:49 +00:00
menuStyle: 'min-width: 160px;',
2019-09-11 14:26:20 +00:00
editable: false,
2020-10-02 09:43:59 +00:00
takeFocusOnClose: true,
2019-09-11 14:26:20 +00:00
data: [
{ displayValue: '1, 2, 3,...', value: Asc.c_oAscNumberingFormat.Decimal, maskExp: /[0-9]/, defValue: 1 },
{ displayValue: 'a, b, c,...', value: Asc.c_oAscNumberingFormat.LowerLetter, maskExp: /[a-z]/, defValue: 'a' },
{ displayValue: 'A, B, C,...', value: Asc.c_oAscNumberingFormat.UpperLetter, maskExp: /[A-Z]/, defValue: 'A' },
{ displayValue: 'i, ii, iii,...', value: Asc.c_oAscNumberingFormat.LowerRoman, maskExp: /[ivxlcdm]/, defValue: 'i' },
{ displayValue: 'I, II, III,...', value: Asc.c_oAscNumberingFormat.UpperRoman, maskExp: /[IVXLCDM]/, defValue: 'I' }
]
});
2020-01-16 11:45:49 +00:00
var numbering = Common.Utils.InternalSettings.get("de-settings-label-numbering");
(numbering===undefined || numbering===null) && (numbering = Asc.c_oAscNumberingFormat.Decimal);
this.cmbNumbering.setValue(numbering);
2019-09-12 08:29:49 +00:00
this.cmbNumbering.on('selected', function(combo, record) {
me.props.put_Format(record.value);
me.props.updateName();
me.txtCaption.setValue(me.props.get_Name());
});
2019-09-11 14:26:20 +00:00
this.chChapter = new Common.UI.CheckBox({
el: $('#caption-checkbox-chapter'),
labelText: this.textChapterInc
});
this.chChapter.on('change', function(field, newValue, oldValue) {
2019-09-12 08:29:49 +00:00
me.props.put_IncludeChapterNumber(newValue=='checked');
me.props.updateName();
me.txtCaption.setValue(me.props.get_Name());
2019-10-15 13:19:07 +00:00
me.positionCaption = me.txtCaption.getValue().length;
2019-09-11 14:26:20 +00:00
me.cmbChapter.setDisabled(newValue!=='checked');
me.cmbSeparator.setDisabled(newValue!=='checked');
});
2020-01-16 11:45:49 +00:00
this.chChapter.setValue(!!Common.Utils.InternalSettings.get("de-settings-label-chapter-include"), true);
2019-09-11 14:26:20 +00:00
2019-09-12 08:29:49 +00:00
var _main = DE.getController('Main');
this._arrLevel = [];
for (var i=0; i<9; i++) {
this._arrLevel.push({displayValue: _main['txtStyle_Heading_' + (i+1)], value: i});
}
2019-09-11 14:26:20 +00:00
this.cmbChapter = new Common.UI.ComboBox({
el: $('#caption-combo-chapter'),
cls: 'input-group-nr',
2019-09-12 08:29:49 +00:00
menuStyle: 'min-width: 160px;max-height:135px;',
2019-09-11 14:26:20 +00:00
editable: false,
2020-10-02 09:43:59 +00:00
takeFocusOnClose: true,
2019-09-11 14:26:20 +00:00
disabled: true,
2019-09-12 08:29:49 +00:00
data: this._arrLevel
});
2020-01-16 11:45:49 +00:00
this.cmbChapter.setValue(Common.Utils.InternalSettings.get("de-settings-label-chapter") || 0);
2019-09-12 08:29:49 +00:00
this.cmbChapter.on('selected', function(combo, record) {
me.props.put_HeadingLvl(record.value);
me.props.updateName();
me.txtCaption.setValue(me.props.get_Name());
2019-09-11 14:26:20 +00:00
});
this.cmbSeparator = new Common.UI.ComboBox({
el: $('#caption-combo-separator'),
cls: 'input-group-nr',
2019-09-12 08:29:49 +00:00
menuStyle: 'min-width: 160px;',
2019-09-11 14:26:20 +00:00
editable: false,
2020-10-02 09:43:59 +00:00
takeFocusOnClose: true,
2019-09-11 14:26:20 +00:00
disabled: true,
data: [
2019-09-12 08:29:49 +00:00
{ displayValue: '- (' + this.textHyphen + ')', value: '-' },
{ displayValue: '. (' + this.textPeriod + ')', value: '.' },
{ displayValue: ': (' + this.textColon + ')', value: ':' },
{ displayValue: '— (' + this.textLongDash + ')', value: '—' },
{ displayValue: ' (' + this.textDash + ')', value: '' }
2019-09-11 14:26:20 +00:00
]
});
2020-01-16 11:45:49 +00:00
this.cmbSeparator.setValue(Common.Utils.InternalSettings.get("de-settings-label-separator") || '-');
2019-09-12 08:29:49 +00:00
this.cmbSeparator.on('selected', function(combo, record) {
me.props.put_Separator(record.value);
me.props.updateName();
me.txtCaption.setValue(me.props.get_Name());
});
2019-09-11 14:26:20 +00:00
this.lblExample = this.$window.find('#caption-label-example');
this.afterRender();
},
2020-10-13 11:30:52 +00:00
getFocusedComponents: function() {
return [this.txtCaption, this.cmbPosition, this.cmbLabel, this.cmbNumbering, this.cmbChapter, this.cmbSeparator];
},
2020-10-22 10:53:58 +00:00
getDefaultFocusableComponent: function () {
return this.txtCaption;
2019-09-11 14:26:20 +00:00
},
2020-10-22 10:53:58 +00:00
afterRender: function() {
this._setDefaults(this.props);
2019-09-11 14:26:20 +00:00
},
2019-09-12 08:29:49 +00:00
close: function() {
var val = _.where(this.arrLabel, {type: 1}),
valJson = JSON.stringify(val);
Common.localStorage.setItem("de-settings-captions", valJson);
Common.Utils.InternalSettings.set("de-settings-captions", valJson);
2019-09-12 08:29:49 +00:00
Common.Views.AdvancedSettingsWindow.prototype.close.apply(this, arguments);
},
2019-09-11 14:26:20 +00:00
_setDefaults: function (props) {
2019-09-12 08:29:49 +00:00
this.props = new Asc.CAscCaptionProperties();
this.props.put_Before(!!this.cmbPosition.getValue());
var valueLabel = this.cmbLabel.getValue();
this.props.put_Label(valueLabel);
2019-09-12 09:20:50 +00:00
var value = this.cmbLabel.getSelectedRecord();
this.btnDelete.setDisabled(!value || value.type==0);
this.props.put_ExcludeLabel(this.chExclude.getValue()=='checked');
2019-09-12 08:29:49 +00:00
this.props.put_Format(this.cmbNumbering.getValue());
this.props.put_IncludeChapterNumber(this.chChapter.getValue()=='checked');
this.props.put_HeadingLvl(this.cmbChapter.getValue());
this.props.put_Separator(this.cmbSeparator.getValue());
this.props.updateName();
this.txtCaption.setValue(this.props.get_Name());
this.currentLabel = valueLabel;
this.positionCaption = this.txtCaption.getValue().length;
2020-01-16 11:45:49 +00:00
this.cmbChapter.setDisabled(this.chChapter.getValue()!=='checked');
this.cmbSeparator.setDisabled(this.chChapter.getValue()!=='checked');
2019-09-11 14:26:20 +00:00
},
getSettings: function () {
2019-09-20 10:16:19 +00:00
this.props.put_Additional(this.txtCaption.getValue().substr(this.positionCaption));
2019-09-12 08:29:49 +00:00
return this.props ;
2019-09-11 14:26:20 +00:00
},
onDlgBtnClick: function(event) {
this._handleInput((typeof(event) == 'object') ? event.currentTarget.attributes['result'].value : event);
},
onPrimary: function() {
2019-09-21 08:51:15 +00:00
this._handleInput('ok');
2019-09-11 14:26:20 +00:00
return false;
},
_handleInput: function(state) {
this.handler && this.handler.call(this, state, (state == 'ok') ? this.getSettings() : undefined);
2019-09-20 10:16:19 +00:00
if (state == 'ok') {
Common.Utils.InternalSettings.set("de-settings-current-label", this.cmbLabel.getValue());
2020-01-16 11:45:49 +00:00
Common.Utils.InternalSettings.set("de-settings-label-position", this.cmbPosition.getValue());
Common.Utils.InternalSettings.set("de-settings-label-exclude", this.chExclude.getValue()=='checked');
Common.Utils.InternalSettings.set("de-settings-label-numbering", this.cmbNumbering.getValue());
Common.Utils.InternalSettings.set("de-settings-label-chapter-include", this.chChapter.getValue()=='checked');
Common.Utils.InternalSettings.set("de-settings-label-chapter", this.cmbChapter.getValue());
Common.Utils.InternalSettings.set("de-settings-label-separator", this.cmbSeparator.getValue());
2019-09-20 10:16:19 +00:00
}
2019-09-11 14:26:20 +00:00
this.close();
},
checkStartPosition: function (type, event) {
var me = this,
2019-09-20 11:10:28 +00:00
key = event.key;
if (type === 'mouse' || key === 'ArrowLeft' || key === 'ArrowDown') {
setTimeout(function () {
2019-09-20 11:10:28 +00:00
if (event.target.selectionStart < me.positionCaption + 1) {
event.target.selectionStart = me.positionCaption;
}
2019-09-20 10:16:19 +00:00
}, 0);
} else if (key === 'ArrowUp' || key === 'Home') {
setTimeout(function () {
event.target.selectionStart = me.positionCaption;
2019-09-20 10:16:19 +00:00
}, 0);
2019-09-21 08:51:15 +00:00
} else if (event.target.selectionStart !== event.target.selectionEnd && key === 'ArrowRight') {
if (event.target.selectionEnd > me.positionCaption) {
setTimeout(function () {
event.target.selectionStart = event.target.selectionEnd;
}, 0);
} else {
setTimeout(function () {
event.target.selectionStart = me.positionCaption;
}, 0);
}
} else if (key === 'Backspace') {
2019-09-20 11:10:28 +00:00
if ((event.target.selectionStart === event.target.selectionEnd && event.target.selectionStart < me.positionCaption + 1) || event.target.selectionStart < me.positionCaption - 1) {
event.preventDefault();
}
} else if (key === 'Delete') {
2019-09-20 11:10:28 +00:00
if (event.target.selectionStart < me.positionCaption - 1) {
event.preventDefault();
}
2019-09-21 08:51:15 +00:00
} else if (key !== 'End') {
2019-09-20 11:10:28 +00:00
if (event.target.selectionStart !== event.target.selectionEnd && event.target.selectionStart === 0) {
2019-09-20 10:16:19 +00:00
event.preventDefault();
}
}
},
2019-09-11 14:26:20 +00:00
textTitle: 'Insert Caption',
textCaption: 'Caption',
textInsert: 'Insert',
textLabel: 'Label',
textAdd: 'Add label',
textDelete: 'Delete label',
textNumbering: 'Numbering',
textChapterInc: 'Include chapter number',
textChapter: 'Chapter starts with style',
textSeparator: 'Use separator',
textExamples: 'Examples: Table 2-A, Image 1.IV',
textBefore: 'Before',
textAfter: 'After',
textHyphen: 'hyphen',
textPeriod: 'period',
textColon: 'colon',
2019-09-12 08:29:49 +00:00
textLongDash: 'long dash',
textDash: 'dash',
textEquation: 'Equation',
textFigure: 'Figure',
2019-09-12 09:20:50 +00:00
textTable: 'Table',
2019-10-04 08:14:09 +00:00
textExclude: 'Exclude label from caption'
2019-09-11 14:26:20 +00:00
}, DE.Views.CaptionDialog || {}))
});