Main.js 75.9 KB
Newer Older
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 *
 * (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
 *
32
 */
Maxim Kadushkin's avatar
Maxim Kadushkin committed
33

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
/**
 *  Main.js
 *  Document Editor
 *
 *  Created by Maxim Kadushkin on 11/15/16
 *  Copyright (c) 2016 Ascensio System SIA. All rights reserved.
 *
 */

define([
    'core',
    'irregularstack',
    'common/main/lib/util/LocalStorage'
    ,'common/main/lib/util/LanguageInfo'
], function () {
    'use strict';

    SSE.Controllers.Main = Backbone.Controller.extend(_.extend((function() {
        var InitApplication = -254;
        var ApplyEditRights = -255;
        var LoadingDocument = -256;

        Common.localStorage.setId('table');
        Common.localStorage.setKeysFilter('sse-,asc.table');
        Common.localStorage.sync();

        return {
            models: [],
            collections: [],
            views: [],
Maxim Kadushkin's avatar
Maxim Kadushkin committed
64

65 66 67
            initialize: function() {
                //
            },
Maxim Kadushkin's avatar
Maxim Kadushkin committed
68

69 70
            onLaunch: function() {
                var me = this;
Maxim Kadushkin's avatar
Maxim Kadushkin committed
71

72 73 74 75
                me.stackLongActions = new Common.IrregularStack({
                    strongCompare   : function(obj1, obj2){return obj1.id === obj2.id && obj1.type === obj2.type;},
                    weakCompare     : function(obj1, obj2){return obj1.type === obj2.type;}
                });
Maxim Kadushkin's avatar
Maxim Kadushkin committed
76

77 78 79 80 81 82 83 84
                this._state = {
                    isDisconnected      : false,
                    usersCount          : 1,
                    fastCoauth          : true,
                    startModifyDocument : true,
                    lostEditingRights   : false,
                    licenseWarning      : false
                };
Maxim Kadushkin's avatar
Maxim Kadushkin committed
85

86
                // Initialize viewport
Maxim Kadushkin's avatar
Maxim Kadushkin committed
87

88 89 90 91 92
//                if (!Common.Utils.isBrowserSupported()){
//                    Common.Utils.showBrowserRestriction();
//                    Common.Gateway.reportError(undefined, this.unsupportedBrowserErrorText);
//                    return;
//                }
Maxim Kadushkin's avatar
Maxim Kadushkin committed
93

94
                // Initialize api
Maxim Kadushkin's avatar
Maxim Kadushkin committed
95

96
                // window["flat_desine"] = true;
Maxim Kadushkin's avatar
Maxim Kadushkin committed
97

98 99 100 101 102
                me.api = new Asc.spreadsheet_api({
                    'id-view'  : 'editor_sdk',
                    'id-input' : 'ce-cell-content'
                    ,'mobile'   : true
                });
Maxim Kadushkin's avatar
Maxim Kadushkin committed
103

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
                if (me.api){
                    var value = Common.localStorage.getItem("sse-settings-fontrender");
                    if (value===null) value = window.devicePixelRatio > 1 ? '1' : '3';
                    me.api.asc_setFontRenderingMode(parseInt(value));

                    Common.Utils.Metric.setCurrentMetric(1); //pt

                    me.api.asc_registerCallback('asc_onError',                      _.bind(me.onError, me));
                    me.api.asc_registerCallback('asc_onOpenDocumentProgress',       _.bind(me.onOpenDocument, me));
                    me.api.asc_registerCallback('asc_onAdvancedOptions',            _.bind(me.onAdvancedOptions, me));
                    me.api.asc_registerCallback('asc_onDocumentUpdateVersion',      _.bind(me.onUpdateVersion, me));
                    me.api.asc_registerCallback('asc_onPrintUrl',                   _.bind(me.onPrintUrl, me));
                    me.api.asc_registerCallback('asc_onDocumentName',               _.bind(me.onDocumentName, me));
                    me.api.asc_registerCallback('asc_onEndAction',                  _.bind(me.onLongActionEnd, me));
/**/
                    // this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onCoAuthoringDisconnect, this));
                    // this.api.asc_registerCallback('asc_onPrintUrl',              _.bind(this.onPrintUrl, this));
                    // this.api.asc_registerCallback('asc_onMeta',                  _.bind(this.onMeta, this));
/**/
                    Common.NotificationCenter.on('api:disconnect',                  _.bind(me.onCoAuthoringDisconnect, me));
                    Common.NotificationCenter.on('goback',                          _.bind(me.goBack, me));

                    // Initialize descendants
                    _.each(me.getApplication().controllers, function(controller) {
                        if (controller && _.isFunction(controller.setApi)) {
                            controller.setApi(me.api);
                        }
                    });
Maxim Kadushkin's avatar
Maxim Kadushkin committed
132

133 134 135 136
                    // Initialize api gateway
                    me.editorConfig = {};
                    me.appOptions   = {};
                    me.plugins      = undefined;
Maxim Kadushkin's avatar
Maxim Kadushkin committed
137

138 139 140 141 142 143 144 145 146 147 148
                    Common.Gateway.on('init',           _.bind(me.loadConfig, me));
                    Common.Gateway.on('showmessage',    _.bind(me.onExternalMessage, me));
                    Common.Gateway.on('opendocument',   _.bind(me.loadDocument, me));
                    Common.Gateway.ready();
                }
            },

            loadConfig: function(data) {
                this.editorConfig = $.extend(this.editorConfig, data.config);

                this.editorConfig.user          =
149
                this.appOptions.user            = Common.Utils.fillUserInfo(this.editorConfig.user, this.editorConfig.lang, this.textAnonymous);
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
                this.appOptions.nativeApp       = this.editorConfig.nativeApp === true;
                this.appOptions.isDesktopApp    = this.editorConfig.targetApp == 'desktop';
                this.appOptions.canCreateNew    = !_.isEmpty(this.editorConfig.createUrl) && !this.appOptions.isDesktopApp;
                this.appOptions.canOpenRecent   = this.editorConfig.nativeApp !== true && this.editorConfig.recent !== undefined && !this.appOptions.isDesktopApp;
                this.appOptions.templates       = this.editorConfig.templates;
                this.appOptions.recent          = this.editorConfig.recent;
                this.appOptions.createUrl       = this.editorConfig.createUrl;
                this.appOptions.lang            = this.editorConfig.lang;
                this.appOptions.location        = (typeof (this.editorConfig.location) == 'string') ? this.editorConfig.location.toLowerCase() : '';
                this.appOptions.sharingSettingsUrl = this.editorConfig.sharingSettingsUrl;
                this.appOptions.fileChoiceUrl   = this.editorConfig.fileChoiceUrl;
                this.appOptions.mergeFolderUrl  = this.editorConfig.mergeFolderUrl;
                this.appOptions.canAnalytics    = false;
                this.appOptions.customization   = this.editorConfig.customization;
                this.appOptions.canBackToFolder = (this.editorConfig.canBackToFolder!==false) && (typeof (this.editorConfig.customization) == 'object')
                    && (typeof (this.editorConfig.customization.goback) == 'object') && !_.isEmpty(this.editorConfig.customization.goback.url);
                this.appOptions.canBack         = this.editorConfig.nativeApp !== true && this.appOptions.canBackToFolder === true;
                this.appOptions.canPlugins      = false;
                this.plugins                    = this.editorConfig.plugins;

                if (this.editorConfig.lang)
                    this.api.asc_setLocale((this.editorConfig.lang) ? parseInt(Common.util.LanguageInfo.getLocalLanguageCode(this.editorConfig.lang)) : 0x0409);

               if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
                   Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
            },

            loadDocument: function(data) {
                this.appOptions.spreadsheet = data.doc;
                this.permissions = {};
                var docInfo = {};

                if ( data.doc ) {
                    this.permissions = $.extend(this.permissions, data.doc.permissions);

                    var _user = new Asc.asc_CUserInfo();
                    _user.put_Id(this.appOptions.user.id);
                    _user.put_FullName(this.appOptions.user.fullname);

                    docInfo = new Asc.asc_CDocInfo();
                    docInfo.put_Id(data.doc.key);
                    docInfo.put_Url(data.doc.url);
                    docInfo.put_Title(data.doc.title);
                    docInfo.put_Format(data.doc.fileType);
                    docInfo.put_VKey(data.doc.vkey);
                    docInfo.put_Options(data.doc.options);
                    docInfo.put_UserInfo(_user);
                    docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
198
                    docInfo.put_Token(data.doc.token);
199
                }
Maxim Kadushkin's avatar
Maxim Kadushkin committed
200

201 202 203
                this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this));
                this.api.asc_setDocInfo(docInfo);
                this.api.asc_getEditorPermissions(this.editorConfig.licenseUrl, this.editorConfig.customerId);
Maxim Kadushkin's avatar
Maxim Kadushkin committed
204

205
                Common.SharedSettings.set('document', data.doc);
Maxim Kadushkin's avatar
Maxim Kadushkin committed
206 207


208 209 210 211 212 213
                if (data.doc) {
                    this.getApplication()
                       .getController('Toolbar')
                       .setDocumentTitle(data.doc.title);
                }
            },
Maxim Kadushkin's avatar
Maxim Kadushkin committed
214

215 216
            setMode: function(mode){
                var me = this;
Maxim Kadushkin's avatar
Maxim Kadushkin committed
217

218
                Common.SharedSettings.set('mode', mode);
Maxim Kadushkin's avatar
Maxim Kadushkin committed
219

220 221 222
                if ( me.api ) {
                    me.api.asc_enableKeyEvents(mode == 'edit');
                    me.api.asc_setViewMode(mode != 'edit');
Maxim Kadushkin's avatar
Maxim Kadushkin committed
223

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
                    // Force on autosave if edit
                    if (mode == 'edit') {
                        me.api.asc_setAutoSaveGap(1);
                    }
                }
            },

            onProcessSaveResult: function(data) {
                this.api.asc_OnSaveEnd(data.result);
                if (data && data.result === false) {
                    uiApp.alert(
                        _.isEmpty(data.message) ? this.errorProcessSaveResult : data.message,
                        this.criticalErrorTitle
                    );
                }
            },

            onProcessRightsChange: function(data) {
                if (data && data.enabled === false) {
                    var me = this,
                        old_rights = this._state.lostEditingRights;
                    this._state.lostEditingRights = !this._state.lostEditingRights;
                    this.api.asc_coAuthoringDisconnect();

                    if (!old_rights) {
                        uiApp.alert(
                            _.isEmpty(data.message) ? this.warnProcessRightsChange : data.message,
                            this.notcriticalErrorTitle,
                            function () {
                                me._state.lostEditingRights = false;
                                me.onEditComplete();
                            }
                        );
                    }
                }
            },

            onDownloadAs: function() {
//                this._state.isFromGatewayDownloadAs = true;
//                var type = /^(?:(pdf|djvu|xps))$/.exec(this.document.fileType);
//                (type && typeof type[1] === 'string') ? this.api.asc_DownloadOrigin(true) : this.api.asc_DownloadAs(Asc.c_oAscFileType.DOCX, true);
            },


            disableEditing: function(disable) {
               var app = this.getApplication();
//                if (this.appOptions.canEdit && this.editorConfig.mode !== 'view') {
//                    app.getController('RightMenu').getView('RightMenu').clearSelection();
//                    app.getController('Toolbar').DisableToolbar(disable, disable);
//                    app.getController('RightMenu').SetDisabled(disable, false);
//                    app.getController('Statusbar').getView('Statusbar').SetDisabled(disable);
//
//                    var tooltip = app.getController('Toolbar').getView('Toolbar').synchTooltip;
//                    if (tooltip) tooltip.hide();
//                }
//                app.getController('LeftMenu').SetDisabled(disable, true);
            },

            goBack: function(blank) {
                var href = this.appOptions.customization.goback.url;
                if (blank) {
                    window.open(href, "_blank");
                } else {
                    parent.location.href = href;
                }
            },

            onEditComplete: function(cmp) {
////                this.getMainMenu().closeFullScaleMenu();
//                var application = this.getApplication(),
//                    toolbarController = application.getController('Toolbar'),
//                    toolbarView = toolbarController.getView('Toolbar');
//
//                if (this.appOptions.isEdit && toolbarView && (toolbarView.btnInsertShape.pressed || toolbarView.btnInsertText.pressed) &&
//                    ( !_.isObject(arguments[1]) || arguments[1].id !== 'id-toolbar-btn-insertshape')) { // TODO: Event from api is needed to clear btnInsertShape state
//                    if (this.api)
//                        this.api.StartAddShape('', false);
//
//                    toolbarView.btnInsertShape.toggle(false, false);
//                    toolbarView.btnInsertText.toggle(false, false);
//                }
//
//                application.getController('DocumentHolder').getView('DocumentHolder').focus();
//
//                if (this.api) {
//                    var cansave = this.api.asc_isDocumentCanSave();
//                    var isSyncButton = $('.btn-icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch');
//                    if (toolbarView.btnSave.isDisabled() !== (!cansave && !isSyncButton || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1))
//                        toolbarView.btnSave.setDisabled(!cansave && !isSyncButton || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1);
//                }
            },

            onLongActionBegin: function(type, id) {
                var action = {id: id, type: type};
                this.stackLongActions.push(action);
                this.setLongActionView(action);
            },

            onLongActionEnd: function(type, id) {
                var me = this,
                    action = {id: id, type: type};

                this.stackLongActions.pop(action);

                this.updateWindowTitle(true);

                if (type === Asc.c_oAscAsyncActionType.BlockInteraction && id == Asc.c_oAscAsyncAction.Open) {
                    Common.Gateway.internalMessage('documentReady', {});
                    this.onDocumentContentReady();
                }
Maxim Kadushkin's avatar
Maxim Kadushkin committed
334

335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
                action = this.stackLongActions.get({type: Asc.c_oAscAsyncActionType.Information});
                if (action) {
                    this.setLongActionView(action)
                } else {
                    if (this._state.fastCoauth && this._state.usersCount>1 && id==Asc.c_oAscAsyncAction['Save']) {
                        var me = this;
                        if (me._state.timerSave===undefined)
                            me._state.timerSave = setInterval(function(){
                                if ((new Date()) - me._state.isSaving>500) {
                                    clearInterval(me._state.timerSave);
                                    console.debug('End long action');
                                    me._state.timerSave = undefined;
                                }
                            }, 500);
                    } else {
                        console.debug('End long action');
                    }
Maxim Kadushkin's avatar
Maxim Kadushkin committed
352 353
                }

354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
                action = this.stackLongActions.get({type: Asc.c_oAscAsyncActionType.BlockInteraction});

                if (action) {
                    this.setLongActionView(action)
                } else {
                    _.delay(function () {
                        $(me.loadMask).hasClass('modal-in') && uiApp.closeModal(me.loadMask);
                    }, 200);
                }

                if (id==Asc.c_oAscAsyncAction['Save'] && (!this._state.fastCoauth || this._state.usersCount<2)) {
                    this.synchronizeChanges();
                }
            },

            setLongActionView: function(action) {
                var title = '', text = '';

                switch (action.id) {
                    case Asc.c_oAscAsyncAction['Open']:
                        title   = this.openTitleText;
                        text    = this.openTextText;
                        break;

                    case Asc.c_oAscAsyncAction['Save']:
                        this._state.isSaving = new Date();
                        title   = this.saveTitleText;
                        text    = this.saveTextText;
                        break;

                    case Asc.c_oAscAsyncAction['LoadDocumentFonts']:
                        title   = this.loadFontsTitleText;
                        text    = this.loadFontsTextText;
                        break;

                    case Asc.c_oAscAsyncAction['LoadDocumentImages']:
                        title   = this.loadImagesTitleText;
                        text    = this.loadImagesTextText;
                        break;

                    case Asc.c_oAscAsyncAction['LoadFont']:
                        title   = this.loadFontTitleText;
                        text    = this.loadFontTextText;
                        break;

                    case Asc.c_oAscAsyncAction['LoadImage']:
                        title   = this.loadImageTitleText;
                        text    = this.loadImageTextText;
                        break;

                    case Asc.c_oAscAsyncAction['DownloadAs']:
                        title   = this.downloadTitleText;
                        text    = this.downloadTextText;
                        break;

                    case Asc.c_oAscAsyncAction['Print']:
                        title   = this.printTitleText;
                        text    = this.printTextText;
                        break;

                    case Asc.c_oAscAsyncAction['UploadImage']:
                        title   = this.uploadImageTitleText;
                        text    = this.uploadImageTextText;
                        break;

                    case Asc.c_oAscAsyncAction['ApplyChanges']:
                        title   = this.applyChangesTitleText;
                        text    = this.applyChangesTextText;
                        break;

                    case Asc.c_oAscAsyncAction['PrepareToSave']:
                        title   = this.savePreparingText;
                        text    = this.savePreparingTitle;
                        break;

                    case Asc.c_oAscAsyncAction['MailMergeLoadFile']:
                        title   = this.mailMergeLoadFileText;
                        text    = this.mailMergeLoadFileTitle;
                        break;

                    case Asc.c_oAscAsyncAction['DownloadMerge']:
                        title   = this.downloadMergeTitle;
                        text    = this.downloadMergeText;
                        break;

                    case Asc.c_oAscAsyncAction['SendMailMerge']:
                        title   = this.sendMergeTitle;
                        text    = this.sendMergeText;
                        break;

                    case ApplyEditRights:
                        title   = this.txtEditingMode;
                        text    = this.txtEditingMode;
                        break;

                    case LoadingDocument:
                        title   = this.loadingDocumentTitleText;
                        text    = this.loadingDocumentTextText;
                        break;
                }

                if (action.type == Asc.c_oAscAsyncActionType['BlockInteraction']) {
                    if (!this.loadMask)
                        this.loadMask = uiApp.showPreloader(title);
                }
                else {
//                    this.getApplication().getController('Statusbar').setStatusCaption(text);
Maxim Kadushkin's avatar
Maxim Kadushkin committed
461
                }
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
            },

            onApplyEditRights: function(data) {
//                var application = this.getApplication();
//                application.getController('Statusbar').setStatusCaption('');
//
//                if (data) {
//                    if (data.allowed) {
//                        data.requestrights = true;
//                        this.appOptions.isEdit= true;
//
//                        this.onLongActionBegin(Asc.c_oAscAsyncActionType['BlockInteraction'],ApplyEditRights);
//
//                        var me = this;
//                        setTimeout(function(){
//                            me.applyModeCommonElements();
//                            me.applyModeEditorElements();
//                            me.api.asc_setViewMode(false);
//
//                            var timer_rp = setInterval(function(){
//                                clearInterval(timer_rp);
//
//                                var toolbarController           = application.getController('Toolbar'),
//                                    rightmenuController         = application.getController('RightMenu'),
//                                    leftmenuController          = application.getController('LeftMenu'),
//                                    documentHolderController    = application.getController('DocumentHolder'),
//                                    fontsControllers            = application.getController('Common.Controllers.Fonts');
//
//                                leftmenuController.setMode(me.appOptions).createDelayedElements();
//
//                                rightmenuController.createDelayedElements();
//
//                                Common.NotificationCenter.trigger('layout:changed', 'main');
//
//                                var timer_sl = setInterval(function(){
//                                    if (window.styles_loaded) {
//                                        clearInterval(timer_sl);
//
//                                        documentHolderController.getView('DocumentHolder').createDelayedElements();
//                                        documentHolderController.getView('DocumentHolder').changePosition();
//                                        me.loadLanguages();
//
//                                        var shapes = me.api.asc_getPropertyEditorShapes();
//                                        if (shapes)
//                                            me.fillAutoShapes(shapes[0], shapes[1]);
//
//                                        me.fillTextArt(me.api.asc_getTextArtPreviews());
//                                        me.updateThemeColors();
//                                        toolbarController.activateControls();
//
//                                        me.api.UpdateInterfaceState();
//                                    }
//                                }, 50);
//                            },50);
//                        }, 100);
//                    } else {
//                        Common.UI.info({
//                            title: this.requestEditFailedTitleText,
//                            msg: data.message || this.requestEditFailedMessageText
//                        });
//                    }
//                }
            },

            onDocumentContentReady: function() {
                if (this._isDocReady)
                    return;

                var me = this,
                    value;

                me._isDocReady = true;

                var worksheetsCount = this.api.asc_getWorksheetsCount();
                var i = me.api.asc_getActiveWorksheetIndex();
                me.api.asc_showWorksheet(i);
                me.api.asc_Resize();
                // me.api.asc_cleanSelection();

                me.hidePreloader();
                me.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);

                /** coauthoring begin **/
                // value = Common.localStorage.getItem("sse-settings-livecomment");
                // this.isLiveCommenting = !(value!==null && parseInt(value) == 0);
                // this.isLiveCommenting ? this.api.asc_showComments() : this.api.asc_hideComments();
                /** coauthoring end **/

                value = (this.appOptions.isEditMailMerge || this.appOptions.isEditDiagram) ? 100 : Common.localStorage.getItem("sse-settings-zoom");
                var zf = (value!==null) ? parseInt(value)/100 : (this.appOptions.customization && this.appOptions.customization.zoom ? parseInt(this.appOptions.customization.zoom)/100 : 1);
                this.api.asc_setZoom(zf>0 ? zf : 1);

                // value = Common.localStorage.getItem("de-show-hiddenchars");
                // me.api.put_ShowParaMarks((value!==null) ? eval(value) : false);
                //
                // value = Common.localStorage.getItem("de-show-tableline");
                // me.api.put_ShowTableEmptyLine((value!==null) ? eval(value) : true);
                //
                // value = Common.localStorage.getItem("de-settings-spellcheck");
                // me.api.asc_setSpellCheck(value===null || parseInt(value) == 1);

                // Common.localStorage.setItem("de-settings-showsnaplines", me.api.get_ShowSnapLines() ? 1 : 0);

                me.api.asc_registerCallback('asc_onStartAction',            _.bind(me.onLongActionBegin, me));
                me.api.asc_registerCallback('asc_onEndAction',              _.bind(me.onLongActionEnd, me));
                me.api.asc_registerCallback('asc_onCoAuthoringDisconnect',  _.bind(me.onCoAuthoringDisconnect, me));
                me.api.asc_registerCallback('asc_onPrint',                  _.bind(me.onPrint, me));

                var application = me.getApplication();
//                application.getController('Viewport')
//                    .getView('Common.Views.Header')
//                    .setDocumentCaption(me.api.asc_getDocumentName());

                me.updateWindowTitle(true);

                // value = Common.localStorage.getItem("de-settings-inputmode");
                // me.api.SetTextBoxInputMode(value!==null && parseInt(value) == 1);

                /** coauthoring begin **/
                // if (me.appOptions.isEdit && me.appOptions.canLicense && !me.appOptions.isOffline && me.appOptions.canCoAuthoring) {
                //     value = Common.localStorage.getItem("de-settings-coauthmode");
                //     me._state.fastCoauth = (value===null || parseInt(value) == 1);
                //     me.api.asc_SetFastCollaborative(me._state.fastCoauth);
                //
                //     value = Common.localStorage.getItem((me._state.fastCoauth) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict");
                //     if (value !== null)
                //         me.api.SetCollaborativeMarksShowType(value == 'all' ? Asc.c_oAscCollaborativeMarksShowType.All :
                //             value == 'none' ? Asc.c_oAscCollaborativeMarksShowType.None : Asc.c_oAscCollaborativeMarksShowType.LastChanges);
                //     else
                //         me.api.SetCollaborativeMarksShowType(me._state.fastCoauth ? Asc.c_oAscCollaborativeMarksShowType.None : Asc.c_oAscCollaborativeMarksShowType.LastChanges);
                // } else {
                //     me._state.fastCoauth = false;
                //     me.api.asc_SetFastCollaborative(me._state.fastCoauth);
                //     me.api.SetCollaborativeMarksShowType(Asc.c_oAscCollaborativeMarksShowType.None);
                // }
                /** coauthoring end **/

//                var toolbarController           = application.getController('Toolbar'),
//                    statusbarController         = application.getController('Statusbar'),
//                    documentHolderController    = application.getController('DocumentHolder'),
//                    fontsController             = application.getController('Common.Controllers.Fonts'),
//                    rightmenuController         = application.getController('RightMenu'),
//                    leftmenuController          = application.getController('LeftMenu'),
//                    chatController              = application.getController('Common.Controllers.Chat'),
//                    pluginsController           = application.getController('Common.Controllers.Plugins');
//
//                leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document});
//                leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api);
//
//                chatController.setApi(this.api).setMode(this.appOptions);
//                application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization});
//                application.getController('Common.Controllers.ExternalMergeEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization});
//
//                pluginsController.setApi(me.api);
//                me.updatePlugins(me.plugins);
//                me.api.asc_registerCallback('asc_onPluginsInit', _.bind(me.updatePluginsList, me));
//
//                documentHolderController.setApi(me.api);
//                documentHolderController.createDelayedElements();
//                statusbarController.createDelayedElements();
//
//                leftmenuController.getView('LeftMenu').disableMenu('all',false);
//
//                if (me.appOptions.canBranding)
//                    me.getApplication().getController('LeftMenu').leftMenu.getMenu('about').setLicInfo(me.editorConfig.customization);
//
//                documentHolderController.getView('DocumentHolder').setApi(me.api).on('editcomplete', _.bind(me.onEditComplete, me));

//                if (me.appOptions.isEdit) {
//                    value = Common.localStorage.getItem("de-settings-autosave");
//                    value = (!me._state.fastCoauth && value!==null) ? parseInt(value) : (me.appOptions.canCoAuthoring ? 1 : 0);
//
//                    me.api.asc_setAutoSaveGap(value);
//
//                    if (me.needToUpdateVersion)
//                        Common.NotificationCenter.trigger('api:disconnect');
//                    var timer_sl = setInterval(function(){
//                        if (window.styles_loaded) {
//                            clearInterval(timer_sl);
//
//                            toolbarController.createDelayedElements();
//
//                            documentHolderController.getView('DocumentHolder').createDelayedElements();
//                            me.loadLanguages();
//
//                            rightmenuController.createDelayedElements();
//
//                            var shapes = me.api.asc_getPropertyEditorShapes();
//                            if (shapes)
//                                me.fillAutoShapes(shapes[0], shapes[1]);
//
//                            me.updateThemeColors();
//                            toolbarController.activateControls();
//                            if (me.needToUpdateVersion)
//                                toolbarController.onApiCoAuthoringDisconnect();
//                            me.api.UpdateInterfaceState();
//                            me.fillTextArt(me.api.asc_getTextArtPreviews());
//                        }
//                    }, 50);
//                }
//
//                if (this.appOptions.canAnalytics && false)
//                    Common.component.Analytics.initialize('UA-12442749-13', 'Document Editor');

                Common.Gateway.on('applyeditrights',        _.bind(me.onApplyEditRights, me));
                Common.Gateway.on('processsaveresult',      _.bind(me.onProcessSaveResult, me));
                Common.Gateway.on('processrightschange',    _.bind(me.onProcessRightsChange, me));
                Common.Gateway.on('downloadas',             _.bind(me.onDownloadAs, me));

                Common.Gateway.sendInfo({
                    mode: me.appOptions.isEdit?'edit':'view'
Maxim Kadushkin's avatar
Maxim Kadushkin committed
673 674
                });

675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
//                if (this._state.licenseWarning) {
//                    value = Common.localStorage.getItem("de-license-warning");
//                    value = (value!==null) ? parseInt(value) : 0;
//                    var now = (new Date).getTime();
//                    if (now - value > 86400000) {
//                        Common.localStorage.setItem("de-license-warning", now);
//                        Common.UI.info({
//                            width: 500,
//                            title: this.textNoLicenseTitle,
//                            msg  : this.warnNoLicense,
//                            buttons: [
//                                {value: 'buynow', caption: this.textBuyNow},
//                                {value: 'contact', caption: this.textContactUs}
//                            ],
//                            primary: 'buynow',
//                            callback: function(btn) {
//                                if (btn == 'buynow')
//                                    window.open('http://www.onlyoffice.com/enterprise-edition.aspx', "_blank");
//                                else if (btn == 'contact')
//                                    window.open('mailto:sales@onlyoffice.com', "_blank");
//                            }
//                        });
//                    }
//                }
            },

            onOpenDocument: function(progress) {
                if (this.loadMask) {
                    var $title = $$(this.loadMask).find('.modal-title'),
                        proc = (progress.asc_getCurrentFont() + progress.asc_getCurrentImage())/(progress.asc_getFontsCount() + progress.asc_getImagesCount());

                    $title.text(this.textLoadingDocument + ': ' + Math.min(Math.round(proc * 100), 100) + '%');
                }
            },

            onEditorPermissions: function(params) {
                var me = this,
                    licType = params.asc_getLicenseType();

                if (Asc.c_oLicenseResult.Expired === licType ||
                    Asc.c_oLicenseResult.Error === licType ||
                    Asc.c_oLicenseResult.ExpiredTrial === licType) {
                    uiApp.modal({
                        title   : me.titleLicenseExp,
                        text    : me.warnLicenseExp
                    });
                    return;
                }

                me.permissions.review         = (me.permissions.review === undefined) ? (me.permissions.edit !== false) : me.permissions.review;
                me.appOptions.canAnalytics    = params.asc_getIsAnalyticsEnable();
                me.appOptions.canLicense      = (licType === Asc.c_oLicenseResult.Success);
                me.appOptions.isLightVersion  = params.asc_getIsLight();
                /** coauthoring begin **/
                me.appOptions.canCoAuthoring  = !me.appOptions.isLightVersion;
                /** coauthoring end **/
                me.appOptions.isOffline       = me.api.asc_isOffline();
                me.appOptions.isReviewOnly    = (me.permissions.review === true) && (me.permissions.edit === false);
                me.appOptions.canRequestEditRights = me.editorConfig.canRequestEditRights;
                me.appOptions.canEdit         = (me.permissions.edit !== false || me.permissions.review === true) && // can edit or review
                    (me.editorConfig.canRequestEditRights || me.editorConfig.mode !== 'view') && // if mode=="view" -> canRequestEditRights must be defined
                    (!me.appOptions.isReviewOnly || me.appOptions.canLicense); // if isReviewOnly==true -> canLicense must be true
                me.appOptions.isEdit          = me.appOptions.canLicense && me.appOptions.canEdit && me.editorConfig.mode !== 'view';
                me.appOptions.canReview       = me.appOptions.canLicense && me.appOptions.isEdit && (me.permissions.review===true);
                me.appOptions.canUseHistory   = me.appOptions.canLicense && !me.appOptions.isLightVersion && me.editorConfig.canUseHistory && me.appOptions.canCoAuthoring && !me.appOptions.isDesktopApp;
                me.appOptions.canHistoryClose  = me.editorConfig.canHistoryClose;
                me.appOptions.canHistoryRestore= me.editorConfig.canHistoryRestore && !!me.permissions.changeHistory;
                me.appOptions.canUseMailMerge= me.appOptions.canLicense && me.appOptions.canEdit && !me.appOptions.isDesktopApp;
                me.appOptions.canSendEmailAddresses  = me.appOptions.canLicense && me.editorConfig.canSendEmailAddresses && me.appOptions.canEdit && me.appOptions.canCoAuthoring;
                me.appOptions.canComments     = me.appOptions.canLicense && !((typeof (me.editorConfig.customization) == 'object') && me.editorConfig.customization.comments===false);
                me.appOptions.canChat         = me.appOptions.canLicense && !me.appOptions.isOffline && !((typeof (me.editorConfig.customization) == 'object') && me.editorConfig.customization.chat===false);
                me.appOptions.canEditStyles   = me.appOptions.canLicense && me.appOptions.canEdit;
                me.appOptions.canPrint        = (me.permissions.print !== false);

                me.appOptions.canDownload     = !me.appOptions.nativeApp && me.permissions.download !== false;

                me._state.licenseWarning = (licType===Asc.c_oLicenseResult.Connections) && me.appOptions.canEdit && me.editorConfig.mode !== 'view';

                me.appOptions.canBranding  = params.asc_getCanBranding() && (typeof me.editorConfig.customization == 'object');

                me.applyModeCommonElements();
                me.applyModeEditorElements();

                me.api.asc_setViewMode(/*!me.appOptions.isEdit*/false);
                me.api.asc_LoadDocument();
                // me.api.asc_Resize();

                if (!me.appOptions.isEdit) {
                    me.hidePreloader();
                    me.onLongActionBegin(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
                }
            },

            applyModeCommonElements: function() {
                var me = this;

                window.editor_elements_prepared = true;

                _.each(me.getApplication().controllers, function(controller) {
                    if (controller && _.isFunction(controller.setMode)) {
                        controller.setMode(me.editorConfig.mode);
                    }
                });


//                var app             = this.getApplication(),
//                    viewport        = app.getController('Viewport').getView('Viewport'),
//                    headerView      = app.getController('Viewport').getView('Common.Views.Header'),
//                    statusbarView   = app.getController('Statusbar').getView('Statusbar'),
//                    documentHolder  = app.getController('DocumentHolder').getView('DocumentHolder');
//
//                if (headerView) {
//                    headerView.setHeaderCaption(this.appOptions.isEdit ? 'Document Editor' : 'Document Viewer');
//                    headerView.setVisible(!this.appOptions.nativeApp && !value && !this.appOptions.isDesktopApp);
//                }
//
//                if (this.appOptions.nativeApp) {
//                    $('body').removeClass('safari');
//                }
//
//                viewport && viewport.setMode(this.appOptions);
//                statusbarView && statusbarView.setMode(this.appOptions);
//
//                documentHolder.setMode(this.appOptions);
//
                if (me.api) {
                    me.api.asc_registerCallback('asc_onSendThemeColors', _.bind(this.onSendThemeColors, this));

                    var translateChart = new Asc.asc_CChartTranslate();
                    translateChart.asc_setTitle(me.txtDiagramTitle);
                    translateChart.asc_setXAxis(me.txtXAxis);
                    translateChart.asc_setYAxis(me.txtYAxis);
                    translateChart.asc_setSeries(me.txtSeries);
                    me.api.asc_setChartTranslate(translateChart);

                    var translateArt = new Asc.asc_TextArtTranslate();
                    translateArt.asc_setDefaultText(me.txtArt);
                    me.api.asc_setTextArtTranslate(translateArt);
                }
            },

            applyModeEditorElements: function() {
                if (this.appOptions.isEdit) {
                    var me = this;
//                        application         = this.getApplication(),
//                        toolbarController   = application.getController('Toolbar'),
//                        rightmenuController = application.getController('RightMenu'),
//                        fontsControllers    = application.getController('Common.Controllers.Fonts'),
//                        reviewController    = (this.appOptions.canReview) ? application.getController('Common.Controllers.ReviewChanges') : null;
//
//                    fontsControllers    && fontsControllers.setApi(me.api);
//                    toolbarController   && toolbarController.setApi(me.api);
//
//                    /** coauthoring begin **/
//                    me.contComments.setMode(me.appOptions);
//                    me.contComments.setConfig({config: me.editorConfig}, me.api);
//                    /** coauthoring end **/
//                    rightmenuController && rightmenuController.setApi(me.api);
//
//                    if (reviewController)
//                        reviewController.setMode(me.appOptions).setConfig({config: me.editorConfig}, me.api);
//
//                    var viewport = this.getApplication().getController('Viewport').getView('Viewport');
//
//                    viewport.applyEditorMode();
//
//                    var toolbarView = (toolbarController) ? toolbarController.getView('Toolbar') : null;
//
//                    _.each([
//                        toolbarView,
//                        rightmenuController.getView('RightMenu')
//                    ], function(view) {
//                        if (view) {
//                            view.setApi(me.api);
//                            view.on('editcomplete', _.bind(me.onEditComplete, me));
//                            view.setMode(me.appOptions);
//                        }
//                    });
//
//                    if (toolbarView) {
//                        toolbarView.on('insertimage', _.bind(me.onInsertImage, me));
//                        toolbarView.on('inserttable', _.bind(me.onInsertTable, me));
//                        toolbarView.on('insertshape', _.bind(me.onInsertShape, me));
//                        toolbarView.on('inserttextart', _.bind(me.onInsertTextArt, me));
//                        toolbarView.on('insertchart', _.bind(me.onInsertChart, me));
//                    }
//
//                    var value = Common.localStorage.getItem('de-settings-unit');
//                    value = (value!==null) ? parseInt(value) : Common.Utils.Metric.getDefaultMetric();
//                    Common.Utils.Metric.setCurrentMetric(value);
//                    me.api.asc_SetDocumentUnits((value==Common.Utils.Metric.c_MetricUnits.inch) ? Asc.c_oAscDocumentUnits.Inch : ((value==Common.Utils.Metric.c_MetricUnits.pt) ? Asc.c_oAscDocumentUnits.Point : Asc.c_oAscDocumentUnits.Millimeter));

                    me.api.asc_registerCallback('asc_onDocumentModifiedChanged', _.bind(me.onDocumentModifiedChanged, me));
                    me.api.asc_registerCallback('asc_onDocumentCanSaveChanged',  _.bind(me.onDocumentCanSaveChanged, me));
                    me.api.asc_registerCallback('asc_onSaveUrl',                 _.bind(me.onSaveUrl, me));
                    me.api.asc_registerCallback('asc_onDownloadUrl',             _.bind(me.onDownloadUrl, me));
                    /** coauthoring begin **/
                    me.api.asc_registerCallback('asc_onCollaborativeChanges',    _.bind(me.onCollaborativeChanges, me));
                    me.api.asc_registerCallback('asc_OnTryUndoInFastCollaborative',_.bind(me.onTryUndoInFastCollaborative, me));
                    me.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(me.onAuthParticipantsChanged, me));
                    me.api.asc_registerCallback('asc_onParticipantsChanged',     _.bind(me.onAuthParticipantsChanged, me));
                    /** coauthoring end **/

                    if (me.stackLongActions.exist({id: ApplyEditRights, type: Asc.c_oAscAsyncActionType['BlockInteraction']})) {
                        me.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], ApplyEditRights);
                    } else if (!this._isDocReady) {
                        me.hidePreloader();
                        me.onLongActionBegin(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
                    }

                    // Message on window close
                    window.onbeforeunload = _.bind(me.onBeforeUnload, me);
                    window.onunload = _.bind(me.onUnload, me);
                }
            },

            onExternalMessage: function(msg) {
                if (msg && msg.msg) {
                    msg.msg = (msg.msg).toString();
                    uiApp.addNotification({
                        title: 'ONLYOFFICE',
                        message: [msg.msg.charAt(0).toUpperCase() + msg.msg.substring(1)]
                    });

                    Common.component.Analytics.trackEvent('External Error', msg.title);
                }
            },

            onError: function(id, level, errData) {
                this.hidePreloader();
                this.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);

                var config = {
                    closable: false
                };

                switch (id)
                {
                    case Asc.c_oAscError.ID.Unknown:
                        config.msg = this.unknownErrorText;
                        break;

                    case Asc.c_oAscError.ID.ConvertationTimeout:
                        config.msg = this.convertationTimeoutText;
                        break;

                    case Asc.c_oAscError.ID.ConvertationOpenError:
                        config.msg = this.openErrorText;
                        break;

                    case Asc.c_oAscError.ID.ConvertationSaveError:
                        config.msg = this.saveErrorText;
                        break;

                    case Asc.c_oAscError.ID.DownloadError:
                        config.msg = this.downloadErrorText;
                        break;

                    case Asc.c_oAscError.ID.UplImageSize:
                        config.msg = this.uploadImageSizeMessage;
                        break;

                    case Asc.c_oAscError.ID.UplImageExt:
                        config.msg = this.uploadImageExtMessage;
                        break;

                    case Asc.c_oAscError.ID.UplImageFileCount:
                        config.msg = this.uploadImageFileCountMessage;
                        break;

                    case Asc.c_oAscError.ID.SplitCellMaxRows:
                        config.msg = this.splitMaxRowsErrorText.replace('%1', errData.get_Value());
                        break;

                    case Asc.c_oAscError.ID.SplitCellMaxCols:
                        config.msg = this.splitMaxColsErrorText.replace('%1', errData.get_Value());
                        break;

                    case Asc.c_oAscError.ID.SplitCellRowsDivider:
                        config.msg = this.splitDividerErrorText.replace('%1', errData.get_Value());
                        break;

                    case Asc.c_oAscError.ID.VKeyEncrypt:
                        config.msg = this.errorKeyEncrypt;
                        break;

                    case Asc.c_oAscError.ID.KeyExpire:
                        config.msg = this.errorKeyExpire;
                        break;

                    case Asc.c_oAscError.ID.UserCountExceed:
                        config.msg = this.errorUsersExceed;
                        break;

                    case Asc.c_oAscError.ID.CoAuthoringDisconnect:
                        config.msg = (this.appOptions.isEdit) ? this.errorCoAuthoringDisconnect : this.errorViewerDisconnect;
                        break;

                    case Asc.c_oAscError.ID.ConvertationPassword:
                        config.msg = this.errorFilePassProtect;
                        break;

                    case Asc.c_oAscError.ID.StockChartError:
                        config.msg = this.errorStockChart;
                        break;

                    case Asc.c_oAscError.ID.DataRangeError:
                        config.msg = this.errorDataRange;
                        break;

                    case Asc.c_oAscError.ID.Database:
                        config.msg = this.errorDatabaseConnection;
                        break;

                    case Asc.c_oAscError.ID.UserDrop:
                        if (this._state.lostEditingRights) {
                            this._state.lostEditingRights = false;
                            return;
                        }
                        this._state.lostEditingRights = true;
                        config.msg = this.errorUserDrop;
                        break;

                    case Asc.c_oAscError.ID.MailMergeLoadFile:
                        config.msg = this.errorMailMergeLoadFile;
                        break;

                    case Asc.c_oAscError.ID.MailMergeSaveFile:
                        config.msg = this.errorMailMergeSaveFile;
                        break;

                    case Asc.c_oAscError.ID.Warning:
                        config.msg = this.errorConnectToServer;
                        break;

                    default:
                        config.msg = this.errorDefaultMessage.replace('%1', id);
                        break;
                }


                if (level == Asc.c_oAscError.Level.Critical) {

                    // report only critical errors
                    Common.Gateway.reportError(id, config.msg);

                    config.title = this.criticalErrorTitle;
//                    config.iconCls = 'error';

                    if (this.appOptions.canBackToFolder) {
                        config.msg += '</br></br>' + this.criticalErrorExtText;
                        config.callback = function() {
                            Common.NotificationCenter.trigger('goback');
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1028 1029
                        }
                    }
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
                }
                else {
                    config.title    = this.notcriticalErrorTitle;
//                    config.iconCls  = 'warn';
//                    config.buttons  = ['ok'];
                    config.callback = _.bind(function(btn){
                        if (id == Asc.c_oAscError.ID.Warning && btn == 'ok' && (this.appOptions.canDownload || this.appOptions.canDownloadOrigin)) {
                            Common.UI.Menu.Manager.hideAll();
                            if (this.appOptions.isDesktopApp && this.appOptions.isOffline)
                                this.api.asc_DownloadAs();
                            else
                                (this.appOptions.canDownload) ? this.getApplication().getController('LeftMenu').leftMenu.showMenu('file:saveas') : this.api.asc_DownloadOrigin();
                        }
                        this._state.lostEditingRights = false;
                        this.onEditComplete();
                    }, this);
                }

//                Common.UI.alert(config);
                uiApp.modal({
                    title   : config.title,
                    text    : config.msg,
                    buttons: [
                        {
                            text: 'OK',
                            onClick: config.callback
                        }
                    ]
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1058 1059
                });

1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
                Common.component.Analytics.trackEvent('Internal Error', id.toString());
            },

            onCoAuthoringDisconnect: function() {
//                this.getApplication().getController('Viewport').getView('Viewport').setMode({isDisconnected:true});
                this._state.isDisconnected = true;
            },

            updateWindowTitle: function(force) {
                var isModified = this.api.asc_isDocumentModified();
                if (this._state.isDocModified !== isModified || force) {
                    var title = this.defaultTitleText;

//                    var headerView = this.getApplication()
//                        .getController('Viewport')
//                        .getView('Common.Views.Header');
//
//                    if (!_.isEmpty(headerView.getDocumentCaption()))
//                        title = headerView.getDocumentCaption() + ' - ' + title;
//
//                    if (isModified) {
//                        if (!_.isUndefined(title) && (!this._state.fastCoauth || this._state.usersCount<2 )) {
//                            title = '* ' + title;
//                            headerView.setDocumentCaption(headerView.getDocumentCaption() + '*', true);
//                        }
//                    } else {
//                        headerView.setDocumentCaption(headerView.getDocumentCaption());
//                    }

                    if (window.document.title != title)
                        window.document.title = title;

                    if (!this._state.fastCoauth || this._state.usersCount<2 )
                        Common.Gateway.setDocumentModified(isModified);
                    else if ( this._state.startModifyDocument!==undefined && this._state.startModifyDocument === isModified){
                        Common.Gateway.setDocumentModified(isModified);
                        this._state.startModifyDocument = (this._state.startModifyDocument) ? !this._state.startModifyDocument : undefined;
                    }
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1098

1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
                    this._state.isDocModified = isModified;
                }
            },

            onDocumentModifiedChanged: function() {
                if (this._state.fastCoauth && this._state.usersCount > 1 && this._state.startModifyDocument===undefined )
                    return;

                var isModified = this.api.asc_isDocumentCanSave();
                if (this._state.isDocModified !== isModified) {
                    Common.Gateway.setDocumentModified(this.api.asc_isDocumentModified());
                }

                this.updateWindowTitle();

//                var toolbarView = this.getApplication().getController('Toolbar').getView('Toolbar');
//
//                if (toolbarView) {
//                    var isSyncButton = $('.btn-icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch');
//                    if (toolbarView.btnSave.isDisabled() !== (!isModified && !isSyncButton || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1))
//                        toolbarView.btnSave.setDisabled(!isModified && !isSyncButton || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1);
//                }
            },
            onDocumentCanSaveChanged: function (isCanSave) {
//                var application = this.getApplication(),
//                    toolbarController = application.getController('Toolbar'),
//                    toolbarView = toolbarController.getView('Toolbar');
//
//                if (toolbarView && this.api) {
//                    var isSyncButton = $('.btn-icon', toolbarView.btnSave.cmpEl).hasClass('btn-synch');
//                    if (toolbarView.btnSave.isDisabled() !== (!isCanSave && !isSyncButton || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1))
//                        toolbarView.btnSave.setDisabled(!isCanSave && !isSyncButton || this._state.isDisconnected || this._state.fastCoauth && this._state.usersCount>1);
//                }
            },

            onBeforeUnload: function() {
                Common.localStorage.save();

                if (this.api.asc_isDocumentModified()) {
                    var me = this;
                    this.api.asc_stopSaving();
                    this.continueSavingTimer = window.setTimeout(function() {
                        me.api.asc_continueSaving();
                    }, 500);

                    return this.leavePageText;
                }
            },

            onUnload: function() {
                if (this.continueSavingTimer)
                    clearTimeout(this.continueSavingTimer);
            },

            hidePreloader: function() {
                $('#loading-mask').hide().remove();
            },

            onSaveUrl: function(url) {
                Common.Gateway.save(url);
            },

            onDownloadUrl: function(url) {
                if (this._state.isFromGatewayDownloadAs) {
                    Common.Gateway.downloadAs(url);
                }

                this._state.isFromGatewayDownloadAs = false;
            },

            onUpdateVersion: function(callback) {
                var me = this;
                me.needToUpdateVersion = true;
                me.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);

                uiApp.alert(
                    me.errorUpdateVersion,
                    me.titleUpdateVersion,
                    function () {
                        _.defer(function() {
                            Common.Gateway.updateVersion();

                            if (callback) {
                                callback.call(me);
                            }

                            me.onLongActionBegin(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument);
                        })
                });
            },

            onCollaborativeChanges: function() {
//                if (this._state.hasCollaborativeChanges) return;
//                this._state.hasCollaborativeChanges = true;
//                if (this.appOptions.isEdit)
//                    this.getApplication().getController('Statusbar').setStatusCaption(this.txtNeedSynchronize);
            },
            /** coauthoring end **/

            synchronizeChanges: function() {
//                this.getApplication().getController('Statusbar').synchronizeChanges();
//                this.getApplication().getController('DocumentHolder').getView('DocumentHolder').hideTips();
//                /** coauthoring begin **/
//                this.getApplication().getController('Toolbar').getView('Toolbar').synchronizeChanges();
//                /** coauthoring end **/
                this._state.hasCollaborativeChanges = false;
            },

            initNames: function() {
                this.shapeGroupNames = [
                    this.txtBasicShapes,
                    this.txtFiguredArrows,
                    this.txtMath,
                    this.txtCharts,
                    this.txtStarsRibbons,
                    this.txtCallouts,
                    this.txtButtons,
                    this.txtRectangles,
                    this.txtLines
                ];
            },

            fillAutoShapes: function(groupNames, shapes){
//                if (_.isEmpty(shapes) || _.isEmpty(groupNames) || shapes.length != groupNames.length)
//                    return;
//
//                var me = this,
//                    shapegrouparray = [],
//                    shapeStore = this.getCollection('ShapeGroups');
//
//                shapeStore.reset();
//
//                var groupscount = groupNames.length;
//                _.each(groupNames, function(groupName, index){
//                    var store = new Backbone.Collection([], {
//                        model: DE.Models.ShapeModel
//                    });
//
//                    var cols = (shapes[index].length) > 18 ? 7 : 6,
//                        height = Math.ceil(shapes[index].length/cols) * 35 + 3,
//                        width = 30 * cols;
//
//                    _.each(shapes[index], function(shape, idx){
//                        store.add({
//                            imageUrl : shape.Image,
//                            data     : {shapeType: shape.Type},
//                            tip      : me.textShape + ' ' + (idx+1),
//                            allowSelected : true,
//                            selected: false
//                        });
//                    });
//
//                    shapegrouparray.push({
//                        groupName   : me.shapeGroupNames[index],
//                        groupStore  : store,
//                        groupWidth  : width,
//                        groupHeight : height
//                    });
//                });
//
//                shapeStore.add(shapegrouparray);
//
//                setTimeout(function(){
//                    me.getApplication().getController('Toolbar').fillAutoShapes();
//                }, 50);

            },

            fillTextArt: function(shapes){
//                if (_.isEmpty(shapes)) return;
//
//                var me = this, arr = [],
//                    artStore = this.getCollection('Common.Collections.TextArt');
//
//                _.each(shapes, function(shape, index){
//                    arr.push({
//                        imageUrl : shape,
//                        data     : index,
//                        allowSelected : true,
//                        selected: false
//                    });
//                });
//                artStore.reset(arr);
//
//                setTimeout(function(){
//                    me.getApplication().getController('Toolbar').fillTextArt();
//                }, 50);
//
//                setTimeout(function(){
//                    me.getApplication().getController('RightMenu').fillTextArt();
//                }, 50);

            },

            updateThemeColors: function() {
//                var me = this;
//                setTimeout(function(){
//                    me.getApplication().getController('RightMenu').UpdateThemeColors();
//                }, 50);
//                setTimeout(function(){
//                    me.getApplication().getController('DocumentHolder').getView('DocumentHolder').updateThemeColors();
//                }, 50);
//
//                setTimeout(function(){
//                    me.getApplication().getController('Toolbar').updateThemeColors();
//                }, 50);
            },

            onSendThemeColors: function(colors, standart_colors) {
               Common.Utils.ThemeColor.setColors(colors, standart_colors);
//                if (window.styles_loaded) {
//                    this.updateThemeColors();
//                    this.fillTextArt(this.api.asc_getTextArtPreviews());
//                }
            },

            loadLanguages: function() {
//                var langs = this.api.asc_getSpellCheckLanguages();
//                this.getApplication().getController('DocumentHolder').getView('DocumentHolder').setLanguages(langs);
//                this.getApplication().getController('Statusbar').setLanguages(langs);
            },

            onAdvancedOptions: function(advOptions) {
//                var type = advOptions.asc_getOptionId(),
//                    me = this, dlg;
//                if (type == Asc.c_oAscAdvancedOptionsID.TXT) {
//                    dlg = new Common.Views.OpenDialog({
//                        type: type,
//                        codepages: advOptions.asc_getOptions().asc_getCodePages(),
//                        settings: advOptions.asc_getOptions().asc_getRecommendedSettings(),
//                        handler: function (encoding) {
//                            me.isShowOpenDialog = false;
//                            if (me && me.api) {
//                                me.api.asc_setAdvancedOptions(type, new Asc.asc_CTXTAdvancedOptions(encoding));
//                                me.loadMask && me.loadMask.show();
//                            }
//                        }
//                    });
//                } else if (type == Asc.c_oAscAdvancedOptionsID.DRM) {
//                    dlg = new Common.Views.OpenDialog({
//                        type: type,
//                        handler: function (value) {
//                            me.isShowOpenDialog = false;
//                            if (me && me.api) {
//                                me.api.asc_setAdvancedOptions(type, new Asc.asc_CDRMAdvancedOptions(value));
//                                me.loadMask && me.loadMask.show();
//                            }
//                        }
//                    });
//                }
//                if (dlg) {
//                    this.isShowOpenDialog = true;
//                    this.loadMask && this.loadMask.hide();
//                    this.onLongActionEnd(Asc.c_oAscAsyncActionType.BlockInteraction, LoadingDocument);
//                    dlg.show();
//                }
            },

            onTryUndoInFastCollaborative: function() {
//                var val = window.localStorage.getItem("de-hide-try-undoredo");
//                if (!(val && parseInt(val) == 1))
//                    Common.UI.info({
//                        width: 500,
//                        msg: this.textTryUndoRedo,
//                        iconCls: 'info',
//                        buttons: ['custom', 'cancel'],
//                        primary: 'custom',
//                        customButtonText: this.textStrict,
//                        dontshow: true,
//                        callback: _.bind(function(btn, dontshow){
//                            if (dontshow) window.localStorage.setItem("de-hide-try-undoredo", 1);
//                            if (btn == 'custom') {
//                                Common.localStorage.setItem("de-settings-coauthmode", 0);
//                                this.api.asc_SetFastCollaborative(false);
//                                this._state.fastCoauth = false;
//                                Common.localStorage.setItem("de-settings-showchanges-strict", 'last');
//                                this.api.SetCollaborativeMarksShowType(Asc.c_oAscCollaborativeMarksShowType.LastChanges);
//                            }
//                            this.fireEvent('editcomplete', this);
//                        }, this)
//                    });
            },

            onAuthParticipantsChanged: function(users) {
                var length = 0;
                _.each(users, function(item){
                    if (!item.asc_getView())
                        length++;
                });
                this._state.usersCount = length;
            },

            applySettings: function() {
                if (this.appOptions.isEdit && this.appOptions.canLicense && !this.appOptions.isOffline && this.appOptions.canCoAuthoring) {
                    var value = Common.localStorage.getItem("de-settings-coauthmode"),
                        oldval = this._state.fastCoauth;
                    this._state.fastCoauth = (value===null || parseInt(value) == 1);
                    if (this._state.fastCoauth && !oldval)
                        this.synchronizeChanges();
                }
            },

            onDocumentName: function(name) {
//                this.getApplication().getController('Viewport').getView('Common.Views.Header').setDocumentCaption(name);
                this.updateWindowTitle(true);
            },

            onPrint: function() {
                if (!this.appOptions.canPrint) return;

                if (this.api)
                    this.api.asc_Print(Common.Utils.isChrome || Common.Utils.isSafari || Common.Utils.isOpera); // if isChrome or isSafari or isOpera == true use asc_onPrintUrl event
                Common.component.Analytics.trackEvent('Print');
            },

            onPrintUrl: function(url) {
                if (this.iframePrint) {
                    this.iframePrint.parentNode.removeChild(this.iframePrint);
                    this.iframePrint = null;
                }
                if (!this.iframePrint) {
                    var me = this;
                    this.iframePrint = document.createElement("iframe");
                    this.iframePrint.id = "id-print-frame";
                    this.iframePrint.style.display = 'none';
                    this.iframePrint.style.visibility = "hidden";
                    this.iframePrint.style.position = "fixed";
                    this.iframePrint.style.right = "0";
                    this.iframePrint.style.bottom = "0";
                    document.body.appendChild(this.iframePrint);
                    this.iframePrint.onload = function() {
                        me.iframePrint.contentWindow.focus();
                        me.iframePrint.contentWindow.print();
                        me.iframePrint.contentWindow.blur();
                        window.focus();
                    };
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1435
                }
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
                if (url) this.iframePrint.src = url;
            },

            leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.',
            defaultTitleText: 'ONLYOFFICE Document Editor',
            criticalErrorTitle: 'Error',
            notcriticalErrorTitle: 'Warning',
            errorDefaultMessage: 'Error code: %1',
            criticalErrorExtText: 'Press "Ok" to back to document list.',
            openTitleText: 'Opening Document',
            openTextText: 'Opening document...',
            saveTitleText: 'Saving Document',
            saveTextText: 'Saving document...',
            loadFontsTitleText: 'Loading Data',
            loadFontsTextText: 'Loading data...',
            loadImagesTitleText: 'Loading Images',
            loadImagesTextText: 'Loading images...',
            loadFontTitleText: 'Loading Data',
            loadFontTextText: 'Loading data...',
            loadImageTitleText: 'Loading Image',
            loadImageTextText: 'Loading image...',
            downloadTitleText: 'Downloading Document',
            downloadTextText: 'Downloading document...',
            printTitleText: 'Printing Document',
            printTextText: 'Printing document...',
            uploadImageTitleText: 'Uploading Image',
            uploadImageTextText: 'Uploading image...',
            savePreparingText: 'Preparing to save',
            savePreparingTitle: 'Preparing to save. Please wait...',
            uploadImageSizeMessage: 'Maximium image size limit exceeded.',
            uploadImageExtMessage: 'Unknown image format.',
            uploadImageFileCountMessage: 'No images uploaded.',
            reloadButtonText: 'Reload Page',
            unknownErrorText: 'Unknown error.',
            convertationTimeoutText: 'Convertation timeout exceeded.',
            downloadErrorText: 'Download failed.',
            unsupportedBrowserErrorText : 'Your browser is not supported.',
            splitMaxRowsErrorText: 'The number of rows must be less than %1',
            splitMaxColsErrorText: 'The number of columns must be less than %1',
            splitDividerErrorText: 'The number of rows must be a divisor of %1',
            requestEditFailedTitleText: 'Access denied',
            requestEditFailedMessageText: 'Someone is editing this document right now. Please try again later.',
            txtNeedSynchronize: 'You have an updates',
            textLoadingDocument: 'Loading document',
            warnBrowserZoom: 'Your browser\'s current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.',
            warnBrowserIE9: 'The application has low capabilities on IE9. Use IE10 or higher',
            applyChangesTitleText: 'Loading Data',
            applyChangesTextText: 'Loading data...',
            errorKeyEncrypt: 'Unknown key descriptor',
            errorKeyExpire: 'Key descriptor expired',
            errorUsersExceed: 'Count of users was exceed',
            errorCoAuthoringDisconnect: 'Server connection lost. You can\'t edit anymore.',
            errorFilePassProtect: 'The document is password protected.',
            txtBasicShapes: 'Basic Shapes',
            txtFiguredArrows: 'Figured Arrows',
            txtMath: 'Math',
            txtCharts: 'Charts',
            txtStarsRibbons: 'Stars & Ribbons',
            txtCallouts: 'Callouts',
            txtButtons: 'Buttons',
            txtRectangles: 'Rectangles',
            txtLines: 'Lines',
            txtEditingMode: 'Set editing mode...',
            textAnonymous: 'Anonymous',
            loadingDocumentTitleText: 'Loading document',
            loadingDocumentTextText: 'Loading document...',
            warnProcessRightsChange: 'You have been denied the right to edit the file.',
            errorProcessSaveResult: 'Saving is failed.',
            textCloseTip: '\nClick to close the tip.',
            textShape: 'Shape',
            errorStockChart: 'Incorrect row order. To build a stock chart place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.',
            errorDataRange: 'Incorrect data range.',
            errorDatabaseConnection: 'External error.<br>Database connection error. Please, contact support.',
            titleUpdateVersion: 'Version changed',
            errorUpdateVersion: 'The file version has been changed. The page will be reloaded.',
            errorUserDrop: 'The file cannot be accessed right now.',
            txtDiagramTitle: 'Chart Title',
            txtXAxis: 'X Axis',
            txtYAxis: 'Y Axis',
            txtSeries: 'Seria',
            errorMailMergeLoadFile: 'Loading failed',
            mailMergeLoadFileText: 'Loading Data Source...',
            mailMergeLoadFileTitle: 'Loading Data Source',
            errorMailMergeSaveFile: 'Merge failed.',
            downloadMergeText: 'Downloading...',
            downloadMergeTitle: 'Downloading',
            sendMergeTitle: 'Sending Merge',
            sendMergeText: 'Sending Merge...',
            txtArt: 'Your text here',
            errorConnectToServer: ' The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.<br><br>' +
                'Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>',
            textTryUndoRedo: 'The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the \'Strict mode\' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.',
            textStrict: 'Strict mode',
            txtErrorLoadHistory: 'Loading history failed',
            textBuyNow: 'Visit website',
            textNoLicenseTitle: 'ONLYOFFICE open source version',
            warnNoLicense: 'You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.',
            textContactUs: 'Contact sales',
            errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download until the connection is restored.',
            warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
            titleLicenseExp: 'License expired',
            openErrorText: 'An error has occurred while opening the file',
            saveErrorText: 'An error has occurred while saving the file'
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1539
        }
1540
    })(), SSE.Controllers.Main || {}))
Maxim Kadushkin's avatar
Maxim Kadushkin committed
1541
});