web-apps/apps/documenteditor/mobile/app/controller/tablet/panel/Insert.js
Alexander.Trofimov 3180c98ee2 to Asc namespace
2016-04-18 15:21:15 +03:00

258 lines
9.1 KiB
JavaScript

/*
*
* (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
*
*/
Ext.define('DE.controller.tablet.panel.Insert', {
extend: 'Ext.app.Controller',
config: {
refs: {
insertPanel : 'insertpanel',
navigateView : '#id-insert-navigate',
insertListView : '#id-insert-root',
insertTableView : '#id-insert-table-container',
insertPictureView : '#id-insert-picture-container',
insertTableButton : '#id-btn-insert-table',
tableColumnsSpinner : '#id-spinner-table-columns',
tableRowsSpinner : '#id-spinner-table-rows',
insertImageList : '#id-insert-picture-container'
},
control: {
insertPanel: {
hide : 'onInsertPanelHide'
},
navigateView: {
push : 'onNavigateViewPush',
pop : 'onNavigateViewPop',
back : 'onNavigateViewBack'
},
insertListView: {
itemsingletap : 'onInsertListItemTap'
},
insertTableButton: {
tap : 'onInsertTableButtonTap'
},
insertImageList: {
itemtap : 'onInsertImageItemTap'
}
}
},
init: function() {
},
onInsertImageListShow: function(list) {
var me = this,
inputInlineMedia = document.querySelector('#id-insert-picture-inline input[type=file]'),
inputFloatMedia = document.querySelector('#id-insert-picture-float input[type=file]');
var onChangeInput = function(input) {
if (Ext.isDefined(input)) {
var file = input.files[0];
if (Ext.isDefined(file)){
var panel = me.getInsertPanel(),
mpImg = new MegaPixImage(file);
mpImg.imageLoadListeners.push(function() {
var canvas = document.createElement('canvas'),
imgProperty = new Asc.asc_CImgProperty();
mpImg.render(canvas, { maxWidth: 1024, maxHeight: 1024 });
imgProperty.put_WrappingStyle((input == inputInlineMedia) ? Asc.c_oAscWrapStyle2.Inline : Asc.c_oAscWrapStyle2.Square);
me.api.AddImageUrl(canvas.toDataURL(), imgProperty);
Ext.Viewport.unmask();
});
input.value = '';
panel && panel.hide();
Ext.Viewport.setMasked({
xtype : 'loadmask',
message : me.uploadingText + '...'
});
}
}
};
inputInlineMedia && (inputInlineMedia.onchange = Ext.bind(onChangeInput, me, [inputInlineMedia]));
inputFloatMedia && (inputFloatMedia.onchange = Ext.bind(onChangeInput, me, [inputFloatMedia]));
},
launch: function() {
var insertImageList = this.getInsertImageList();
insertImageList && insertImageList.on('show', Ext.bind(this.onInsertImageListShow, this), this, {
delay : 1000,
single : true
}
);
},
setApi: function(o) {
this.api = o;
},
onInsertPanelHide: function(cmp) {
var navigateView = this.getNavigateView(),
tableColumnsSpinner = this.getTableColumnsSpinner(),
tableRowsSpinner = this.getTableRowsSpinner();
if (navigateView) {
if (Ext.isDefined(navigateView.getLayout().getAnimation().getInAnimation))
navigateView.getLayout().getAnimation().getInAnimation().stop();
if (Ext.isDefined(navigateView.getLayout().getAnimation().getOutAnimation))
navigateView.getLayout().getAnimation().getOutAnimation().stop();
navigateView.reset();
var activeItem = navigateView.getActiveItem(),
panelHeight = this.getHeightById(activeItem && activeItem.id);
cmp.setHeight(panelHeight);
}
tableColumnsSpinner && tableColumnsSpinner.setValue(tableColumnsSpinner.getMinValue());
tableRowsSpinner && tableRowsSpinner.setValue(tableRowsSpinner.getMinValue());
},
onInsertListItemTap: function(cmp, index, target, record) {
var navigateView = this.getNavigateView(),
cmdId = record.get('id');
if (!Ext.isEmpty(cmdId)) {
if (cmdId == 'id-insert-table-row') {
this.insertTableObject('row');
Common.component.Analytics.trackEvent('ToolBar', 'Insert Row');
} else if (cmdId == 'id-insert-table-column') {
this.insertTableObject('column');
Common.component.Analytics.trackEvent('ToolBar', 'Insert Column');
}
}
if (navigateView) {
var cmpId = record.get('child');
if (!Ext.isEmpty(cmpId)) {
var childCmp = Ext.getCmp(cmpId);
if (childCmp)
navigateView.push(childCmp);
}
}
},
getHeightById: function(id){
switch(id){
case 'id-insert-table-container': return 225;
case 'id-insert-picture-container': return 174;
default:
case 'id-insert-root': return 283;
}
},
onNavigateViewPush: function(cmp, view) {
var parentCmp = cmp.getParent();
if (parentCmp)
parentCmp.setHeight(this.getHeightById(view && view.id));
},
onNavigateViewPop: function(cmp, view) {
//
},
onNavigateViewBack: function(cmp) {
var parentCmp = cmp.getParent(),
activeItem = cmp.getActiveItem();
if (parentCmp && activeItem) {
parentCmp.setHeight(this.getHeightById(activeItem && activeItem.id));
}
},
onInsertTableButtonTap: function(btn) {
var insertPanel = this.getInsertPanel(),
tableColumnsSpinner = this.getTableColumnsSpinner(),
tableRowsSpinner = this.getTableRowsSpinner();
if (this.api && tableColumnsSpinner && tableRowsSpinner) {
this.api.put_Table(tableColumnsSpinner.getValue(), tableRowsSpinner.getValue());
}
if (insertPanel)
insertPanel.hide();
Common.component.Analytics.trackEvent('ToolBar', 'Table');
},
onInsertImageItemTap: function(list) {
if ((Ext.os.is.iOS && Ext.os.version.lt('6.0')) ||
(Ext.os.is.Android && Ext.os.version.lt('3.0'))) {
Ext.Msg.show({
message : this.unsupportUploadText,
promptConfig: false,
buttons : [
{text: 'OK', itemId: 'ok', ui: 'base'}
]
});
}
},
insertTableObject: function(type) {
if (this.api) {
var selectedElements = this.api.getSelectedElements();
if (selectedElements && selectedElements.length > 0) {
var elementType = selectedElements[0].get_ObjectType();
if (Asc.c_oAscTypeSelectElement.Table == elementType) {
type === 'row'
? this.api.addRowBelow()
: type === 'column'
? this.api.addColumnRight()
: this.api.put_Table(1, 1);
} else {
this.api.put_Table(1, 1);
}
}
}
},
uploadingText : 'Uploading',
unsupportUploadText : 'Feature is not supported on this device.'
});