web-apps/apps/common/main/lib/controller/Transitions.js

213 lines
10 KiB
JavaScript
Raw Normal View History

2021-07-16 14:31:23 +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
*
*/
/**
2021-07-17 10:47:50 +00:00
* Transitions.js
2021-07-16 14:31:23 +00:00
*
2021-07-17 10:47:50 +00:00
* Created by Olga.Transitions on 15.07.21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
2021-07-16 14:31:23 +00:00
*
*/
if (Common === undefined)
var Common = {};
Common.Controllers = Common.Controllers || {};
define([
'core',
'common/main/lib/view/Transitions',
], function () {
'use strict';
Common.Controllers.Transitions = Backbone.Controller.extend(_.extend({
models : [],
collections : [
],
views : [
2021-07-17 10:47:50 +00:00
'Common.Views.Transitions'
2021-07-16 14:31:23 +00:00
],
sdkViewName : '#id_main',
initialize: function () {
this.addListeners({
2021-07-17 10:47:50 +00:00
/*'FileMenu': {
2021-07-16 14:31:23 +00:00
'settings:apply': this.applySettings.bind(this)
2021-07-17 10:47:50 +00:00
},*/
2021-07-16 14:31:23 +00:00
'Common.Views.Transitions': {
2021-07-17 10:47:50 +00:00
//'transit:accept': _.bind(this.onAcceptClick, this),
//'transit:reject': _.bind(this.onRejectClick, this),
//'transit:delete': _.bind(this.onDeleteClick, this),
//'transit:preview': _.bind(this.onBtnPreviewClick, this),
//'transit:view': _.bind(this.onReviewViewClick, this),
//'transit:compare': _.bind(this.onCompareClick, this),
//'lang:document': _.bind(this.onDocLanguage, this)
/*,
'collaboration:coauthmode': _.bind(this.onCoAuthMode, this)*/
2021-07-16 14:31:23 +00:00
},
'Common.Views.ReviewChangesDialog': {
2021-07-17 10:47:50 +00:00
//'transit:accept': _.bind(this.onAcceptClick, this),
//'transit:reject': _.bind(this.onRejectClick, this),
//'transit:preview': _.bind(this.onBtnPreviewClick, this)
2021-07-16 14:31:23 +00:00
},
'Common.Views.ReviewPopover': {
2021-07-17 10:47:50 +00:00
//'transit:accept': _.bind(this.onAcceptClick, this),
//'transit:reject': _.bind(this.onRejectClick, this),
//'transit:delete': _.bind(this.onDeleteClick, this),
//'transit:goto': _.bind(this.onGotoClick, this)
2021-07-16 14:31:23 +00:00
}
});
},
onLaunch: function () {
2021-07-17 10:47:50 +00:00
//this.collection = this.getApplication().getCollection('Common.Collections.ReviewChanges');
2021-07-16 14:31:23 +00:00
this._state = {posx: -1000, posy: -1000, popoverVisible: false, previewMode: false, compareSettings: null /*new AscCommon.CComparisonPr()*/};
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
2021-07-17 10:47:50 +00:00
},
2021-07-16 14:31:23 +00:00
setConfig: function (data, api) {
this.setApi(api);
if (data) {
this.currentUserId = data.config.user.id;
this.sdkViewName = data['sdkviewname'] || this.sdkViewName;
}
return this;
},
setApi: function (api) {
if (api) {
this.api = api;
2021-07-17 10:47:50 +00:00
/*if (this.appConfig.canReview || this.appConfig.canViewReview) {
2021-07-16 14:31:23 +00:00
this.api.asc_registerCallback('asc_onShowRevisionsChange', _.bind(this.onApiShowChange, this));
this.api.asc_registerCallback('asc_onUpdateRevisionsChangesPosition', _.bind(this.onApiUpdateChangePosition, this));
this.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this));
this.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this));
}
if (this.appConfig.canReview)
2021-07-17 10:47:50 +00:00
this.api.asc_registerCallback('asc_onOnTrackRevisionsChange', _.bind(this.onApiTrackRevisionsChange, this));*/
//this.api.asc_registerCallback('asc_onAcceptChangesBeforeCompare',_.bind(this.onAcceptChangesBeforeCompare, this));
//this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this));
2021-07-16 14:31:23 +00:00
2021-07-17 10:47:50 +00:00
// Common.Gateway.on('setrevisedfile', _.bind(this.setRevisedFile, this));
2021-07-16 14:31:23 +00:00
}
},
setMode: function(mode) {
this.appConfig = mode;
this.popoverChanges = new Common.Collections.ReviewChanges();
this.view = this.createView('Common.Views.Transitions', { mode: mode });
2021-07-17 10:47:50 +00:00
return this;
2021-07-16 14:31:23 +00:00
},
loadDocument: function(data) {
this.document = data.doc;
},
SetDisabled: function(state) {
if (this.dlgChanges)
this.dlgChanges.close();
this.view && this.view.SetDisabled(state, this.langs);
2021-07-17 10:47:50 +00:00
//this.setPreviewMode(state);
2021-07-16 14:31:23 +00:00
},
createToolbarPanel: function() {
return this.view.getPanel();
},
getView: function(name) {
return !name && this.view ?
this.view : Backbone.Controller.prototype.getView.call(this, name);
},
onAppReady: function (config) {
var me = this;
if ( me.view && Common.localStorage.getBool(me.view.appPrefix + "settings-spellcheck", !(config.customization && config.customization.spellcheck===false)))
me.view.turnSpelling(true);
2021-07-17 10:47:50 +00:00
/*if ( config.canReview ) {
2021-07-16 14:31:23 +00:00
(new Promise(function (resolve) {
resolve();
})).then(function () {
// function _setReviewStatus(state, global) {
// me.view.turnChanges(state, global);
// !global && me.api.asc_SetLocalTrackRevisions(state);
// Common.Utils.InternalSettings.set(me.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0));
// };
2021-07-17 10:47:50 +00:00
/*var trackChanges = typeof (me.appConfig.customization) == 'object' ? me.appConfig.customization.trackChanges : undefined;
2021-07-16 14:31:23 +00:00
if (config.isReviewOnly || trackChanges!==undefined)
me.api.asc_SetLocalTrackRevisions(config.isReviewOnly || trackChanges===true);
else
me.onApiTrackRevisionsChange(me.api.asc_GetLocalTrackRevisions(), me.api.asc_GetGlobalTrackRevisions());
me.api.asc_HaveRevisionsChanges() && me.view.markChanges(true);
// _setReviewStatus(state, global);
if ( typeof (me.appConfig.customization) == 'object' && (me.appConfig.customization.showReviewChanges==true) ) {
me.dlgChanges = (new Common.Views.ReviewChangesDialog({
popoverChanges : me.popoverChanges,
mode : me.appConfig
}));
var sdk = $('#editor_sdk'),
offset = sdk.offset();
me.dlgChanges.show(Math.max(10, offset.left + sdk.width() - 300), Math.max(10, offset.top + sdk.height() - 150));
}
});
2021-07-17 10:47:50 +00:00
}*/ /*else if (config.canViewReview) {
2021-07-16 14:31:23 +00:00
config.canViewReview = (config.isEdit || me.api.asc_HaveRevisionsChanges(true)); // check revisions from all users
if (config.canViewReview) {
var val = Common.localStorage.getItem(me.view.appPrefix + "review-mode");
if (val===null)
val = me.appConfig.customization && /^(original|final|markup)$/i.test(me.appConfig.customization.reviewDisplay) ? me.appConfig.customization.reviewDisplay.toLocaleLowerCase() : 'original';
me.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); // load display mode only in viewer
me.view.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val);
}
2021-07-17 10:47:50 +00:00
}*/
2021-07-16 14:31:23 +00:00
2021-07-17 10:47:50 +00:00
/* if (me.view && me.view.btnChat) {
2021-07-16 14:31:23 +00:00
me.getApplication().getController('LeftMenu').leftMenu.btnChat.on('toggle', function(btn, state){
if (state !== me.view.btnChat.pressed)
me.view.turnChat(state);
});
2021-07-17 10:47:50 +00:00
}*/
2021-07-16 14:31:23 +00:00
if (me.view) {
me.view.btnCommentRemove && me.view.btnCommentRemove.setDisabled(!Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true));
me.view.btnCommentResolve && me.view.btnCommentResolve.setDisabled(!Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true));
}
2021-07-17 10:47:50 +00:00
}
2021-07-16 14:31:23 +00:00
}, Common.Controllers.Transitions || {}));
});