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
|
|
|
/**
|
|
|
|
* Viewport.js
|
|
|
|
*
|
|
|
|
* Viewport view
|
|
|
|
*
|
|
|
|
* Created by Alexander Yuzhin on 12/27/13
|
|
|
|
* Copyright (c) 2013 Ascensio System SIA. All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
define([
|
|
|
|
'text!documenteditor/main/app/template/Viewport.template',
|
|
|
|
'jquery',
|
|
|
|
'underscore',
|
|
|
|
'backbone',
|
|
|
|
'common/main/lib/component/Layout'
|
|
|
|
], function (viewportTemplate, $, _, Backbone) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
DE.Views.Viewport = Backbone.View.extend({
|
|
|
|
el: '#viewport',
|
|
|
|
|
|
|
|
// Compile our stats template
|
|
|
|
template: _.template(viewportTemplate),
|
|
|
|
|
|
|
|
// Delegated events for creating new items, and clearing completed ones.
|
|
|
|
events: {
|
|
|
|
},
|
|
|
|
|
|
|
|
// Set innerHTML and get the references to the DOM elements
|
|
|
|
initialize: function() {
|
|
|
|
//
|
|
|
|
},
|
|
|
|
|
|
|
|
// Render layout
|
|
|
|
render: function() {
|
2017-04-05 09:23:20 +00:00
|
|
|
this.$el.html(this.template({}));
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
// Workaround Safari's scrolling problem
|
|
|
|
if (Common.Utils.isSafari) {
|
|
|
|
$('body').addClass('safari');
|
|
|
|
$('body').mousewheel(function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
} else if (Common.Utils.isChrome) {
|
|
|
|
$('body').addClass('chrome');
|
|
|
|
}
|
|
|
|
|
2017-04-05 09:23:20 +00:00
|
|
|
var $container = $('#viewport-vbox-layout', this.$el);
|
2016-03-11 00:48:53 +00:00
|
|
|
this.vlayout = new Common.UI.VBoxLayout({
|
|
|
|
box: $container,
|
|
|
|
items: [{
|
2017-03-01 13:37:27 +00:00
|
|
|
el: $container.find(' > .layout-item#toolbar'),
|
2017-04-06 09:34:01 +00:00
|
|
|
// rely: true
|
|
|
|
height: Common.localStorage.getBool('de-compact-toolbar') ? 40 : 40+67
|
2016-03-11 00:48:53 +00:00
|
|
|
}, {
|
2017-03-01 13:37:27 +00:00
|
|
|
el: $container.find(' > .layout-item.middle'),
|
2016-03-11 00:48:53 +00:00
|
|
|
stretch: true
|
|
|
|
}, {
|
2017-03-01 13:37:27 +00:00
|
|
|
el: $container.find(' > .layout-item#statusbar'),
|
2016-03-11 00:48:53 +00:00
|
|
|
height: 25
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2017-04-05 09:23:20 +00:00
|
|
|
$container = $('#viewport-hbox-layout', this.$el);
|
2017-03-01 13:37:27 +00:00
|
|
|
var items = $container.find(' > .layout-item');
|
2016-03-11 00:48:53 +00:00
|
|
|
this.hlayout = new Common.UI.HBoxLayout({
|
|
|
|
box: $container,
|
|
|
|
items: [{ // left menu chat & comment
|
|
|
|
el: items[0],
|
|
|
|
rely: true,
|
|
|
|
resize: {
|
|
|
|
hidden: true,
|
|
|
|
autohide: false,
|
|
|
|
min: 300,
|
|
|
|
max: 600
|
|
|
|
}}, { // history versions
|
|
|
|
el: items[3],
|
|
|
|
rely: true,
|
|
|
|
resize: {
|
|
|
|
hidden: true,
|
|
|
|
autohide: false,
|
|
|
|
min: 300,
|
|
|
|
max: 600
|
|
|
|
}
|
|
|
|
}, { // sdk
|
|
|
|
el: items[1],
|
|
|
|
stretch: true
|
|
|
|
}, { // right menu
|
|
|
|
el: $(items[2]).hide(),
|
|
|
|
rely: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
applyEditorMode: function() {
|
|
|
|
var me = this,
|
|
|
|
toolbarView = DE.getController('Toolbar').getView('Toolbar'),
|
|
|
|
rightMenuView = DE.getController('RightMenu').getView('RightMenu'),
|
|
|
|
statusBarView = DE.getController('Statusbar').getView('Statusbar');
|
|
|
|
|
2016-06-30 08:56:15 +00:00
|
|
|
me._toolbar = toolbarView.render(this.mode);
|
2016-03-11 00:48:53 +00:00
|
|
|
me._rightMenu = rightMenuView.render(this.mode);
|
|
|
|
|
|
|
|
var value = Common.localStorage.getItem('de-hidden-status');
|
|
|
|
if (value !== null && parseInt(value) == 1)
|
|
|
|
statusBarView.setVisible(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
setMode: function(mode) {
|
|
|
|
if (mode.isDisconnected) {
|
|
|
|
/** coauthoring begin **/
|
|
|
|
if (_.isUndefined(this.mode))
|
|
|
|
this.mode = {};
|
|
|
|
|
|
|
|
this.mode.canCoAuthoring = false;
|
|
|
|
/** coauthoring end **/
|
|
|
|
} else {
|
|
|
|
this.mode = mode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|