web-apps/apps/spreadsheeteditor/main/app/controller/RightMenu.js

356 lines
17 KiB
JavaScript
Raw Normal View History

2016-04-01 13:17:09 +00:00
/*
*
2017-01-17 14:58:08 +00:00
* (c) Copyright Ascensio System Limited 2010-2017
2016-04-01 13:17:09 +00:00
*
* 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 Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* 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
*
*/
2016-03-11 00:48:53 +00:00
/**
* RightMenu.js
*
* Created by Julia Radzhabova on 3/27/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'core',
'spreadsheeteditor/main/app/view/RightMenu'
], function () {
'use strict';
SSE.Controllers.RightMenu = Backbone.Controller.extend({
models: [],
collections: [],
views: [
'RightMenu'
],
initialize: function() {
this.editMode = true;
this._state = {};
this.addListeners({
2017-04-27 15:25:02 +00:00
'Toolbar': {
'insertimage': this.onInsertImage.bind(this),
'insertshape': this.onInsertShape.bind(this),
'insertchart': this.onInsertChart.bind(this),
'inserttextart': this.onInsertTextArt.bind(this)
},
2016-03-11 00:48:53 +00:00
'RightMenu': {
'rightmenuclick': this.onRightMenuClick
}
});
},
onLaunch: function() {
this.rightmenu = this.createView('RightMenu');
this.rightmenu.on('render:after', _.bind(this.onRightMenuAfterRender, this));
},
onRightMenuAfterRender: function(rightMenu) {
rightMenu.shapeSettings.application = rightMenu.textartSettings.application = this.getApplication();
this._settings = [];
this._settings[Common.Utils.documentSettingsType.Paragraph] = {panelId: "id-paragraph-settings", panel: rightMenu.paragraphSettings,btn: rightMenu.btnText, hidden: 1, locked: false};
this._settings[Common.Utils.documentSettingsType.Image] = {panelId: "id-image-settings", panel: rightMenu.imageSettings, btn: rightMenu.btnImage, hidden: 1, locked: false};
this._settings[Common.Utils.documentSettingsType.Shape] = {panelId: "id-shape-settings", panel: rightMenu.shapeSettings, btn: rightMenu.btnShape, hidden: 1, locked: false};
this._settings[Common.Utils.documentSettingsType.TextArt] = {panelId: "id-textart-settings", panel: rightMenu.textartSettings, btn: rightMenu.btnTextArt, hidden: 1, locked: false};
this._settings[Common.Utils.documentSettingsType.Chart] = {panelId: "id-chart-settings", panel: rightMenu.chartSettings, btn: rightMenu.btnChart, hidden: 1, locked: false};
this._settings[Common.Utils.documentSettingsType.Table] = {panelId: "id-table-settings", panel: rightMenu.tableSettings, btn: rightMenu.btnTable, hidden: 1, locked: false};
2017-09-13 08:57:30 +00:00
this._settings[Common.Utils.documentSettingsType.Signature] = {panelId: "id-signature-settings", panel: rightMenu.signatureSettings, btn: rightMenu.btnSignature, hidden: (rightMenu.signatureSettings) ? 0 : 1, props: {}, locked: false};
2016-03-11 00:48:53 +00:00
},
setApi: function(api) {
this.api = api;
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
Common.NotificationCenter.on('cells:range', _.bind(this.onCellsRange, this));
2016-03-11 00:48:53 +00:00
},
setMode: function(mode) {
this.editMode = mode.isEdit;
},
onRightMenuClick: function(menu, type, minimized) {
if (!minimized && this.editMode) {
var panel = this._settings[type].panel;
var props = this._settings[type].props;
if (props && panel)
2017-09-13 08:57:30 +00:00
panel.ChangeSettings.call(panel, (type==Common.Utils.documentSettingsType.Signature) ? undefined : props);
2016-03-11 00:48:53 +00:00
}
Common.NotificationCenter.trigger('layout:changed', 'rightmenu');
},
onSelectionChanged: function(info) {
if (this.rangeSelectionMode) return;
2016-03-11 00:48:53 +00:00
var SelectedObjects = [],
selectType = info.asc_getFlags().asc_getSelectionType(),
2016-09-14 13:34:08 +00:00
formatTableInfo = info.asc_getFormatTableInfo(),
sparkLineInfo = info.asc_getSparklineInfo();
2016-03-11 00:48:53 +00:00
if (selectType == Asc.c_oAscSelectionType.RangeImage || selectType == Asc.c_oAscSelectionType.RangeShape ||
selectType == Asc.c_oAscSelectionType.RangeChart || selectType == Asc.c_oAscSelectionType.RangeChartText || selectType == Asc.c_oAscSelectionType.RangeShapeText) {
2016-03-11 00:48:53 +00:00
SelectedObjects = this.api.asc_getGraphicObjectProps();
}
2016-09-14 13:34:08 +00:00
if (SelectedObjects.length<=0 && !formatTableInfo && !sparkLineInfo && !this.rightmenu.minimizedMode) {
2016-03-11 00:48:53 +00:00
this.rightmenu.clearSelection();
2016-04-11 07:29:53 +00:00
this._openRightMenu = true;
2016-03-11 00:48:53 +00:00
}
var need_disable = info.asc_getLocked(),
2016-11-24 12:26:22 +00:00
need_disable_table = (info.asc_getLockedTable()===true),
need_disable_spark = (info.asc_getLockedSparkline()===true);
2016-03-11 00:48:53 +00:00
2016-11-24 12:26:22 +00:00
this.onFocusObject(SelectedObjects, formatTableInfo, sparkLineInfo, need_disable, need_disable_table, need_disable_spark);
2016-03-11 00:48:53 +00:00
},
2016-11-24 12:26:22 +00:00
onFocusObject: function(SelectedObjects, formatTableInfo, sparkLineInfo, isCellLocked, isTableLocked, isSparkLocked) {
2016-03-11 00:48:53 +00:00
if (!this.editMode)
return;
for (var i=0; i<this._settings.length; ++i) {
2017-09-13 08:57:30 +00:00
if (i==Common.Utils.documentSettingsType.Signature) continue;
2016-03-11 00:48:53 +00:00
if (this._settings[i]) {
this._settings[i].hidden = 1;
this._settings[i].locked = false;
}
}
2017-09-13 08:57:30 +00:00
this._settings[Common.Utils.documentSettingsType.Signature].locked = false;
2016-03-11 00:48:53 +00:00
for (i=0; i<SelectedObjects.length; ++i)
{
var eltype = SelectedObjects[i].asc_getObjectType(),
settingsType = this.getDocumentSettingsType(eltype);
if (settingsType===undefined || settingsType>=this._settings.length || this._settings[settingsType]===undefined)
continue;
var value = SelectedObjects[i].asc_getObjectValue();
if (settingsType == Common.Utils.documentSettingsType.Image) {
if (value.asc_getChartProperties() !== null) {
settingsType = Common.Utils.documentSettingsType.Chart;
this._settings[settingsType].btn.updateHint(this.rightmenu.txtChartSettings);
2016-03-11 00:48:53 +00:00
} else if (value.asc_getShapeProperties() !== null) {
settingsType = Common.Utils.documentSettingsType.Shape;
if (value.asc_getShapeProperties().asc_getTextArtProperties()) {
this._settings[Common.Utils.documentSettingsType.TextArt].props = value;
this._settings[Common.Utils.documentSettingsType.TextArt].hidden = 0;
this._settings[Common.Utils.documentSettingsType.TextArt].locked = value.asc_getLocked();
}
}
}
this._settings[settingsType].props = value;
this._settings[settingsType].hidden = 0;
this._settings[settingsType].locked = value.asc_getLocked();
2017-09-13 08:57:30 +00:00
if (!this._settings[Common.Utils.documentSettingsType.Signature].locked) // lock Signature, если хотя бы один объект locked
this._settings[Common.Utils.documentSettingsType.Signature].locked = value.asc_getLocked();
2016-03-11 00:48:53 +00:00
}
if (formatTableInfo) {
settingsType = Common.Utils.documentSettingsType.Table;
this._settings[settingsType].props = formatTableInfo;
this._settings[settingsType].locked = isTableLocked;
this._settings[settingsType].hidden = 0;
}
2016-09-14 13:34:08 +00:00
if (sparkLineInfo) {
settingsType = Common.Utils.documentSettingsType.Chart;
this._settings[settingsType].props = sparkLineInfo;
2016-11-24 12:26:22 +00:00
this._settings[settingsType].locked = isSparkLocked;
2016-09-14 13:34:08 +00:00
this._settings[settingsType].hidden = 0;
this._settings[settingsType].btn.updateHint(this.rightmenu.txtSparklineSettings);
2016-09-14 13:34:08 +00:00
}
var lastactive = -1, currentactive, priorityactive = -1,
activePane = this.rightmenu.GetActivePane();
2016-03-11 00:48:53 +00:00
for (i=0; i<this._settings.length; ++i) {
var pnl = this._settings[i];
2017-09-13 08:57:30 +00:00
if (pnl===undefined || pnl.btn===undefined || pnl.panel===undefined) continue;
2016-03-11 00:48:53 +00:00
if ( pnl.hidden ) {
if ( !pnl.btn.isDisabled() )
pnl.btn.setDisabled(true);
if (activePane == pnl.panelId)
2016-03-11 00:48:53 +00:00
currentactive = -1;
} else {
if ( pnl.btn.isDisabled() )
pnl.btn.setDisabled(false);
2017-09-13 08:57:30 +00:00
if (i!=Common.Utils.documentSettingsType.Signature) lastactive = i;
2016-03-11 00:48:53 +00:00
if ( pnl.needShow ) {
pnl.needShow = false;
priorityactive = i;
} else if (activePane == pnl.panelId)
2016-03-11 00:48:53 +00:00
currentactive = i;
pnl.panel.setLocked(pnl.locked);
}
}
if (!this.rightmenu.minimizedMode || this._openRightMenu) {
2016-03-11 00:48:53 +00:00
var active;
if (priorityactive>-1) active = priorityactive;
else if (lastactive>=0 && currentactive<0) active = lastactive;
else if (currentactive>=0) active = currentactive;
if (active == undefined && this._openRightMenu && lastactive>=0)
active = lastactive;
2016-03-11 00:48:53 +00:00
if (active !== undefined) {
this.rightmenu.SetActivePane(active, this._openRightMenu);
2017-09-13 08:57:30 +00:00
if (active!=Common.Utils.documentSettingsType.Signature)
this._settings[active].panel.ChangeSettings.call(this._settings[active].panel, this._settings[active].props);
else
this._settings[active].panel.ChangeSettings.call(this._settings[active].panel);
this._openRightMenu = false;
2016-03-11 00:48:53 +00:00
}
}
this._settings[Common.Utils.documentSettingsType.Image].needShow = false;
this._settings[Common.Utils.documentSettingsType.Chart].needShow = false;
},
onCoAuthoringDisconnect: function() {
2016-04-21 10:15:15 +00:00
this.SetDisabled(true);
2016-03-11 00:48:53 +00:00
this.setMode({isEdit: false});
},
onInsertImage: function() {
this._settings[Common.Utils.documentSettingsType.Image].needShow = true;
},
onInsertChart: function() {
this._settings[Common.Utils.documentSettingsType.Chart].needShow = true;
},
onInsertShape: function() {
this._settings[Common.Utils.documentSettingsType.Shape].needShow = true;
},
onInsertTextArt: function() {
this._settings[Common.Utils.documentSettingsType.TextArt].needShow = true;
},
UpdateThemeColors: function() {
this.rightmenu.shapeSettings.UpdateThemeColors();
this.rightmenu.textartSettings.UpdateThemeColors();
2016-09-14 13:34:08 +00:00
this.rightmenu.chartSettings.UpdateThemeColors();
2016-03-11 00:48:53 +00:00
},
updateMetricUnit: function() {
this.rightmenu.paragraphSettings.updateMetricUnit();
this.rightmenu.chartSettings.updateMetricUnit();
this.rightmenu.imageSettings.updateMetricUnit();
},
fillTextArt: function() {
this.rightmenu.textartSettings.fillTextArt();
},
createDelayedElements: function() {
var me = this;
if (this.api) {
var open = Common.localStorage.getItem("sse-hide-right-settings");
this._openRightMenu = (open===null || parseInt(open) == 0);
2016-03-11 00:48:53 +00:00
this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onFocusObject, this));
this.api.asc_registerCallback('asc_onSelectionChanged', _.bind(this.onSelectionChanged, this));
this.api.asc_registerCallback('asc_doubleClickOnObject', _.bind(this.onDoubleClickOnObject, this));
this.rightmenu.shapeSettings.createDelayedElements();
this.onSelectionChanged(this.api.asc_getCellInfo());
2016-03-11 00:48:53 +00:00
}
},
onDoubleClickOnObject: function(obj) {
if (!this.editMode) return;
var eltype = obj.asc_getObjectType(),
settingsType = this.getDocumentSettingsType(eltype);
if (settingsType===undefined || settingsType>=this._settings.length || this._settings[settingsType]===undefined)
return;
var value = obj.asc_getObjectValue();
if (settingsType == Common.Utils.documentSettingsType.Image) {
if (value.asc_getChartProperties() !== null) {
settingsType = Common.Utils.documentSettingsType.Chart;
} else if (value.asc_getShapeProperties() !== null) {
settingsType = Common.Utils.documentSettingsType.Shape;
}
}
if (settingsType !== Common.Utils.documentSettingsType.Paragraph) {
this.rightmenu.SetActivePane(settingsType, true);
this._settings[settingsType].panel.ChangeSettings.call(this._settings[settingsType].panel, this._settings[settingsType].props);
}
},
getDocumentSettingsType: function(type) {
switch (type) {
case Asc.c_oAscTypeSelectElement.Paragraph:
2016-03-11 00:48:53 +00:00
return Common.Utils.documentSettingsType.Paragraph;
case Asc.c_oAscTypeSelectElement.Image:
2016-03-11 00:48:53 +00:00
return Common.Utils.documentSettingsType.Image;
}
2016-04-21 10:15:15 +00:00
},
SetDisabled: function(disabled) {
if (this.rightmenu) {
this.rightmenu.paragraphSettings.disableControls(disabled);
this.rightmenu.shapeSettings.disableControls(disabled);
this.rightmenu.imageSettings.disableControls(disabled);
this.rightmenu.chartSettings.disableControls(disabled);
this.rightmenu.tableSettings.disableControls(disabled);
2017-09-13 08:57:30 +00:00
if (this.rightmenu.signatureSettings) {
this.rightmenu.signatureSettings.disableControls(disabled);
this.rightmenu.btnSignature.setDisabled(disabled);
}
2016-04-21 10:15:15 +00:00
if (disabled) {
this.rightmenu.btnText.setDisabled(disabled);
this.rightmenu.btnTable.setDisabled(disabled);
this.rightmenu.btnImage.setDisabled(disabled);
this.rightmenu.btnShape.setDisabled(disabled);
this.rightmenu.btnTextArt.setDisabled(disabled);
this.rightmenu.btnChart.setDisabled(disabled);
} else {
this.onSelectionChanged(this.api.asc_getCellInfo());
}
}
},
onCellsRange: function(status) {
this.rangeSelectionMode = (status != Asc.c_oAscSelectionDialogType.None);
2016-03-11 00:48:53 +00:00
}
});
});