/** * 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({ '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}; }, 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)); }, 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) panel.ChangeSettings.call(panel, props); } Common.NotificationCenter.trigger('layout:changed', 'rightmenu'); Common.NotificationCenter.trigger('edit:complete', this.rightmenu); }, onSelectionChanged: function(info) { var SelectedObjects = [], selectType = info.asc_getFlags().asc_getSelectionType(); if (selectType == c_oAscSelectionType.RangeImage || selectType == c_oAscSelectionType.RangeShape || selectType == c_oAscSelectionType.RangeChart || selectType == c_oAscSelectionType.RangeChartText || selectType == c_oAscSelectionType.RangeShapeText) { SelectedObjects = this.api.asc_getGraphicObjectProps(); } if (SelectedObjects.length<=0 && !this.rightmenu.minimizedMode) { this.rightmenu.clearSelection(); } this.onFocusObject(SelectedObjects); var need_disable = info.asc_getLocked(), me = this; if (this._state.prevDisabled != need_disable) { this._state.prevDisabled = need_disable; _.each(this._settings, function(item){ item.panel.setLocked(need_disable); }); } }, onFocusObject: function(SelectedObjects) { if (!this.editMode) return; for (var i=0; i=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; } 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(); } var lastactive = -1, currentactive, priorityactive = -1; for (i=0; i-1) active = priorityactive; else if (lastactive>=0 && currentactive<0) active = lastactive; else if (currentactive>=0) active = currentactive; if (active !== undefined) { this.rightmenu.SetActivePane(active); this._settings[active].panel.ChangeSettings.call(this._settings[active].panel, this._settings[active].props); } } this._settings[Common.Utils.documentSettingsType.Image].needShow = false; this._settings[Common.Utils.documentSettingsType.Chart].needShow = false; }, onCoAuthoringDisconnect: function() { if (this.rightmenu) this.rightmenu.SetDisabled('', true, true); 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(); }, 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) { 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)); } }, 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 c_oAscTypeSelectElement.Paragraph: return Common.Utils.documentSettingsType.Paragraph; case c_oAscTypeSelectElement.Image: return Common.Utils.documentSettingsType.Image; } } }); });