2016-05-17 15:38:54 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* (c) Copyright Ascensio System Limited 2010-2016
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* User: Julia.Radzhabova
|
|
|
|
* Date: 17.05.16
|
|
|
|
* Time: 15:38
|
|
|
|
*/
|
|
|
|
|
|
|
|
define([
|
|
|
|
'core',
|
|
|
|
'common/main/lib/collection/Plugins',
|
|
|
|
'common/main/lib/view/Plugins'
|
|
|
|
], function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Common.Controllers.Plugins = Backbone.Controller.extend(_.extend({
|
|
|
|
models: [],
|
|
|
|
collections: [
|
|
|
|
'Common.Collections.Plugins'
|
|
|
|
],
|
|
|
|
views: [
|
|
|
|
'Common.Views.Plugins'
|
|
|
|
],
|
|
|
|
|
|
|
|
initialize: function() {
|
|
|
|
},
|
|
|
|
|
2016-06-24 11:07:55 +00:00
|
|
|
events: function() {
|
|
|
|
return {
|
|
|
|
'click #id-plugin-close':_.bind(this.onToolClose,this)
|
|
|
|
};
|
2016-05-17 15:38:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onLaunch: function() {
|
|
|
|
this.panelPlugins= this.createView('Common.Views.Plugins', {
|
|
|
|
storePlugins: this.getApplication().getCollection('Common.Collections.Plugins')
|
|
|
|
});
|
|
|
|
this.panelPlugins.on('render:after', _.bind(this.onAfterRender, this));
|
2016-08-01 13:25:59 +00:00
|
|
|
|
|
|
|
this._moveOffset = {x:0, y:0};
|
2016-05-17 15:38:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setApi: function(api) {
|
|
|
|
this.api = api;
|
|
|
|
|
2016-05-18 10:42:06 +00:00
|
|
|
this.api.asc_registerCallback("asc_onPluginShow", _.bind(this.onPluginShow, this));
|
|
|
|
this.api.asc_registerCallback("asc_onPluginClose", _.bind(this.onPluginClose, this));
|
2016-07-26 12:08:39 +00:00
|
|
|
this.api.asc_registerCallback("asc_onPluginResize", _.bind(this.onPluginResize, this));
|
2016-08-01 08:26:08 +00:00
|
|
|
this.api.asc_registerCallback("asc_onPluginMouseUp", _.bind(this.onPluginMouseUp, this));
|
|
|
|
this.api.asc_registerCallback("asc_onPluginMouseMove", _.bind(this.onPluginMouseMove, this));
|
2016-05-18 10:42:06 +00:00
|
|
|
|
2016-05-17 15:38:54 +00:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setMode: function(mode) {
|
2016-05-19 09:46:21 +00:00
|
|
|
if (mode.canPlugins) {
|
|
|
|
this.panelPlugins.pluginsPath = mode.pluginsPath;
|
|
|
|
this.updatePluginsList();
|
|
|
|
}
|
2016-05-17 15:38:54 +00:00
|
|
|
},
|
|
|
|
|
2016-06-28 09:27:00 +00:00
|
|
|
onAfterRender: function(panelPlugins) {
|
|
|
|
panelPlugins.viewPluginsList.on('item:click', _.bind(this.onSelectPlugin, this));
|
2016-06-24 11:07:55 +00:00
|
|
|
this.bindViewEvents(this.panelPlugins, this.events);
|
2016-08-01 08:26:08 +00:00
|
|
|
var me = this;
|
|
|
|
Common.NotificationCenter.on({
|
|
|
|
'layout:resizestart': function(e){
|
|
|
|
if (me.panelPlugins.isVisible()) {
|
2016-08-01 13:25:59 +00:00
|
|
|
var offset = me.panelPlugins.currentPluginFrame.offset();
|
|
|
|
me._moveOffset = {x: offset.left + parseInt(me.panelPlugins.currentPluginFrame.css('padding-left')),
|
|
|
|
y: offset.top + parseInt(me.panelPlugins.currentPluginFrame.css('padding-top'))};
|
2016-08-01 08:26:08 +00:00
|
|
|
me.api.asc_pluginEnableMouseEvents(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'layout:resizestop': function(e){
|
|
|
|
if (me.panelPlugins.isVisible()) {
|
|
|
|
me.api.asc_pluginEnableMouseEvents(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-05-17 15:38:54 +00:00
|
|
|
},
|
|
|
|
|
2016-05-19 09:46:21 +00:00
|
|
|
updatePluginsList: function() {
|
|
|
|
var me = this;
|
|
|
|
var storePlugins = this.getApplication().getCollection('Common.Collections.Plugins'),
|
|
|
|
arr = [];
|
|
|
|
storePlugins.each(function(item){
|
|
|
|
var plugin = new Asc.CPlugin();
|
|
|
|
plugin.set_Name(item.get('name'));
|
|
|
|
plugin.set_Guid(item.get('guid'));
|
2016-05-24 08:48:59 +00:00
|
|
|
plugin.set_BaseUrl(item.get('baseUrl'));
|
2016-05-19 09:46:21 +00:00
|
|
|
var variations = item.get('variations'),
|
|
|
|
variationsArr = [];
|
|
|
|
variations.forEach(function(itemVar){
|
|
|
|
var variation = new Asc.CPluginVariation();
|
|
|
|
variation.set_Description(itemVar.get('description'));
|
|
|
|
variation.set_Url(itemVar.get('url'));
|
|
|
|
variation.set_Icons(itemVar.get('icons'));
|
|
|
|
variation.set_Visual(itemVar.get('isVisual'));
|
|
|
|
variation.set_Viewer(itemVar.get('isViewer'));
|
|
|
|
variation.set_EditorsSupport(itemVar.get('EditorsSupport'));
|
|
|
|
variation.set_Modal(itemVar.get('isModal'));
|
|
|
|
variation.set_InsideMode(itemVar.get('isInsideMode'));
|
|
|
|
variation.set_InitDataType(itemVar.get('initDataType'));
|
|
|
|
variation.set_InitData(itemVar.get('initData'));
|
|
|
|
variation.set_UpdateOleOnResize(itemVar.get('isUpdateOleOnResize'));
|
|
|
|
variation.set_Buttons(itemVar.get('buttons'));
|
2016-08-02 10:55:45 +00:00
|
|
|
variation.set_Size(itemVar.get('size'));
|
|
|
|
variation.set_MaximumSize(itemVar.get('maximumSize'));
|
|
|
|
variation.set_MinimumSize(itemVar.get('minimumSize'));
|
2016-05-19 09:46:21 +00:00
|
|
|
variationsArr.push(variation);
|
|
|
|
});
|
|
|
|
plugin.set_Variations(variationsArr);
|
|
|
|
item.set('pluginObj', plugin);
|
|
|
|
arr.push(plugin);
|
|
|
|
});
|
|
|
|
this.api.asc_pluginsRegister(this.panelPlugins.pluginsPath, arr);
|
|
|
|
},
|
|
|
|
|
2016-06-24 08:30:03 +00:00
|
|
|
onSelectPlugin: function(picker, item, record, e){
|
|
|
|
var btn = $(e.target);
|
|
|
|
if (btn && btn.hasClass('plugin-caret')) {
|
2016-06-28 09:27:00 +00:00
|
|
|
var menu = this.panelPlugins.pluginMenu;
|
|
|
|
if (menu.isVisible()) {
|
|
|
|
menu.hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var showPoint, me = this,
|
|
|
|
currentTarget = $(e.currentTarget),
|
|
|
|
parent = $(this.panelPlugins.el),
|
|
|
|
offset = currentTarget.offset(),
|
|
|
|
offsetParent = parent.offset();
|
|
|
|
|
|
|
|
showPoint = [offset.left - offsetParent.left + currentTarget.width(), offset.top - offsetParent.top + currentTarget.height()/2];
|
|
|
|
|
|
|
|
if (record != undefined) {
|
|
|
|
for (var i = 0; i < menu.items.length; i++) {
|
|
|
|
menu.removeItem(menu.items[i]); i--;
|
|
|
|
}
|
|
|
|
menu.removeAll();
|
|
|
|
|
|
|
|
var variations = record.get('variations');
|
|
|
|
for (var i=0; i<variations.length; i++) {
|
|
|
|
var variation = variations[i],
|
|
|
|
mnu = new Common.UI.MenuItem({
|
2016-06-29 07:30:59 +00:00
|
|
|
caption : (i>0) ? variation.get('description') : me.panelPlugins.textStart,
|
2016-06-28 09:27:00 +00:00
|
|
|
value : parseInt(variation.get('index'))
|
|
|
|
}).on('click', function(item, e) {
|
|
|
|
if (me.api) {
|
|
|
|
me.api.asc_pluginRun(record.get('guid'), item.value, '');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
menu.addItem(mnu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var menuContainer = parent.find('#menu-plugin-container');
|
|
|
|
if (!menu.rendered) {
|
|
|
|
if (menuContainer.length < 1) {
|
|
|
|
menuContainer = $('<div id="menu-plugin-container" style="position: absolute; z-index: 10000;"><div class="dropdown-toggle" data-toggle="dropdown"></div></div>', menu.id);
|
|
|
|
parent.append(menuContainer);
|
|
|
|
}
|
|
|
|
menu.render(menuContainer);
|
|
|
|
menu.cmpEl.attr({tabindex: "-1"});
|
|
|
|
|
|
|
|
menu.on('show:after', function(cmp) {
|
|
|
|
if (cmp && cmp.menuAlignEl)
|
|
|
|
cmp.menuAlignEl.toggleClass('over', true);
|
|
|
|
}).on('hide:after', function(cmp) {
|
|
|
|
if (cmp && cmp.menuAlignEl)
|
|
|
|
cmp.menuAlignEl.toggleClass('over', false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
menuContainer.css({left: showPoint[0], top: showPoint[1]});
|
|
|
|
|
|
|
|
menu.menuAlignEl = currentTarget;
|
|
|
|
menu.setOffset(-11, -currentTarget.height()/2 + 2);
|
|
|
|
menu.show();
|
|
|
|
_.delay(function() {
|
|
|
|
menu.cmpEl.focus();
|
|
|
|
}, 10);
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2016-06-24 08:30:03 +00:00
|
|
|
} else
|
2016-06-28 09:27:00 +00:00
|
|
|
this.api.asc_pluginRun(record.get('guid'), 0, '');
|
2016-05-17 15:38:54 +00:00
|
|
|
},
|
|
|
|
|
2016-06-28 15:15:06 +00:00
|
|
|
onPluginShow: function(plugin, variationIndex) {
|
|
|
|
var variation = plugin.get_Variations()[variationIndex];
|
2016-08-03 09:41:36 +00:00
|
|
|
if (variation.get_Visual()) {
|
|
|
|
if (variation.get_InsideMode()) {
|
|
|
|
this.panelPlugins.openInsideMode(plugin.get_Name(), ((plugin.get_BaseUrl().length == 0) ? this.panelPlugins.pluginsPath : plugin.get_BaseUrl()) + variation.get_Url());
|
|
|
|
} else {
|
|
|
|
var me = this,
|
|
|
|
arrBtns = variation.get_Buttons(),
|
|
|
|
newBtns = {},
|
2016-08-04 11:44:23 +00:00
|
|
|
size = variation.get_Size(),
|
|
|
|
maxsize = variation.get_MaximumSize(),
|
|
|
|
minsize = variation.get_MinimumSize();
|
2016-08-03 09:41:36 +00:00
|
|
|
if (!size || size.length<2) size = [800, 600];
|
2016-06-24 11:07:55 +00:00
|
|
|
|
2016-08-03 09:41:36 +00:00
|
|
|
if (_.isArray(arrBtns)) {
|
|
|
|
_.each(arrBtns, function(b, index){
|
|
|
|
newBtns[index] = {text: b.text, cls: 'custom' + ((b.primary) ? ' primary' : '')};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var _baseUrl = (plugin.get_BaseUrl().length == 0) ? me.panelPlugins.pluginsPath : plugin.get_BaseUrl();
|
|
|
|
me.pluginDlg = new Common.Views.PluginDlg({
|
|
|
|
title: plugin.get_Name(),
|
|
|
|
width: size[0], // inner width
|
|
|
|
height: size[1], // inner height
|
|
|
|
url: _baseUrl + variation.get_Url(),
|
|
|
|
buttons: newBtns,
|
2016-08-04 11:44:23 +00:00
|
|
|
toolcallback: _.bind(this.onToolClose, this),
|
|
|
|
maxwidth: maxsize[0],
|
|
|
|
maxheight: maxsize[1],
|
|
|
|
minwidth: minsize[0],
|
|
|
|
minheight: minsize[1]
|
2016-06-24 11:07:55 +00:00
|
|
|
});
|
2016-08-03 09:41:36 +00:00
|
|
|
me.pluginDlg.on('render:after', function(obj){
|
|
|
|
obj.getChild('.footer .dlg-btn').on('click', _.bind(me.onDlgBtnClick, me));
|
|
|
|
me.pluginContainer = me.pluginDlg.$window.find('#id-plugin-container');
|
|
|
|
}).on('close', function(obj){
|
|
|
|
me.pluginDlg = undefined;
|
|
|
|
}).on('drag', function(args){
|
|
|
|
me.api.asc_pluginEnableMouseEvents(args[1]=='start');
|
2016-08-04 11:44:23 +00:00
|
|
|
}).on('resize', function(args){
|
|
|
|
me.api.asc_pluginEnableMouseEvents(args[1]=='start');
|
2016-08-03 09:41:36 +00:00
|
|
|
});
|
|
|
|
me.pluginDlg.show();
|
2016-06-24 11:07:55 +00:00
|
|
|
}
|
2016-08-03 09:41:36 +00:00
|
|
|
} else
|
|
|
|
this.panelPlugins.openNotVisualMode(plugin.get_Guid());
|
2016-05-18 10:42:06 +00:00
|
|
|
},
|
|
|
|
|
2016-05-19 09:46:21 +00:00
|
|
|
onPluginClose: function() {
|
2016-05-18 10:42:06 +00:00
|
|
|
if (this.pluginDlg)
|
|
|
|
this.pluginDlg.close();
|
2016-08-03 09:41:36 +00:00
|
|
|
else if (this.panelPlugins.iframePlugin)
|
2016-06-24 11:07:55 +00:00
|
|
|
this.panelPlugins.closeInsideMode();
|
2016-08-03 09:41:36 +00:00
|
|
|
else
|
|
|
|
this.panelPlugins.closeNotVisualMode();
|
2016-05-18 10:42:06 +00:00
|
|
|
},
|
|
|
|
|
2016-07-26 12:08:39 +00:00
|
|
|
onPluginResize: function(width, height, callback) {
|
|
|
|
if (this.pluginDlg) {
|
|
|
|
this.pluginDlg.setInnerSize(width, height);
|
|
|
|
if (callback)
|
|
|
|
callback.call();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-05-18 10:42:06 +00:00
|
|
|
onDlgBtnClick: function(event) {
|
|
|
|
var state = event.currentTarget.attributes['result'].value;
|
2016-05-25 13:15:36 +00:00
|
|
|
this.api.asc_pluginButtonClick(parseInt(state));
|
2016-05-18 10:42:06 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onToolClose: function() {
|
2016-05-25 13:15:36 +00:00
|
|
|
this.api.asc_pluginButtonClick(-1);
|
2016-08-01 08:26:08 +00:00
|
|
|
},
|
|
|
|
|
2016-08-01 09:33:30 +00:00
|
|
|
onPluginMouseUp: function(x, y) {
|
2016-08-01 13:25:59 +00:00
|
|
|
if (this.pluginDlg) {
|
2016-08-04 11:44:23 +00:00
|
|
|
if (this.pluginDlg.binding.dragStop) this.pluginDlg.binding.dragStop();
|
|
|
|
if (this.pluginDlg.binding.resizeStop) this.pluginDlg.binding.resizeStop();
|
2016-08-01 13:25:59 +00:00
|
|
|
} else
|
|
|
|
Common.NotificationCenter.trigger('frame:mouseup', jQuery.Event("mouseup", { pageX: x+this._moveOffset.x, pageY: y+this._moveOffset.y } ));
|
2016-08-01 08:26:08 +00:00
|
|
|
},
|
|
|
|
|
2016-08-01 09:33:30 +00:00
|
|
|
onPluginMouseMove: function(x, y) {
|
2016-08-01 13:25:59 +00:00
|
|
|
if (this.pluginDlg) {
|
|
|
|
var offset = this.pluginContainer.offset();
|
2016-08-04 11:44:23 +00:00
|
|
|
if (this.pluginDlg.binding.drag) this.pluginDlg.binding.drag(jQuery.Event("mousemove", { pageX: x+offset.left, pageY: y+offset.top } ));
|
|
|
|
if (this.pluginDlg.binding.resize) this.pluginDlg.binding.resize(jQuery.Event("mousemove", { pageX: x+offset.left, pageY: y+offset.top } ));
|
2016-08-01 13:25:59 +00:00
|
|
|
} else
|
|
|
|
Common.NotificationCenter.trigger('frame:mousemove', jQuery.Event("mousemove", { pageX: x+this._moveOffset.x, pageY: y+this._moveOffset.y } ));
|
2016-05-18 10:42:06 +00:00
|
|
|
}
|
2016-05-17 15:38:54 +00:00
|
|
|
|
|
|
|
}, Common.Controllers.Plugins || {}));
|
|
|
|
});
|