2019-05-30 10:15:49 +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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DataTab.js
|
|
|
|
*
|
|
|
|
* Created by Julia Radzhabova on 30.05.2019
|
|
|
|
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
define([
|
|
|
|
'core',
|
|
|
|
'spreadsheeteditor/main/app/view/DataTab',
|
|
|
|
'spreadsheeteditor/main/app/view/GroupDialog'
|
|
|
|
], function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
SSE.Controllers.DataTab = Backbone.Controller.extend(_.extend({
|
|
|
|
models : [],
|
|
|
|
collections : [
|
|
|
|
],
|
|
|
|
views : [
|
|
|
|
'DataTab'
|
|
|
|
],
|
|
|
|
sdkViewName : '#id_main',
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
|
|
|
|
this.addListeners({
|
|
|
|
'DataTab': {
|
|
|
|
'data:group': this.onGroup,
|
2019-05-30 12:52:25 +00:00
|
|
|
'data:ungroup': this.onUngroup,
|
2019-05-30 14:51:11 +00:00
|
|
|
'data:tocolumns': this.onTextToColumn,
|
|
|
|
'data:show': this.onShowClick,
|
|
|
|
'data:hide': this.onHideClick
|
2019-05-30 10:15:49 +00:00
|
|
|
}
|
|
|
|
});
|
2019-05-30 12:52:25 +00:00
|
|
|
|
|
|
|
this._state = {
|
|
|
|
CSVOptions: new Asc.asc_CCSVAdvancedOptions(0, 4, '')
|
|
|
|
};
|
2019-05-30 10:15:49 +00:00
|
|
|
},
|
|
|
|
onLaunch: function () {
|
|
|
|
},
|
|
|
|
|
|
|
|
setApi: function (api) {
|
|
|
|
if (api) {
|
|
|
|
this.api = api;
|
|
|
|
this.api.asc_registerCallback('asc_onSelectionChanged', _.bind(this.onSelectionChanged, this));
|
|
|
|
this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this));
|
|
|
|
Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this));
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setConfig: function(config) {
|
|
|
|
this.toolbar = config.toolbar;
|
|
|
|
this.view = this.createView('DataTab', {
|
|
|
|
toolbar: this.toolbar.toolbar
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
SetDisabled: function(state) {
|
|
|
|
this.view && this.view.SetDisabled(state);
|
|
|
|
},
|
|
|
|
|
|
|
|
getView: function(name) {
|
|
|
|
return !name && this.view ?
|
|
|
|
this.view : Backbone.Controller.prototype.getView.call(this, name);
|
|
|
|
},
|
|
|
|
|
|
|
|
onCoAuthoringDisconnect: function() {
|
|
|
|
this.SetDisabled(true);
|
|
|
|
},
|
|
|
|
|
|
|
|
onSelectionChanged: function(info) {
|
2019-05-30 12:52:25 +00:00
|
|
|
if (!this.toolbar.editMode || !this.view) return;
|
|
|
|
|
2019-05-30 10:15:49 +00:00
|
|
|
// special disable conditions
|
2019-05-30 12:52:25 +00:00
|
|
|
Common.Utils.lockControls(SSE.enumLock.multiselectCols, info.asc_getSelectedColsCount()>1, {array: [this.view.btnTextToColumns]});
|
|
|
|
Common.Utils.lockControls(SSE.enumLock.multiselect, info.asc_getFlags().asc_getMultiselect(), {array: [this.view.btnTextToColumns]});
|
2019-05-30 10:15:49 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onUngroup: function(type) {
|
2019-06-05 11:19:33 +00:00
|
|
|
var me = this,
|
|
|
|
val = me.api.asc_checkAddGroup(true); // check ungroup
|
2019-05-30 10:15:49 +00:00
|
|
|
if (type=='rows') {
|
2019-06-05 11:19:33 +00:00
|
|
|
(val!==undefined) && me.api.asc_ungroup(true)
|
2019-05-30 10:15:49 +00:00
|
|
|
} else if (type=='columns') {
|
2019-06-05 11:19:33 +00:00
|
|
|
(val!==undefined) && me.api.asc_ungroup(false)
|
2019-05-30 10:15:49 +00:00
|
|
|
} else if (type=='clear') {
|
|
|
|
me.api.asc_clearOutline();
|
2019-06-05 11:19:33 +00:00
|
|
|
} else {
|
|
|
|
if (val===null) {
|
|
|
|
(new SSE.Views.GroupDialog({
|
|
|
|
title: me.view.capBtnUngroup,
|
|
|
|
props: 'rows',
|
|
|
|
handler: function (dlg, result) {
|
|
|
|
if (result=='ok') {
|
|
|
|
me.api.asc_ungroup(dlg.getSettings());
|
|
|
|
}
|
|
|
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
2019-05-30 10:15:49 +00:00
|
|
|
}
|
2019-06-05 11:19:33 +00:00
|
|
|
})).show();
|
|
|
|
} else if (val!==undefined) //undefined - error, true - rows, false - columns
|
|
|
|
me.api.asc_ungroup(val);
|
|
|
|
}
|
2019-05-30 10:15:49 +00:00
|
|
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
|
|
|
},
|
|
|
|
|
|
|
|
onGroup: function(btn) {
|
|
|
|
var me = this,
|
|
|
|
val = me.api.asc_checkAddGroup();
|
|
|
|
if (val===null) {
|
|
|
|
(new SSE.Views.GroupDialog({
|
|
|
|
title: me.view.capBtnGroup,
|
|
|
|
props: 'rows',
|
|
|
|
handler: function (dlg, result) {
|
|
|
|
if (result=='ok') {
|
|
|
|
me.api.asc_group(dlg.getSettings());
|
|
|
|
}
|
|
|
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
|
|
|
}
|
|
|
|
})).show();
|
|
|
|
} else if (val!==undefined) //undefined - error, true - rows, false - columns
|
|
|
|
me.api.asc_group(val);
|
2019-05-31 07:59:38 +00:00
|
|
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
2019-05-30 12:52:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onTextToColumn: function() {
|
|
|
|
this.api.asc_TextImport(this._state.CSVOptions, _.bind(this.onTextToColumnCallback, this), false);
|
|
|
|
},
|
|
|
|
|
|
|
|
onTextToColumnCallback: function(data) {
|
|
|
|
if (!data || !data.length) return;
|
|
|
|
|
|
|
|
var me = this;
|
|
|
|
(new Common.Views.OpenDialog({
|
|
|
|
title: me.textWizard,
|
|
|
|
closable: true,
|
|
|
|
type: Common.Utils.importTextType.Columns,
|
|
|
|
preview: true,
|
|
|
|
previewData: data,
|
|
|
|
settings: me._state.CSVOptions,
|
|
|
|
api: me.api,
|
|
|
|
handler: function (result, encoding, delimiter, delimiterChar) {
|
|
|
|
if (result == 'ok') {
|
|
|
|
if (me && me.api) {
|
|
|
|
me.api.asc_TextToColumns(new Asc.asc_CCSVAdvancedOptions(encoding, delimiter, delimiterChar));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})).show();
|
|
|
|
},
|
|
|
|
|
2019-05-30 14:51:11 +00:00
|
|
|
onShowClick: function() {
|
2019-05-31 07:59:38 +00:00
|
|
|
this.api.asc_changeGroupDetails(true);
|
2019-05-30 14:51:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onHideClick: function() {
|
2019-05-31 07:59:38 +00:00
|
|
|
this.api.asc_changeGroupDetails(false);
|
2019-05-30 14:51:11 +00:00
|
|
|
},
|
|
|
|
|
2019-05-30 12:52:25 +00:00
|
|
|
textWizard: 'Text to Columns Wizard'
|
2019-05-30 10:15:49 +00:00
|
|
|
|
|
|
|
}, SSE.Controllers.DataTab || {}));
|
|
|
|
});
|