web-apps/apps/documenteditor/main/app/view/Viewport.js

162 lines
5.8 KiB
JavaScript
Raw Normal View History

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,
2018-02-06 22:37:23 +00:00
items: [{
2018-02-03 13:10:38 +00:00
el: $container.find('> .layout-item#title').hide(),
alias: 'title',
2018-02-06 22:37:23 +00:00
height: Common.Utils.InternalSettings.get('document-title-height')
}, {
el: $container.find(' > .layout-item#toolbar'),
2018-01-23 17:35:16 +00:00
alias: 'toolbar',
2017-04-06 09:34:01 +00:00
// rely: true
2018-01-23 17:35:16 +00:00
height: Common.localStorage.getBool('de-compact-toolbar') ?
Common.Utils.InternalSettings.get('toolbar-height-compact') : Common.Utils.InternalSettings.get('toolbar-height-normal')
2016-03-11 00:48:53 +00:00
}, {
el: $container.find(' > .layout-item.middle'),
2016-03-11 00:48:53 +00:00
stretch: true
}, {
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);
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,
2017-04-10 13:39:03 +00:00
rightMenuView = DE.getController('RightMenu').getView('RightMenu');
2016-03-11 00:48:53 +00:00
me._rightMenu = rightMenuView.render(this.mode);
2017-04-10 13:41:07 +00:00
if ( Common.localStorage.getBool('de-hidden-status') )
DE.getController('Statusbar').getView('Statusbar').setVisible(false);
2016-03-11 00:48:53 +00:00
},
setMode: function(mode) {
if (mode.isDisconnected) {
/** coauthoring begin **/
if (_.isUndefined(this.mode))
this.mode = {};
this.mode.canCoAuthoring = false;
/** coauthoring end **/
} else {
this.mode = mode;
}
}
});
});