2016-04-01 13:17:09 +00:00
/ *
*
2019-01-17 13:05:03 +00:00
* ( c ) Copyright Ascensio System SIA 2010 - 2019
2016-04-01 13:17:09 +00:00
*
* This program is a free software product . You can redistribute it and / or
* modify it under the terms of the GNU Affero General Public License ( AGPL )
* version 3 as published by the Free Software Foundation . In accordance with
* Section 7 ( a ) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non - infringement
* of any third - party rights .
*
* This program is distributed WITHOUT ANY WARRANTY ; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . For
* details , see the GNU AGPL at : http : //www.gnu.org/licenses/agpl-3.0.html
*
2019-01-17 13:00:34 +00:00
* You can contact Ascensio System SIA at 20 A - 12 Ernesta Birznieka - Upisha
* street , Riga , Latvia , EU , LV - 1050.
2016-04-01 13:17:09 +00:00
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices , as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7 ( b ) of the License you must retain the original Product
* logo when distributing the program . Pursuant to Section 7 ( e ) we decline to
* grant you any rights under trademark law for use of our trademarks .
*
* All the Product ' s GUI elements , including illustrations and icon sets , as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution - ShareAlike 4.0 International . See the License
* terms at http : //creativecommons.org/licenses/by-sa/4.0/legalcode
*
* /
2016-03-11 00:48:53 +00:00
/ * *
* Main . js
*
* Main controller
*
* Created by Alexander Yuzhin on 1 / 15 / 14
2018-03-01 12:16:38 +00:00
* Copyright ( c ) 2018 Ascensio System SIA . All rights reserved .
2016-03-11 00:48:53 +00:00
*
* /
define ( [
'core' ,
'irregularstack' ,
'common/main/lib/component/Window' ,
'common/main/lib/component/LoadMask' ,
'common/main/lib/component/Tooltip' ,
'common/main/lib/controller/Fonts' ,
'common/main/lib/collection/TextArt' ,
'common/main/lib/view/OpenDialog' ,
2020-12-10 11:48:03 +00:00
'common/main/lib/view/UserNameDialog' ,
2016-11-21 13:17:59 +00:00
'common/main/lib/util/LocalStorage' ,
2016-03-11 00:48:53 +00:00
'documenteditor/main/app/collection/ShapeGroups' ,
2021-04-21 17:52:17 +00:00
'documenteditor/main/app/collection/EquationGroups' ,
2021-11-08 15:55:38 +00:00
'common/main/lib/controller/FocusManager' ,
'common/main/lib/controller/HintManager' ,
'common/main/lib/controller/LayoutManager'
2016-03-11 00:48:53 +00:00
] , function ( ) {
'use strict' ;
DE . Controllers . Main = Backbone . Controller . extend ( _ . extend ( ( function ( ) {
2017-04-21 13:36:06 +00:00
var appHeader ;
2016-03-11 00:48:53 +00:00
var ApplyEditRights = - 255 ;
var LoadingDocument = - 256 ;
var mapCustomizationElements = {
about : 'button#left-btn-about' ,
feedback : 'button#left-btn-support' ,
2016-10-28 13:38:33 +00:00
goback : '#fm-btn-back > a, #header-back > div'
} ;
var mapCustomizationExtElements = {
2016-10-21 13:47:46 +00:00
toolbar : '#viewport #toolbar' ,
2016-10-28 13:38:33 +00:00
leftMenu : '#viewport #left-menu, #viewport #id-toolbar-full-placeholder-btn-settings, #viewport #id-toolbar-short-placeholder-btn-settings' ,
rightMenu : '#viewport #right-menu' ,
2017-04-12 07:59:28 +00:00
statusBar : '#statusbar'
2016-03-11 00:48:53 +00:00
} ;
Common . localStorage . setId ( 'text' ) ;
Common . localStorage . setKeysFilter ( 'de-,asc.text' ) ;
Common . localStorage . sync ( ) ;
return {
models : [ ] ,
collections : [
'ShapeGroups' ,
'EquationGroups' ,
'Common.Collections.HistoryUsers' ,
'Common.Collections.TextArt'
] ,
views : [ ] ,
initialize : function ( ) {
this . addListeners ( {
'FileMenu' : {
'settings:apply' : _ . bind ( this . applySettings , this )
2017-11-24 06:31:34 +00:00
} ,
'Common.Views.ReviewChanges' : {
'settings:apply' : _ . bind ( this . applySettings , this )
2016-03-11 00:48:53 +00:00
}
} ) ;
2019-07-17 10:36:37 +00:00
var me = this ,
styleNames = [ 'Normal' , 'No Spacing' , 'Heading 1' , 'Heading 2' , 'Heading 3' , 'Heading 4' , 'Heading 5' ,
2020-01-21 13:13:43 +00:00
'Heading 6' , 'Heading 7' , 'Heading 8' , 'Heading 9' , 'Title' , 'Subtitle' , 'Quote' , 'Intense Quote' , 'List Paragraph' , 'footnote text' ,
2021-04-19 19:40:42 +00:00
'Caption' , 'endnote text' ] ,
2019-03-06 08:16:21 +00:00
translate = {
'Series' : this . txtSeries ,
'Diagram Title' : this . txtDiagramTitle ,
'X Axis' : this . txtXAxis ,
'Y Axis' : this . txtYAxis ,
'Your text here' : this . txtArt ,
"Error! Bookmark not defined." : this . txtBookmarkError ,
"above" : this . txtAbove ,
"below" : this . txtBelow ,
2019-04-30 10:38:53 +00:00
"on page " : this . txtOnPage + " " ,
2019-03-06 08:16:21 +00:00
"Header" : this . txtHeader ,
"Footer" : this . txtFooter ,
2019-04-30 10:38:53 +00:00
" -Section " : " " + this . txtSection + " " ,
"First Page " : this . txtFirstPage + " " ,
"Even Page " : this . txtEvenPage + " " ,
"Odd Page " : this . txtOddPage + " " ,
2019-03-06 08:16:21 +00:00
"Same as Previous" : this . txtSameAsPrev ,
"Current Document" : this . txtCurrentDocument ,
"No table of contents entries found." : this . txtNoTableOfContents ,
"Table of Contents" : this . txtTableOfContents ,
"Syntax Error" : this . txtSyntaxError ,
"Missing Operator" : this . txtMissOperator ,
"Missing Argument" : this . txtMissArg ,
"Number Too Large To Format" : this . txtTooLarge ,
"Zero Divide" : this . txtZeroDivide ,
"Is Not In Table" : this . txtNotInTable ,
"Index Too Large" : this . txtIndTooLarge ,
"The Formula Not In Table" : this . txtFormulaNotInTable ,
"Table Index Cannot be Zero" : this . txtTableInd ,
"Undefined Bookmark" : this . txtUndefBookmark ,
2019-04-30 11:11:24 +00:00
"Unexpected End of Formula" : this . txtEndOfFormula ,
2019-10-03 14:36:52 +00:00
"Hyperlink" : this . txtHyperlink ,
"Error! Main Document Only." : this . txtMainDocOnly ,
"Error! Not a valid bookmark self-reference." : this . txtNotValidBookmark ,
2019-12-12 07:37:28 +00:00
"Error! No text of specified style in document." : this . txtNoText ,
2021-03-26 21:36:57 +00:00
"Choose an item" : this . txtChoose ,
"Enter a date" : this . txtEnterDate ,
"Type equation here" : this . txtTypeEquation ,
2021-04-01 16:06:21 +00:00
"Click to load image" : this . txtClickToLoad ,
2021-04-29 21:07:29 +00:00
"None" : this . txtNone ,
2021-04-19 19:40:42 +00:00
"No table of figures entries found." : this . txtNoTableOfFigures ,
"table of figures" : this . txtTableOfFigures ,
"TOC Heading" : this . txtTOCHeading
2019-03-06 08:16:21 +00:00
} ;
2017-06-23 13:46:10 +00:00
styleNames . forEach ( function ( item ) {
2019-07-17 10:36:37 +00:00
translate [ item ] = me [ 'txtStyle_' + item . replace ( / /g , '_' ) ] || item ;
2017-06-23 13:46:10 +00:00
} ) ;
2019-07-17 10:36:37 +00:00
me . translationTable = translate ;
} ,
2017-06-23 13:46:10 +00:00
2019-07-17 10:36:37 +00:00
onLaunch : function ( ) {
var me = this ;
this . 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 ; }
2016-05-13 08:37:54 +00:00
} ) ;
2016-03-11 00:48:53 +00:00
2021-06-30 12:19:45 +00:00
this . stackDisableActions = new Common . IrregularStack ( {
strongCompare : function ( obj1 , obj2 ) { return obj1 . type === obj2 . type ; } ,
weakCompare : function ( obj1 , obj2 ) { return obj1 . type === obj2 . type ; }
} ) ;
2022-05-19 18:11:36 +00:00
this . stackMacrosRequests = [ ] ;
2021-03-09 14:06:44 +00:00
this . _state = { isDisconnected : false , usersCount : 1 , fastCoauth : true , lostEditingRights : false , licenseType : false , isDocModified : false } ;
2019-07-17 10:36:37 +00:00
this . languages = null ;
2020-04-22 09:35:55 +00:00
2019-07-17 10:36:37 +00:00
// Initialize viewport
if ( ! Common . Utils . isBrowserSupported ( ) ) {
Common . Utils . showBrowserRestriction ( ) ;
Common . Gateway . reportError ( undefined , this . unsupportedBrowserErrorText ) ;
return ;
}
// Initialize api
window [ "flat_desine" ] = true ;
this . api = this . getApplication ( ) . getController ( 'Viewport' ) . getApi ( ) ;
2020-11-06 09:00:43 +00:00
Common . UI . FocusManager . init ( ) ;
2021-07-12 16:33:05 +00:00
Common . UI . HintManager . init ( this . api ) ;
2021-02-06 10:03:46 +00:00
Common . UI . Themes . init ( this . api ) ;
2020-11-06 09:00:43 +00:00
2016-03-11 00:48:53 +00:00
if ( this . api ) {
2018-05-10 12:18:28 +00:00
this . api . SetDrawingFreeze ( true ) ;
2020-02-17 13:43:02 +00:00
var value = Common . localStorage . getBool ( "de-settings-cachemode" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-cachemode" , value ) ;
this . api . asc _setDefaultBlitMode ( ! ! value ) ;
value = Common . localStorage . getItem ( "de-settings-fontrender" ) ;
if ( value === null )
value = '0' ;
Common . Utils . InternalSettings . set ( "de-settings-fontrender" , value ) ;
2016-03-11 00:48:53 +00:00
switch ( value ) {
case '0' : this . api . SetFontRenderingMode ( 3 ) ; break ;
case '1' : this . api . SetFontRenderingMode ( 1 ) ; break ;
case '2' : this . api . SetFontRenderingMode ( 2 ) ; break ;
}
2022-12-11 10:40:41 +00:00
if ( ! Common . Utils . isIE ) {
if ( /^https?:\/\// . test ( '{{HELP_CENTER_WEB_DE}}' ) ) {
const _url _obj = new URL ( '{{HELP_CENTER_WEB_DE}}' ) ;
_url _obj . searchParams . set ( 'lang' , Common . Locale . getCurrentLanguage ( ) ) ;
Common . Utils . InternalSettings . set ( "url-help-center" , _url _obj . toString ( ) ) ;
}
}
2016-03-11 00:48:53 +00:00
this . api . asc _registerCallback ( 'asc_onError' , _ . bind ( this . onError , this ) ) ;
this . api . asc _registerCallback ( 'asc_onDocumentContentReady' , _ . bind ( this . onDocumentContentReady , this ) ) ;
this . api . asc _registerCallback ( 'asc_onOpenDocumentProgress' , _ . bind ( this . onOpenDocument , this ) ) ;
this . api . asc _registerCallback ( 'asc_onDocumentUpdateVersion' , _ . bind ( this . onUpdateVersion , this ) ) ;
2017-04-11 11:37:45 +00:00
this . api . asc _registerCallback ( 'asc_onServerVersion' , _ . bind ( this . onServerVersion , this ) ) ;
2016-03-11 00:48:53 +00:00
this . api . asc _registerCallback ( 'asc_onAdvancedOptions' , _ . bind ( this . onAdvancedOptions , this ) ) ;
this . api . asc _registerCallback ( 'asc_onDocumentName' , _ . bind ( this . onDocumentName , this ) ) ;
this . api . asc _registerCallback ( 'asc_onPrintUrl' , _ . bind ( this . onPrintUrl , this ) ) ;
2016-09-26 10:54:25 +00:00
this . api . asc _registerCallback ( 'asc_onMeta' , _ . bind ( this . onMeta , this ) ) ;
2017-04-19 08:28:40 +00:00
this . api . asc _registerCallback ( 'asc_onSpellCheckInit' , _ . bind ( this . loadLanguages , this ) ) ;
2016-03-11 00:48:53 +00:00
Common . NotificationCenter . on ( 'api:disconnect' , _ . bind ( this . onCoAuthoringDisconnect , this ) ) ;
Common . NotificationCenter . on ( 'goback' , _ . bind ( this . goBack , this ) ) ;
2020-12-14 19:45:30 +00:00
Common . NotificationCenter . on ( 'markfavorite' , _ . bind ( this . markFavorite , this ) ) ;
2019-07-24 14:33:29 +00:00
Common . NotificationCenter . on ( 'download:advanced' , _ . bind ( this . onAdvancedOptions , this ) ) ;
2019-10-03 13:10:06 +00:00
Common . NotificationCenter . on ( 'showmessage' , _ . bind ( this . onExternalMessage , this ) ) ;
2020-12-08 08:48:28 +00:00
Common . NotificationCenter . on ( 'showerror' , _ . bind ( this . onError , this ) ) ;
2021-06-29 21:31:55 +00:00
Common . NotificationCenter . on ( 'editing:disable' , _ . bind ( this . onEditingDisable , this ) ) ;
2016-03-11 00:48:53 +00:00
this . isShowOpenDialog = false ;
// Initialize api gateway
this . editorConfig = { } ;
this . appOptions = { } ;
Common . Gateway . on ( 'init' , _ . bind ( this . loadConfig , this ) ) ;
Common . Gateway . on ( 'showmessage' , _ . bind ( this . onExternalMessage , this ) ) ;
Common . Gateway . on ( 'opendocument' , _ . bind ( this . loadDocument , this ) ) ;
2021-05-06 11:37:46 +00:00
Common . Gateway . on ( 'grabfocus' , _ . bind ( this . onGrabFocus , this ) ) ;
2017-09-20 11:32:18 +00:00
Common . Gateway . appReady ( ) ;
2016-03-11 00:48:53 +00:00
// $(window.top).resize(_.bind(this.onDocumentResize, this));
this . getApplication ( ) . getController ( 'Viewport' ) . setApi ( this . api ) ;
this . getApplication ( ) . getController ( 'Statusbar' ) . setApi ( this . api ) ;
/** coauthoring begin **/
this . contComments = this . getApplication ( ) . getController ( 'Common.Controllers.Comments' ) ;
/** coauthoring end **/
// Syncronize focus with api
$ ( document . body ) . on ( 'focus' , 'input, textarea' , function ( e ) {
if ( ! /area_id/ . test ( e . target . id ) ) {
2019-04-15 10:41:08 +00:00
if ( /msg-reply/ . test ( e . target . className ) ) {
2016-03-11 00:48:53 +00:00
me . dontCloseDummyComment = true ;
2019-04-15 11:06:41 +00:00
me . beforeShowDummyComment = me . beforeCloseDummyComment = false ;
2020-04-15 12:17:51 +00:00
} else if ( /textarea-control/ . test ( e . target . className ) )
me . inTextareaControl = true ;
2020-04-22 09:35:55 +00:00
else if ( ! Common . Utils . ModalWindow . isVisible ( ) && /form-control/ . test ( e . target . className ) )
2018-03-15 11:38:53 +00:00
me . inFormControl = true ;
2016-03-11 00:48:53 +00:00
}
} ) ;
$ ( document . body ) . on ( 'blur' , 'input, textarea' , function ( e ) {
2020-04-22 09:35:55 +00:00
if ( ! Common . Utils . ModalWindow . isVisible ( ) ) {
2018-03-26 13:50:15 +00:00
if ( /form-control/ . test ( e . target . className ) )
me . inFormControl = false ;
2019-09-11 10:38:02 +00:00
if ( me . getApplication ( ) . getController ( 'LeftMenu' ) . getView ( 'LeftMenu' ) . getMenu ( 'file' ) . isVisible ( ) )
return ;
2016-10-14 13:58:57 +00:00
if ( ! e . relatedTarget ||
2018-10-30 11:05:00 +00:00
! /area_id/ . test ( e . target . id )
&& ! ( e . target . localName == 'input' && $ ( e . target ) . parent ( ) . find ( e . relatedTarget ) . length > 0 ) /* Check if focus in combobox goes from input to it's menu button or menu items, or from comment editing area to Ok/Cancel button */
2019-09-25 13:15:09 +00:00
&& ! ( e . target . localName == 'textarea' && $ ( e . target ) . closest ( '.asc-window' ) . find ( '.dropdown-menu' ) . find ( e . relatedTarget ) . length > 0 ) /* Check if focus in comment goes from textarea to it's email menu */
2016-10-14 13:58:57 +00:00
&& ( e . relatedTarget . localName != 'input' || ! /form-control/ . test ( e . relatedTarget . className ) ) /* Check if focus goes to text input with class "form-control" */
&& ( e . relatedTarget . localName != 'textarea' || /area_id/ . test ( e . relatedTarget . id ) ) ) /* Check if focus goes to textarea, but not to "area_id" */ {
2017-12-13 09:11:27 +00:00
if ( Common . Utils . isIE && e . originalEvent && e . originalEvent . target && /area_id/ . test ( e . originalEvent . target . id ) && ( e . originalEvent . target === e . originalEvent . srcElement ) )
return ;
2016-03-11 00:48:53 +00:00
me . api . asc _enableKeyEvents ( true ) ;
2019-04-12 12:15:06 +00:00
if ( me . dontCloseDummyComment && /msg-reply/ . test ( e . target . className ) ) {
2019-04-15 10:41:08 +00:00
if ( $ ( e . target ) . closest ( '.user-comment-item' ) . find ( e . relatedTarget ) . length < 1 ) /* Check if focus goes to buttons in the comment window */
2019-04-12 12:15:06 +00:00
me . dontCloseDummyComment = me . beforeCloseDummyComment = false ;
else
me . beforeCloseDummyComment = true ;
}
2020-04-15 12:17:51 +00:00
else if ( /textarea-control/ . test ( e . target . className ) )
me . inTextareaControl = false ;
2016-03-11 00:48:53 +00:00
}
}
} ) . on ( 'dragover' , function ( e ) {
var event = e . originalEvent ;
if ( event . target && $ ( event . target ) . closest ( '#editor_sdk' ) . length < 1 ) {
event . preventDefault ( ) ;
event . dataTransfer . dropEffect = "none" ;
return false ;
}
2019-02-21 10:40:03 +00:00
} ) . on ( 'dragstart' , function ( e ) {
var event = e . originalEvent ;
if ( event . target ) {
var target = $ ( event . target ) ;
if ( target . closest ( '.combobox' ) . length > 0 || target . closest ( '.dropdown-menu' ) . length > 0 ||
target . closest ( '.ribtab' ) . length > 0 || target . closest ( '.combo-dataview' ) . length > 0 ) {
event . preventDefault ( ) ;
}
}
2019-04-12 12:15:06 +00:00
} ) . on ( 'mouseup' , function ( e ) {
me . beforeCloseDummyComment && setTimeout ( function ( ) { // textbox in dummy comment lost focus
me . dontCloseDummyComment = me . beforeCloseDummyComment = false ;
} , 10 ) ;
2016-03-11 00:48:53 +00:00
} ) ;
2022-02-13 13:40:08 +00:00
Common . Utils . isChrome && $ ( document . body ) . on ( 'keydown' , 'textarea' , function ( e ) { // chromium bug890248 (Bug 39614)
if ( e . keyCode === Common . UI . Keys . PAGEUP || e . keyCode === Common . UI . Keys . PAGEDOWN ) {
setTimeout ( function ( ) {
$ ( '#viewport' ) . scrollLeft ( 0 ) ;
$ ( '#viewport' ) . scrollTop ( 0 ) ;
} , 0 ) ;
}
} ) ;
2016-03-11 00:48:53 +00:00
Common . NotificationCenter . on ( {
'modal:show' : function ( ) {
2020-04-22 09:35:55 +00:00
Common . Utils . ModalWindow . show ( ) ;
2016-03-11 00:48:53 +00:00
me . api . asc _enableKeyEvents ( false ) ;
} ,
'modal:close' : function ( dlg ) {
2020-04-22 09:35:55 +00:00
Common . Utils . ModalWindow . close ( ) ;
if ( ! Common . Utils . ModalWindow . isVisible ( ) )
2016-03-11 00:48:53 +00:00
me . api . asc _enableKeyEvents ( true ) ;
} ,
'modal:hide' : function ( dlg ) {
2020-04-22 09:35:55 +00:00
Common . Utils . ModalWindow . close ( ) ;
if ( ! Common . Utils . ModalWindow . isVisible ( ) )
2016-03-11 00:48:53 +00:00
me . api . asc _enableKeyEvents ( true ) ;
} ,
'settings:unitschanged' : _ . bind ( this . unitsChanged , this ) ,
2016-07-08 09:12:09 +00:00
'dataview:focus' : function ( e ) {
} ,
2016-03-11 00:48:53 +00:00
'dataview:blur' : function ( e ) {
2020-04-22 09:35:55 +00:00
if ( ! Common . Utils . ModalWindow . isVisible ( ) ) {
2016-07-08 09:12:09 +00:00
me . api . asc _enableKeyEvents ( true ) ;
}
2016-06-23 07:50:10 +00:00
} ,
2016-07-08 09:12:09 +00:00
'menu:show' : function ( e ) {
} ,
2017-04-12 09:45:16 +00:00
'menu:hide' : function ( e , isFromInputControl ) {
2020-04-22 09:35:55 +00:00
if ( ! Common . Utils . ModalWindow . isVisible ( ) && ! isFromInputControl )
2016-07-08 09:12:09 +00:00
me . api . asc _enableKeyEvents ( true ) ;
2016-03-11 00:48:53 +00:00
} ,
'edit:complete' : _ . bind ( me . onEditComplete , me )
} ) ;
this . initNames ( ) ; //for shapes
2017-04-06 06:55:47 +00:00
Common . util . Shortcuts . delegateShortcuts ( {
shortcuts : {
2018-07-26 14:14:41 +00:00
'command+s,ctrl+s,command+p,ctrl+p,command+k,ctrl+k,command+d,ctrl+d' : _ . bind ( function ( e ) {
2018-07-25 13:33:46 +00:00
e . preventDefault ( ) ;
e . stopPropagation ( ) ;
2017-04-06 06:55:47 +00:00
} , this )
}
} ) ;
2016-03-11 00:48:53 +00:00
}
2019-02-22 12:52:33 +00:00
2019-08-02 08:47:28 +00:00
me . defaultTitleText = '{{APP_TITLE_TEXT}}' ;
2020-07-14 09:46:15 +00:00
me . warnNoLicense = me . warnNoLicense . replace ( /%1/g , '{{COMPANY_NAME}}' ) ;
me . warnNoLicenseUsers = me . warnNoLicenseUsers . replace ( /%1/g , '{{COMPANY_NAME}}' ) ;
me . textNoLicenseTitle = me . textNoLicenseTitle . replace ( /%1/g , '{{COMPANY_NAME}}' ) ;
me . warnLicenseExceeded = me . warnLicenseExceeded . replace ( /%1/g , '{{COMPANY_NAME}}' ) ;
me . warnLicenseUsersExceeded = me . warnLicenseUsersExceeded . replace ( /%1/g , '{{COMPANY_NAME}}' ) ;
2016-03-11 00:48:53 +00:00
} ,
loadConfig : function ( data ) {
this . editorConfig = $ . extend ( this . editorConfig , data . config ) ;
2020-12-29 20:48:47 +00:00
this . appOptions . customization = this . editorConfig . customization ;
this . appOptions . canRenameAnonymous = ! ( ( typeof ( this . appOptions . customization ) == 'object' ) && ( typeof ( this . appOptions . customization . anonymous ) == 'object' ) && ( this . appOptions . customization . anonymous . request === false ) ) ;
this . appOptions . guestName = ( typeof ( this . appOptions . customization ) == 'object' ) && ( typeof ( this . appOptions . customization . anonymous ) == 'object' ) &&
( typeof ( this . appOptions . customization . anonymous . label ) == 'string' ) && this . appOptions . customization . anonymous . label . trim ( ) !== '' ?
Common . Utils . String . htmlEncode ( this . appOptions . customization . anonymous . label ) : this . textGuest ;
var value ;
if ( this . appOptions . canRenameAnonymous ) {
value = Common . localStorage . getItem ( "guest-username" ) ;
Common . Utils . InternalSettings . set ( "guest-username" , value ) ;
Common . Utils . InternalSettings . set ( "save-guest-username" , ! ! value ) ;
}
2022-11-09 11:45:46 +00:00
if ( this . appOptions . customization . font ) {
2022-11-11 12:03:51 +00:00
if ( this . appOptions . customization . font . name && typeof this . appOptions . customization . font . name === 'string' ) {
var arr = this . appOptions . customization . font . name . split ( ',' ) ;
2022-11-09 22:31:07 +00:00
for ( var i = 0 ; i < arr . length ; i ++ ) {
var item = arr [ i ] . trim ( ) ;
if ( item && ( /[\s0-9\.]/ ) . test ( item ) ) {
arr [ i ] = "'" + item + "'" ;
}
}
document . documentElement . style . setProperty ( "--font-family-base-custom" , arr . join ( ',' ) ) ;
}
2022-11-09 11:45:46 +00:00
}
2016-03-11 00:48:53 +00:00
this . editorConfig . user =
2021-05-25 13:39:12 +00:00
this . appOptions . user = Common . Utils . fillUserInfo ( this . editorConfig . user , this . editorConfig . lang , value ? ( value + ' (' + this . appOptions . guestName + ')' ) : this . textAnonymous ,
Common . localStorage . getItem ( "guest-id" ) || ( 'uid-' + Date . now ( ) ) ) ;
this . appOptions . user . anonymous && Common . localStorage . setItem ( "guest-id" , this . appOptions . user . id ) ;
2022-04-29 11:49:28 +00:00
this . appOptions . isDesktopApp = this . editorConfig . targetApp == 'desktop' || Common . Controllers . Desktop . isActive ( ) ;
2021-08-24 15:30:55 +00:00
this . appOptions . canCreateNew = this . editorConfig . canRequestCreateNew || ! _ . isEmpty ( this . editorConfig . createUrl ) || this . editorConfig . templates && this . editorConfig . templates . length ;
2017-04-10 13:11:09 +00:00
this . appOptions . canOpenRecent = this . editorConfig . recent !== undefined && ! this . appOptions . isDesktopApp ;
2016-03-11 00:48:53 +00:00
this . appOptions . templates = this . editorConfig . templates ;
this . appOptions . recent = this . editorConfig . recent ;
this . appOptions . createUrl = this . editorConfig . createUrl ;
2020-06-15 17:05:19 +00:00
this . appOptions . canRequestCreateNew = this . editorConfig . canRequestCreateNew ;
2016-03-11 00:48:53 +00:00
this . appOptions . lang = this . editorConfig . lang ;
2016-04-08 08:55:15 +00:00
this . appOptions . location = ( typeof ( this . editorConfig . location ) == 'string' ) ? this . editorConfig . location . toLowerCase ( ) : '' ;
2016-03-11 00:48:53 +00:00
this . appOptions . sharingSettingsUrl = this . editorConfig . sharingSettingsUrl ;
this . appOptions . fileChoiceUrl = this . editorConfig . fileChoiceUrl ;
this . appOptions . mergeFolderUrl = this . editorConfig . mergeFolderUrl ;
2018-09-27 10:25:30 +00:00
this . appOptions . saveAsUrl = this . editorConfig . saveAsUrl ;
2016-03-11 00:48:53 +00:00
this . appOptions . canAnalytics = false ;
2019-11-27 07:22:25 +00:00
this . appOptions . canRequestClose = this . editorConfig . canRequestClose ;
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 . editorConfig . customization . goback . requestClose && this . appOptions . canRequestClose ) ;
2017-04-10 13:11:09 +00:00
this . appOptions . canBack = this . appOptions . canBackToFolder === true ;
2016-05-19 09:46:21 +00:00
this . appOptions . canPlugins = false ;
2019-03-12 12:45:32 +00:00
this . appOptions . canMakeActionLink = this . editorConfig . canMakeActionLink ;
2019-04-23 11:41:35 +00:00
this . appOptions . canRequestUsers = this . editorConfig . canRequestUsers ;
2019-06-26 11:04:02 +00:00
this . appOptions . canRequestSendNotify = this . editorConfig . canRequestSendNotify ;
2019-07-26 09:54:20 +00:00
this . appOptions . canRequestSaveAs = this . editorConfig . canRequestSaveAs ;
2019-07-26 11:49:53 +00:00
this . appOptions . canRequestInsertImage = this . editorConfig . canRequestInsertImage ;
2019-10-11 12:12:59 +00:00
this . appOptions . canRequestCompareFile = this . editorConfig . canRequestCompareFile ;
2019-07-29 10:40:07 +00:00
this . appOptions . canRequestMailMergeRecipients = this . editorConfig . canRequestMailMergeRecipients ;
2019-11-28 13:54:14 +00:00
this . appOptions . canRequestSharingSettings = this . editorConfig . canRequestSharingSettings ;
2019-11-01 07:36:21 +00:00
this . appOptions . compatibleFeatures = ( typeof ( this . appOptions . customization ) == 'object' ) && ! ! this . appOptions . customization . compatibleFeatures ;
2021-12-09 10:50:52 +00:00
this . appOptions . canFeatureComparison = true ;
2021-12-05 09:12:27 +00:00
this . appOptions . canFeatureContentControl = true ;
this . appOptions . canFeatureForms = ! ! this . api . asc _isSupportFeature ( "forms" ) ;
2021-10-08 17:17:11 +00:00
2019-12-23 12:51:00 +00:00
this . appOptions . mentionShare = ! ( ( typeof ( this . appOptions . customization ) == 'object' ) && ( this . appOptions . customization . mentionShare == false ) ) ;
2016-03-11 00:48:53 +00:00
2020-12-29 20:48:47 +00:00
this . appOptions . user . guest && this . appOptions . canRenameAnonymous && Common . NotificationCenter . on ( 'user:rename' , _ . bind ( this . showRenameUserDialog , this ) ) ;
2020-12-11 10:08:13 +00:00
2017-04-21 13:36:06 +00:00
appHeader = this . getApplication ( ) . getController ( 'Viewport' ) . getView ( 'Common.Views.Header' ) ;
2020-08-04 19:20:20 +00:00
appHeader . setCanBack ( this . appOptions . canBackToFolder === true , ( this . appOptions . canBackToFolder ) ? this . editorConfig . customization . goback . text : '' ) ;
2016-03-11 00:48:53 +00:00
if ( this . editorConfig . lang )
this . api . asc _setLocale ( this . editorConfig . lang ) ;
2016-04-08 08:55:15 +00:00
if ( this . appOptions . location == 'us' || this . appOptions . location == 'ca' )
Common . Utils . Metric . setDefaultMetric ( Common . Utils . Metric . c _MetricUnits . inch ) ;
2018-02-21 23:23:32 +00:00
2020-12-18 10:23:14 +00:00
value = Common . localStorage . getItem ( "de-macros-mode" ) ;
2020-05-21 19:50:18 +00:00
if ( value === null ) {
value = this . editorConfig . customization ? this . editorConfig . customization . macrosMode : 'warn' ;
value = ( value == 'enable' ) ? 1 : ( value == 'disable' ? 2 : 0 ) ;
} else
value = parseInt ( value ) ;
Common . Utils . InternalSettings . set ( "de-macros-mode" , value ) ;
2022-05-19 18:11:36 +00:00
value = Common . localStorage . getItem ( "de-allow-macros-request" ) ;
Common . Utils . InternalSettings . set ( "de-allow-macros-request" , ( value !== null ) ? parseInt ( value ) : 0 ) ;
2021-05-12 16:04:14 +00:00
this . appOptions . wopi = this . editorConfig . wopi ;
2018-02-21 23:23:32 +00:00
Common . Controllers . Desktop . init ( this . appOptions ) ;
2016-03-11 00:48:53 +00:00
} ,
loadDocument : function ( data ) {
this . permissions = { } ;
this . document = data . doc ;
var docInfo = { } ;
if ( data . doc ) {
this . permissions = $ . extend ( this . permissions , data . doc . permissions ) ;
2022-05-16 16:53:13 +00:00
var _options = $ . extend ( { } , data . doc . options , this . editorConfig . actionLink || { } ) ;
2019-03-12 12:47:05 +00:00
var _user = new Asc . asc _CUserInfo ( ) ;
2016-03-11 00:48:53 +00:00
_user . put _Id ( this . appOptions . user . id ) ;
_user . put _FullName ( this . appOptions . user . fullname ) ;
2021-05-25 13:57:56 +00:00
_user . put _IsAnonymousUser ( ! ! this . appOptions . user . anonymous ) ;
2016-03-11 00:48:53 +00:00
2016-04-18 12:21:15 +00:00
docInfo = new Asc . asc _CDocInfo ( ) ;
2016-03-11 00:48:53 +00:00
docInfo . put _Id ( data . doc . key ) ;
docInfo . put _Url ( data . doc . url ) ;
2022-07-29 10:44:00 +00:00
docInfo . put _DirectUrl ( data . doc . directUrl ) ;
2016-03-11 00:48:53 +00:00
docInfo . put _Title ( data . doc . title ) ;
docInfo . put _Format ( data . doc . fileType ) ;
docInfo . put _VKey ( data . doc . vkey ) ;
2019-03-12 12:47:05 +00:00
docInfo . put _Options ( _options ) ;
2016-03-11 00:48:53 +00:00
docInfo . put _UserInfo ( _user ) ;
docInfo . put _CallbackUrl ( this . editorConfig . callbackUrl ) ;
2016-11-24 13:44:54 +00:00
docInfo . put _Token ( data . doc . token ) ;
2022-05-16 16:53:13 +00:00
docInfo . put _Permissions ( data . doc . permissions ) ;
2020-05-08 08:58:31 +00:00
docInfo . put _EncryptedInfo ( this . editorConfig . encryptionKeys ) ;
2021-08-31 13:12:30 +00:00
docInfo . put _Lang ( this . editorConfig . lang ) ;
docInfo . put _Mode ( this . editorConfig . mode ) ;
2022-04-19 15:59:18 +00:00
2020-05-21 16:30:57 +00:00
var enable = ! this . editorConfig . customization || ( this . editorConfig . customization . macros !== false ) ;
docInfo . asc _putIsEnabledMacroses ( ! ! enable ) ;
enable = ! this . editorConfig . customization || ( this . editorConfig . customization . plugins !== false ) ;
docInfo . asc _putIsEnabledPlugins ( ! ! enable ) ;
2016-03-11 00:48:53 +00:00
// docInfo.put_Review(this.permissions.review);
2017-10-23 12:19:07 +00:00
2021-09-13 13:53:44 +00:00
var type = /^(?:(pdf|djvu|xps|oxps))$/ . exec ( data . doc . fileType ) ;
2022-04-20 12:43:39 +00:00
var coEditMode = ( type && typeof type [ 1 ] === 'string' ) ? 'strict' : // offline viewer for pdf|djvu|xps|oxps
! ( this . editorConfig . coEditing && typeof this . editorConfig . coEditing == 'object' ) ? 'fast' : // fast by default
this . editorConfig . mode === 'view' && this . editorConfig . coEditing . change !== false ? 'fast' : // if can change mode in viewer - set fast for using live viewer
this . editorConfig . coEditing . mode || 'fast' ;
docInfo . put _CoEditingMode ( coEditMode ) ;
2017-10-23 12:19:07 +00:00
if ( type && typeof type [ 1 ] === 'string' ) {
this . permissions . edit = this . permissions . review = false ;
}
2016-03-11 00:48:53 +00:00
}
2021-02-11 12:52:38 +00:00
if ( ! ( this . editorConfig . customization && ( this . editorConfig . customization . toolbarNoTabs ||
( this . editorConfig . targetApp !== 'desktop' ) && ( this . editorConfig . customization . loaderName || this . editorConfig . customization . loaderLogo ) ) ) ) {
$ ( '#editor-container' ) . css ( 'overflow' , 'hidden' ) ;
$ ( '#editor-container' ) . append ( '<div class="doc-placeholder">' + '<div class="line"></div>' . repeat ( 20 ) + '</div>' ) ;
if ( this . editorConfig . mode == 'view' || ( this . permissions . edit === false && ! this . permissions . review ) )
$ ( '#editor-container' ) . find ( '.doc-placeholder' ) . css ( 'margin-top' , 19 ) ;
}
2021-10-08 17:17:11 +00:00
var type = data . doc ? /^(?:(docxf))$/ . exec ( data . doc . fileType ) : false ;
2021-12-05 09:12:27 +00:00
this . appOptions . isFormCreator = ! ! ( type && typeof type [ 1 ] === 'string' ) && this . appOptions . canFeatureForms ; // show forms only for docxf
2021-10-08 17:17:11 +00:00
2021-10-21 18:17:50 +00:00
type = data . doc ? /^(?:(oform))$/ . exec ( data . doc . fileType ) : false ;
2021-10-22 14:17:05 +00:00
if ( type && typeof type [ 1 ] === 'string' ) {
( this . permissions . fillForms === undefined ) && ( this . permissions . fillForms = ( this . permissions . edit !== false ) ) ;
this . permissions . edit = this . permissions . review = this . permissions . comment = false ;
}
2016-03-11 00:48:53 +00:00
this . api . asc _registerCallback ( 'asc_onGetEditorPermissions' , _ . bind ( this . onEditorPermissions , this ) ) ;
2017-11-22 12:20:51 +00:00
this . api . asc _registerCallback ( 'asc_onLicenseChanged' , _ . bind ( this . onLicenseChanged , this ) ) ;
2022-05-19 14:54:49 +00:00
this . api . asc _registerCallback ( 'asc_onMacrosPermissionRequest' , _ . bind ( this . onMacrosPermissionRequest , this ) ) ;
2020-05-21 16:30:57 +00:00
this . api . asc _registerCallback ( 'asc_onRunAutostartMacroses' , _ . bind ( this . onRunAutostartMacroses , this ) ) ;
2016-03-11 00:48:53 +00:00
this . api . asc _setDocInfo ( docInfo ) ;
this . api . asc _getEditorPermissions ( this . editorConfig . licenseUrl , this . editorConfig . customerId ) ;
if ( data . doc ) {
2017-04-21 13:36:06 +00:00
appHeader . setDocumentCaption ( data . doc . title ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onProcessSaveResult : function ( data ) {
this . api . asc _OnSaveEnd ( data . result ) ;
if ( data && data . result === false ) {
Common . UI . error ( {
title : this . criticalErrorTitle ,
msg : _ . isEmpty ( data . message ) ? this . errorProcessSaveResult : data . message
} ) ;
}
} ,
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 ( ) ;
2019-04-08 15:40:08 +00:00
Common . NotificationCenter . trigger ( 'collaboration:sharingdeny' ) ;
2016-11-10 12:38:26 +00:00
Common . NotificationCenter . trigger ( 'api:disconnect' ) ;
2016-03-11 00:48:53 +00:00
if ( ! old _rights )
Common . UI . warning ( {
title : this . notcriticalErrorTitle ,
2016-08-09 09:25:34 +00:00
maxwidth : 600 ,
2016-03-11 00:48:53 +00:00
msg : _ . isEmpty ( data . message ) ? this . warnProcessRightsChange : data . message ,
callback : function ( ) {
me . _state . lostEditingRights = false ;
me . onEditComplete ( ) ;
}
} ) ;
}
} ,
2017-10-24 11:23:15 +00:00
onDownloadAs : function ( format ) {
2019-01-10 14:20:59 +00:00
if ( ! this . appOptions . canDownload && ! this . appOptions . canDownloadOrigin ) {
Common . Gateway . reportError ( Asc . c _oAscError . ID . AccessDeny , this . errorAccessDeny ) ;
return ;
}
2016-09-19 07:41:02 +00:00
this . _state . isFromGatewayDownloadAs = true ;
2022-02-11 19:07:15 +00:00
var _format = ( format && ( typeof format == 'string' ) ) ? Asc . c _oAscFileType [ format . toUpperCase ( ) ] : null ,
_defaultFormat = null ,
2022-02-15 19:36:49 +00:00
textParams ,
2022-02-11 19:07:15 +00:00
_supported = [
Asc . c _oAscFileType . TXT ,
Asc . c _oAscFileType . RTF ,
Asc . c _oAscFileType . ODT ,
Asc . c _oAscFileType . DOCX ,
Asc . c _oAscFileType . HTML ,
Asc . c _oAscFileType . DOTX ,
Asc . c _oAscFileType . OTT ,
Asc . c _oAscFileType . FB2 ,
Asc . c _oAscFileType . EPUB ,
Asc . c _oAscFileType . DOCM
] ;
2021-09-13 13:53:44 +00:00
var type = /^(?:(pdf|djvu|xps|oxps))$/ . exec ( this . document . fileType ) ;
2022-02-11 19:07:15 +00:00
if ( type && typeof type [ 1 ] === 'string' ) {
if ( ! ( format && ( typeof format == 'string' ) ) || type [ 1 ] === format . toLowerCase ( ) ) {
this . api . asc _DownloadOrigin ( true ) ;
return ;
2021-12-06 15:37:37 +00:00
}
2022-02-11 19:07:15 +00:00
if ( /^xps|oxps$/ . test ( this . document . fileType ) )
_supported = _supported . concat ( [ Asc . c _oAscFileType . PDF , Asc . c _oAscFileType . PDFA ] ) ;
else if ( /^djvu$/ . test ( this . document . fileType ) ) {
_supported = [ Asc . c _oAscFileType . PDF ] ;
}
2022-02-15 19:36:49 +00:00
textParams = new AscCommon . asc _CTextParams ( Asc . c _oAscTextAssociation . PlainLine ) ;
2022-02-11 19:07:15 +00:00
} else {
_supported = _supported . concat ( [ Asc . c _oAscFileType . PDF , Asc . c _oAscFileType . PDFA ] ) ;
_defaultFormat = Asc . c _oAscFileType . DOCX ;
}
if ( this . appOptions . canFeatureForms && ! /^djvu$/ . test ( this . document . fileType ) ) {
_supported = _supported . concat ( [ Asc . c _oAscFileType . DOCXF , Asc . c _oAscFileType . OFORM ] ) ;
2017-10-24 11:23:15 +00:00
}
2022-02-11 19:07:15 +00:00
if ( ! _format || _supported . indexOf ( _format ) < 0 )
_format = _defaultFormat ;
2022-02-15 19:36:49 +00:00
if ( _format ) {
var options = new Asc . asc _CDownloadOptions ( _format , true ) ;
textParams && options . asc _setTextParams ( textParams ) ;
this . api . asc _DownloadAs ( options ) ;
} else {
this . api . asc _DownloadOrigin ( true ) ;
2017-10-24 11:23:15 +00:00
}
2016-03-11 00:48:53 +00:00
} ,
onProcessMouse : function ( data ) {
if ( data . type == 'mouseup' ) {
var e = document . getElementById ( 'editor_sdk' ) ;
if ( e ) {
var r = e . getBoundingClientRect ( ) ;
this . api . OnMouseUp (
data . x - r . left ,
data . y - r . top
) ;
}
}
} ,
onRefreshHistory : function ( opts ) {
2019-11-06 08:07:56 +00:00
if ( ! this . appOptions . canUseHistory ) return ;
2016-03-11 00:48:53 +00:00
this . loadMask && this . loadMask . hide ( ) ;
if ( opts . data . error || ! opts . data . history ) {
2016-09-16 12:46:00 +00:00
var historyStore = this . getApplication ( ) . getCollection ( 'Common.Collections.HistoryVersions' ) ;
if ( historyStore && historyStore . size ( ) > 0 ) {
historyStore . each ( function ( item ) {
item . set ( 'canRestore' , false ) ;
} ) ;
}
Common . UI . alert ( {
2016-03-11 00:48:53 +00:00
title : this . notcriticalErrorTitle ,
msg : ( opts . data . error ) ? opts . data . error : this . txtErrorLoadHistory ,
iconCls : 'warn' ,
buttons : [ 'ok' ] ,
callback : _ . bind ( function ( btn ) {
this . onEditComplete ( ) ;
} , this )
2016-09-16 12:46:00 +00:00
} ) ;
2016-03-11 00:48:53 +00:00
} else {
this . api . asc _coAuthoringDisconnect ( ) ;
2017-04-21 13:36:06 +00:00
appHeader . setCanRename ( false ) ;
2020-10-15 14:14:06 +00:00
appHeader . getButton ( 'users' ) && appHeader . getButton ( 'users' ) . hide ( ) ;
2022-02-04 11:51:13 +00:00
appHeader . getButton ( 'share' ) && appHeader . getButton ( 'share' ) . setVisible ( false ) ;
2016-03-11 00:48:53 +00:00
this . getApplication ( ) . getController ( 'LeftMenu' ) . getView ( 'LeftMenu' ) . showHistory ( ) ;
this . disableEditing ( true ) ;
2021-03-18 13:34:08 +00:00
this . _renameDialog && this . _renameDialog . close ( ) ;
2016-03-11 00:48:53 +00:00
var versions = opts . data . history ,
historyStore = this . getApplication ( ) . getCollection ( 'Common.Collections.HistoryVersions' ) ,
currentVersion = null ;
if ( historyStore ) {
var arrVersions = [ ] , ver , version , group = - 1 , prev _ver = - 1 , arrColors = [ ] , docIdPrev = '' ,
usersStore = this . getApplication ( ) . getCollection ( 'Common.Collections.HistoryUsers' ) , user = null , usersCnt = 0 ;
for ( ver = versions . length - 1 ; ver >= 0 ; ver -- ) {
version = versions [ ver ] ;
if ( version . versionGroup === undefined || version . versionGroup === null )
version . versionGroup = version . version ;
if ( version ) {
if ( ! version . user ) version . user = { } ;
docIdPrev = ( ver > 0 && versions [ ver - 1 ] ) ? versions [ ver - 1 ] . key : version . key + '0' ;
user = usersStore . findUser ( version . user . id ) ;
if ( ! user ) {
user = new Common . Models . User ( {
id : version . user . id ,
2021-03-18 10:43:44 +00:00
username : version . user . name || this . textAnonymous ,
2016-04-05 11:52:34 +00:00
colorval : Asc . c _oAscArrUserColors [ usersCnt ] ,
color : this . generateUserColor ( Asc . c _oAscArrUserColors [ usersCnt ++ ] )
2016-03-11 00:48:53 +00:00
} ) ;
usersStore . add ( user ) ;
}
arrVersions . push ( new Common . Models . HistoryVersion ( {
version : version . versionGroup ,
revision : version . version ,
userid : version . user . id ,
2021-03-18 10:43:44 +00:00
username : version . user . name || this . textAnonymous ,
2016-03-11 00:48:53 +00:00
usercolor : user . get ( 'color' ) ,
created : version . created ,
docId : version . key ,
markedAsVersion : ( group !== version . versionGroup ) ,
2016-09-16 12:46:00 +00:00
selected : ( opts . data . currentVersion == version . version ) ,
2016-09-22 11:57:41 +00:00
canRestore : this . appOptions . canHistoryRestore && ( ver < versions . length - 1 ) ,
2017-09-22 14:18:06 +00:00
isExpanded : true ,
2021-07-27 19:13:26 +00:00
serverVersion : version . serverVersion ,
fileType : 'docx'
2016-03-11 00:48:53 +00:00
} ) ) ;
if ( opts . data . currentVersion == version . version ) {
currentVersion = arrVersions [ arrVersions . length - 1 ] ;
}
group = version . versionGroup ;
if ( prev _ver !== version . version ) {
prev _ver = version . version ;
arrColors . reverse ( ) ;
for ( i = 0 ; i < arrColors . length ; i ++ ) {
arrVersions [ arrVersions . length - i - 2 ] . set ( 'arrColors' , arrColors ) ;
}
arrColors = [ ] ;
}
arrColors . push ( user . get ( 'colorval' ) ) ;
var changes = version . changes , change , i ;
if ( changes && changes . length > 0 ) {
arrVersions [ arrVersions . length - 1 ] . set ( 'docIdPrev' , docIdPrev ) ;
2016-10-07 13:37:18 +00:00
if ( ! _ . isEmpty ( version . serverVersion ) && version . serverVersion == this . appOptions . buildVersion ) {
2016-10-05 14:08:53 +00:00
arrVersions [ arrVersions . length - 1 ] . set ( 'changeid' , changes . length - 1 ) ;
arrVersions [ arrVersions . length - 1 ] . set ( 'hasChanges' , changes . length > 1 ) ;
for ( i = changes . length - 2 ; i >= 0 ; i -- ) {
change = changes [ i ] ;
user = usersStore . findUser ( change . user . id ) ;
if ( ! user ) {
user = new Common . Models . User ( {
id : change . user . id ,
2021-03-18 10:43:44 +00:00
username : change . user . name || this . textAnonymous ,
2016-10-05 14:08:53 +00:00
colorval : Asc . c _oAscArrUserColors [ usersCnt ] ,
color : this . generateUserColor ( Asc . c _oAscArrUserColors [ usersCnt ++ ] )
} ) ;
usersStore . add ( user ) ;
}
arrVersions . push ( new Common . Models . HistoryVersion ( {
version : version . versionGroup ,
revision : version . version ,
changeid : i ,
userid : change . user . id ,
2021-03-18 10:43:44 +00:00
username : change . user . name || this . textAnonymous ,
2016-10-05 14:08:53 +00:00
usercolor : user . get ( 'color' ) ,
created : change . created ,
docId : version . key ,
docIdPrev : docIdPrev ,
selected : false ,
2019-11-27 13:58:26 +00:00
canRestore : this . appOptions . canHistoryRestore && this . appOptions . canDownload ,
2016-10-05 14:08:53 +00:00
isRevision : false ,
2017-09-22 14:18:06 +00:00
isVisible : true ,
2021-07-27 19:13:26 +00:00
serverVersion : version . serverVersion ,
fileType : 'docx'
2016-10-05 14:08:53 +00:00
} ) ) ;
arrColors . push ( user . get ( 'colorval' ) ) ;
2016-03-11 00:48:53 +00:00
}
}
} else if ( ver == 0 && versions . length == 1 ) {
arrVersions [ arrVersions . length - 1 ] . set ( 'docId' , version . key + '1' ) ;
}
}
}
if ( arrColors . length > 0 ) {
arrColors . reverse ( ) ;
for ( i = 0 ; i < arrColors . length ; i ++ ) {
arrVersions [ arrVersions . length - i - 1 ] . set ( 'arrColors' , arrColors ) ;
}
arrColors = [ ] ;
}
2016-09-16 12:46:00 +00:00
historyStore . reset ( arrVersions ) ;
2016-03-11 00:48:53 +00:00
if ( currentVersion === null && historyStore . size ( ) > 0 ) {
currentVersion = historyStore . at ( 0 ) ;
currentVersion . set ( 'selected' , true ) ;
}
if ( currentVersion )
this . getApplication ( ) . getController ( 'Common.Controllers.History' ) . onSelectRevision ( null , null , currentVersion ) ;
}
}
} ,
generateUserColor : function ( color ) {
return "#" + ( "000000" + color . toString ( 16 ) ) . substr ( - 6 ) ;
} ,
2021-06-29 13:27:44 +00:00
disableEditing : function ( disable , temp ) {
2016-03-11 00:48:53 +00:00
var app = this . getApplication ( ) ;
2021-06-29 13:27:44 +00:00
Common . NotificationCenter . trigger ( 'editing:disable' , disable , {
viewMode : disable ,
reviewMode : false ,
2021-12-30 11:49:19 +00:00
fillFormMode : false ,
2021-06-29 13:27:44 +00:00
allowMerge : false ,
allowSignature : false ,
allowProtect : false ,
2022-08-31 16:29:44 +00:00
rightMenu : { clear : ! temp , disable : true } ,
2021-06-29 13:27:44 +00:00
statusBar : true ,
leftMenu : { disable : true , previewMode : true } ,
2021-06-29 21:31:55 +00:00
fileMenu : { protect : true , history : temp } ,
2021-06-29 13:27:44 +00:00
navigation : { disable : ! temp , previewMode : true } ,
comments : { disable : ! temp , previewMode : true } ,
chat : true ,
review : true ,
viewport : true ,
documentHolder : true ,
toolbar : true ,
2021-12-30 09:10:23 +00:00
plugins : false ,
protect : false
2021-06-30 12:19:45 +00:00
} , temp ? 'reconnect' : 'disconnect' ) ;
2021-06-29 21:31:55 +00:00
} ,
2016-03-11 00:48:53 +00:00
2021-06-30 12:19:45 +00:00
onEditingDisable : function ( disable , options , type ) {
2016-03-11 00:48:53 +00:00
var app = this . getApplication ( ) ;
2021-06-29 13:27:44 +00:00
2021-06-30 12:19:45 +00:00
var action = { type : type , disable : disable , options : options } ;
if ( disable && ! this . stackDisableActions . get ( { type : type } ) )
this . stackDisableActions . push ( action ) ;
! disable && this . stackDisableActions . pop ( { type : type } ) ;
var prev _options = ! disable && ( this . stackDisableActions . length ( ) > 0 ) ? this . stackDisableActions . get ( this . stackDisableActions . length ( ) - 1 ) : null ;
if ( options . rightMenu && app . getController ( 'RightMenu' ) ) {
options . rightMenu . clear && app . getController ( 'RightMenu' ) . getView ( 'RightMenu' ) . clearSelection ( ) ;
options . rightMenu . disable && app . getController ( 'RightMenu' ) . SetDisabled ( disable , options . allowMerge , options . allowSignature ) ;
}
if ( options . statusBar ) {
2016-03-11 00:48:53 +00:00
app . getController ( 'Statusbar' ) . getView ( 'Statusbar' ) . SetDisabled ( disable ) ;
}
2021-06-29 13:27:44 +00:00
if ( options . review ) {
2021-12-30 11:49:19 +00:00
app . getController ( 'Common.Controllers.ReviewChanges' ) . SetDisabled ( disable , options . reviewMode , options . fillFormMode ) ;
2021-06-29 13:27:44 +00:00
}
if ( options . viewport ) {
app . getController ( 'Viewport' ) . SetDisabled ( disable ) ;
}
if ( options . toolbar ) {
2021-12-30 11:49:19 +00:00
app . getController ( 'Toolbar' ) . DisableToolbar ( disable , options . viewMode , options . reviewMode , options . fillFormMode ) ;
2021-06-29 13:27:44 +00:00
}
if ( options . documentHolder ) {
2022-04-27 19:24:39 +00:00
app . getController ( 'DocumentHolder' ) . SetDisabled ( disable , options . allowProtect , options . fillFormMode ) ;
2021-06-29 13:27:44 +00:00
}
if ( options . leftMenu ) {
2021-06-29 14:26:04 +00:00
if ( options . leftMenu . disable )
2021-06-29 13:27:44 +00:00
app . getController ( 'LeftMenu' ) . SetDisabled ( disable , options ) ;
if ( options . leftMenu . previewMode )
app . getController ( 'LeftMenu' ) . setPreviewMode ( disable ) ;
}
if ( options . fileMenu ) {
app . getController ( 'LeftMenu' ) . leftMenu . getMenu ( 'file' ) . SetDisabled ( disable , options . fileMenu ) ;
2021-06-29 14:26:04 +00:00
if ( options . leftMenu . disable )
app . getController ( 'LeftMenu' ) . leftMenu . getMenu ( 'file' ) . applyMode ( ) ;
2021-06-29 13:27:44 +00:00
}
if ( options . comments ) {
var comments = this . getApplication ( ) . getController ( 'Common.Controllers.Comments' ) ;
if ( comments && options . comments . previewMode )
comments . setPreviewMode ( disable ) ;
}
if ( options . navigation && options . navigation . previewMode ) {
app . getController ( 'Navigation' ) && app . getController ( 'Navigation' ) . SetDisabled ( disable ) ;
}
if ( options . plugins ) {
2022-09-28 14:29:24 +00:00
app . getController ( 'Common.Controllers.Plugins' ) . getView ( 'Common.Views.Plugins' ) . SetDisabled ( disable , options . reviewMode , options . fillFormMode ) ;
2016-03-11 00:48:53 +00:00
}
2021-12-30 09:10:23 +00:00
if ( options . protect ) {
app . getController ( 'Common.Controllers.Protection' ) . SetDisabled ( disable , false ) ;
}
2021-06-30 12:19:45 +00:00
if ( prev _options ) {
this . onEditingDisable ( prev _options . disable , prev _options . options , prev _options . type ) ;
}
2016-03-11 00:48:53 +00:00
} ,
2022-04-19 15:59:18 +00:00
disableLiveViewing : function ( disable ) {
this . appOptions . canLiveView = ! disable ;
this . api . asc _SetFastCollaborative ( ! disable ) ;
Common . Utils . InternalSettings . set ( "de-settings-coauthmode" , ! disable ) ;
} ,
2021-03-29 11:30:31 +00:00
onRequestClose : function ( ) {
var me = this ;
if ( this . api . isDocumentModified ( ) ) {
this . api . asc _stopSaving ( ) ;
Common . UI . warning ( {
closable : false ,
width : 500 ,
title : this . notcriticalErrorTitle ,
msg : this . leavePageTextOnClose ,
buttons : [ 'ok' , 'cancel' ] ,
primary : 'ok' ,
callback : function ( btn ) {
if ( btn == 'ok' ) {
me . api . asc _undoAllChanges ( ) ;
2021-03-29 13:41:49 +00:00
me . api . asc _continueSaving ( ) ;
2021-03-29 11:30:31 +00:00
Common . Gateway . requestClose ( ) ;
// Common.Controllers.Desktop.requestClose();
} else
me . api . asc _continueSaving ( ) ;
}
} ) ;
} else {
Common . Gateway . requestClose ( ) ;
// Common.Controllers.Desktop.requestClose();
}
} ,
2019-01-10 13:20:27 +00:00
goBack : function ( current ) {
2018-02-21 23:23:32 +00:00
if ( ! Common . Controllers . Desktop . process ( 'goback' ) ) {
2019-11-27 07:22:25 +00:00
if ( this . appOptions . customization . goback . requestClose && this . appOptions . canRequestClose ) {
2021-03-29 11:30:31 +00:00
this . onRequestClose ( ) ;
2018-02-13 08:23:53 +00:00
} else {
2019-11-27 07:22:25 +00:00
var href = this . appOptions . customization . goback . url ;
if ( ! current && this . appOptions . customization . goback . blank !== false ) {
window . open ( href , "_blank" ) ;
} else {
parent . location . href = href ;
}
2018-02-13 08:23:53 +00:00
}
2016-03-11 00:48:53 +00:00
}
} ,
2020-12-14 19:45:30 +00:00
markFavorite : function ( favorite ) {
if ( ! Common . Controllers . Desktop . process ( 'markfavorite' ) ) {
Common . Gateway . metaChange ( {
favorite : favorite
} ) ;
}
} ,
onSetFavorite : function ( favorite ) {
this . appOptions . canFavorite && appHeader . setFavorite ( ! ! favorite ) ;
} ,
2016-03-11 00:48:53 +00:00
onEditComplete : function ( cmp ) {
// this.getMainMenu().closeFullScaleMenu();
var application = this . getApplication ( ) ,
toolbarController = application . getController ( 'Toolbar' ) ,
2017-04-21 13:36:06 +00:00
toolbarView = toolbarController . getView ( ) ;
2016-03-11 00:48:53 +00:00
if ( this . appOptions . isEdit && toolbarView && ( toolbarView . btnInsertShape . pressed || toolbarView . btnInsertText . pressed ) &&
2017-08-09 10:40:46 +00:00
( ! _ . isObject ( arguments [ 1 ] ) || arguments [ 1 ] . id !== 'tlbtn-insertshape' ) ) { // TODO: Event from api is needed to clear btnInsertShape state
2016-03-11 00:48:53 +00:00
if ( this . api )
this . api . StartAddShape ( '' , false ) ;
toolbarView . btnInsertShape . toggle ( false , false ) ;
toolbarView . btnInsertText . toggle ( false , false ) ;
}
2016-10-13 08:40:59 +00:00
if ( this . appOptions . isEdit && toolbarView && toolbarView . btnHighlightColor . pressed &&
( ! _ . isObject ( arguments [ 1 ] ) || arguments [ 1 ] . id !== 'id-toolbar-btn-highlight' ) ) {
this . api . SetMarkerFormat ( false ) ;
toolbarView . btnHighlightColor . toggle ( false , false ) ;
}
2017-04-03 16:24:24 +00:00
application . getController ( 'DocumentHolder' ) . getView ( ) . focus ( ) ;
2016-03-11 00:48:53 +00:00
2018-05-15 12:37:26 +00:00
if ( this . api && this . appOptions . isEdit && ! toolbarView . _state . previewmode ) {
2017-04-11 13:40:01 +00:00
var cansave = this . api . asc _isDocumentCanSave ( ) ,
2017-09-05 07:54:44 +00:00
forcesave = this . appOptions . forcesave ,
2019-11-20 09:42:39 +00:00
isSyncButton = ( toolbarView . btnCollabChanges . rendered ) ? toolbarView . btnCollabChanges . cmpEl . hasClass ( 'notify' ) : false ,
2017-09-05 07:54:44 +00:00
isDisabled = ! cansave && ! isSyncButton && ! forcesave || this . _state . isDisconnected || this . _state . fastCoauth && this . _state . usersCount > 1 && ! forcesave ;
2018-02-15 23:56:17 +00:00
toolbarView . btnSave . setDisabled ( isDisabled ) ;
2016-03-11 00:48:53 +00:00
}
2021-07-06 15:42:13 +00:00
2021-07-12 16:33:05 +00:00
Common . UI . HintManager . clearHints ( true ) ;
2016-03-11 00:48:53 +00:00
} ,
onLongActionBegin : function ( type , id ) {
var action = { id : id , type : type } ;
this . stackLongActions . push ( action ) ;
this . setLongActionView ( action ) ;
} ,
onLongActionEnd : function ( type , id ) {
var action = { id : id , type : type } ;
this . stackLongActions . pop ( action ) ;
2019-09-18 07:32:29 +00:00
appHeader && appHeader . setDocumentCaption ( this . api . asc _getDocumentName ( ) ) ;
2016-03-11 00:48:53 +00:00
this . updateWindowTitle ( true ) ;
2016-04-05 11:52:34 +00:00
action = this . stackLongActions . get ( { type : Asc . c _oAscAsyncActionType . Information } ) ;
2016-03-11 00:48:53 +00:00
if ( action ) {
this . setLongActionView ( action )
} else {
2017-06-27 10:38:19 +00:00
var me = this ;
2017-07-07 09:04:00 +00:00
if ( ( id == Asc . c _oAscAsyncAction [ 'Save' ] || id == Asc . c _oAscAsyncAction [ 'ForceSaveButton' ] ) && ! this . appOptions . isOffline ) {
2017-04-11 13:40:01 +00:00
if ( this . _state . fastCoauth && this . _state . usersCount > 1 ) {
me . _state . timerSave = setTimeout ( function ( ) {
2017-06-27 10:38:19 +00:00
me . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( me . textChangesSaved , false , 3000 ) ;
2017-04-11 13:40:01 +00:00
} , 500 ) ;
} else
2017-06-27 10:38:19 +00:00
me . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( me . textChangesSaved , false , 3000 ) ;
2017-04-11 13:40:01 +00:00
} else
2016-03-11 00:48:53 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( '' ) ;
}
2016-04-05 11:52:34 +00:00
action = this . stackLongActions . get ( { type : Asc . c _oAscAsyncActionType . BlockInteraction } ) ;
2016-03-11 00:48:53 +00:00
action ? this . setLongActionView ( action ) : this . loadMask && this . loadMask . hide ( ) ;
2018-07-19 09:39:52 +00:00
if ( this . appOptions . isEdit && ( id == Asc . c _oAscAsyncAction [ 'Save' ] || id == Asc . c _oAscAsyncAction [ 'ForceSaveButton' ] ) && ( ! this . _state . fastCoauth || this . _state . usersCount < 2 ||
2017-08-25 09:25:54 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.ReviewChanges' ) . isPreviewChangesMode ( ) ) )
2016-03-11 00:48:53 +00:00
this . synchronizeChanges ( ) ;
2018-09-20 12:56:20 +00:00
else if ( this . appOptions . isEdit && ( id == Asc . c _oAscAsyncAction [ 'Save' ] || id == Asc . c _oAscAsyncAction [ 'ForceSaveButton' ] || id == Asc . c _oAscAsyncAction [ 'ApplyChanges' ] ) &&
this . _state . fastCoauth )
2018-08-16 14:43:06 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.ReviewChanges' ) . synchronizeChanges ( ) ;
2016-03-11 00:48:53 +00:00
2019-02-05 12:11:22 +00:00
if ( id == Asc . c _oAscAsyncAction [ 'Open' ] ) {
Common . Utils . InternalSettings . get ( "de-settings-livecomment" ) ? this . api . asc _showComments ( Common . Utils . InternalSettings . get ( "de-settings-resolvedcomment" ) ) : this . api . asc _hideComments ( ) ;
}
2021-06-29 21:31:55 +00:00
if ( id == Asc . c _oAscAsyncAction [ 'Disconnect' ] ) {
2022-03-05 11:16:34 +00:00
this . _state . timerDisconnect && clearTimeout ( this . _state . timerDisconnect ) ;
2021-06-29 21:31:55 +00:00
this . disableEditing ( false , true ) ;
2021-12-13 16:20:55 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . hideDisconnectTip ( ) ;
2021-12-13 21:37:33 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( this . textReconnect ) ;
2021-06-29 21:31:55 +00:00
}
2016-04-05 11:52:34 +00:00
if ( type == Asc . c _oAscAsyncActionType . BlockInteraction &&
2016-03-11 00:48:53 +00:00
( ! this . getApplication ( ) . getController ( 'LeftMenu' ) . dlgSearch || ! this . getApplication ( ) . getController ( 'LeftMenu' ) . dlgSearch . isVisible ( ) ) &&
2020-01-27 11:18:06 +00:00
( ! this . getApplication ( ) . getController ( 'Toolbar' ) . dlgSymbolTable || ! this . getApplication ( ) . getController ( 'Toolbar' ) . dlgSymbolTable . isVisible ( ) ) &&
2020-08-19 14:27:26 +00:00
! ( ( id == Asc . c _oAscAsyncAction [ 'LoadDocumentFonts' ] || id == Asc . c _oAscAsyncAction [ 'ApplyChanges' ] || id == Asc . c _oAscAsyncAction [ 'DownloadAs' ] ) && ( this . dontCloseDummyComment || this . inTextareaControl || Common . Utils . ModalWindow . isVisible ( ) || this . inFormControl ) ) ) {
2016-07-27 12:52:35 +00:00
// this.onEditComplete(this.loadMask); //если делать фокус, то при принятии чужих изменений, заканчивается свой композитный ввод
2016-03-11 00:48:53 +00:00
this . api . asc _enableKeyEvents ( true ) ;
}
} ,
setLongActionView : function ( action ) {
2017-04-11 13:40:01 +00:00
var title = '' , text = '' , force = false ;
2021-12-13 21:07:24 +00:00
var statusCallback = null ; // call after showing status
2016-03-11 00:48:53 +00:00
switch ( action . id ) {
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'Open' ] :
2016-03-11 00:48:53 +00:00
title = this . openTitleText ;
text = this . openTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'Save' ] :
2017-04-11 13:40:01 +00:00
case Asc . c _oAscAsyncAction [ 'ForceSaveButton' ] :
clearTimeout ( this . _state . timerSave ) ;
force = true ;
2017-12-05 15:04:30 +00:00
title = this . saveTitleText ;
2017-07-07 09:04:00 +00:00
text = ( ! this . appOptions . isOffline ) ? this . saveTextText : '' ;
2016-03-11 00:48:53 +00:00
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'LoadDocumentFonts' ] :
2016-03-11 00:48:53 +00:00
title = this . loadFontsTitleText ;
text = this . loadFontsTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'LoadDocumentImages' ] :
2016-03-11 00:48:53 +00:00
title = this . loadImagesTitleText ;
text = this . loadImagesTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'LoadFont' ] :
2016-03-11 00:48:53 +00:00
title = this . loadFontTitleText ;
text = this . loadFontTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'LoadImage' ] :
2016-03-11 00:48:53 +00:00
title = this . loadImageTitleText ;
text = this . loadImageTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'DownloadAs' ] :
2016-03-11 00:48:53 +00:00
title = this . downloadTitleText ;
text = this . downloadTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'Print' ] :
2016-03-11 00:48:53 +00:00
title = this . printTitleText ;
text = this . printTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'UploadImage' ] :
2016-03-11 00:48:53 +00:00
title = this . uploadImageTitleText ;
text = this . uploadImageTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'ApplyChanges' ] :
2016-03-11 00:48:53 +00:00
title = this . applyChangesTitleText ;
text = this . applyChangesTextText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'MailMergeLoadFile' ] :
2016-03-11 00:48:53 +00:00
title = this . mailMergeLoadFileText ;
text = this . mailMergeLoadFileTitle ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'DownloadMerge' ] :
2016-03-11 00:48:53 +00:00
title = this . downloadMergeTitle ;
text = this . downloadMergeText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'SendMailMerge' ] :
2016-03-11 00:48:53 +00:00
title = this . sendMergeTitle ;
text = this . sendMergeText ;
break ;
2019-05-08 11:52:35 +00:00
case Asc . c _oAscAsyncAction [ 'Waiting' ] :
title = this . waitText ;
text = this . waitText ;
break ;
2016-03-11 00:48:53 +00:00
case ApplyEditRights :
title = this . txtEditingMode ;
text = this . txtEditingMode ;
break ;
case LoadingDocument :
2021-06-18 13:53:50 +00:00
title = this . loadingDocumentTitleText + ' ' ;
2016-03-11 00:48:53 +00:00
text = this . loadingDocumentTextText ;
break ;
2021-06-29 21:31:55 +00:00
case Asc . c _oAscAsyncAction [ 'Disconnect' ] :
text = this . textDisconnect ;
2022-11-02 10:19:36 +00:00
Common . UI . Menu . Manager . hideAll ( ) ;
2021-06-29 21:31:55 +00:00
this . disableEditing ( true , true ) ;
2022-03-03 18:39:40 +00:00
var me = this ;
statusCallback = function ( ) {
2022-03-05 11:16:34 +00:00
me . _state . timerDisconnect = setTimeout ( function ( ) {
2022-03-01 17:53:11 +00:00
me . getApplication ( ) . getController ( 'Statusbar' ) . showDisconnectTip ( ) ;
2022-03-03 18:39:40 +00:00
} , me . _state . unloadTimer || 0 ) ;
} ;
2021-06-29 21:31:55 +00:00
break ;
2018-02-05 09:22:03 +00:00
default :
if ( typeof action . id == 'string' ) {
title = action . id ;
text = action . id ;
}
break ;
2016-03-11 00:48:53 +00:00
}
2016-04-05 11:52:34 +00:00
if ( action . type == Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] ) {
2016-03-11 00:48:53 +00:00
if ( ! this . loadMask )
this . loadMask = new Common . UI . LoadMask ( { owner : $ ( '#viewport' ) } ) ;
this . loadMask . setTitle ( title ) ;
if ( ! this . isShowOpenDialog )
2021-07-28 11:23:40 +00:00
this . loadMask . show ( action . id === Asc . c _oAscAsyncAction [ 'Open' ] ) ;
2017-03-16 10:24:03 +00:00
} else {
2021-12-13 21:07:24 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( text , force , 0 , statusCallback ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onApplyEditRights : function ( data ) {
2017-04-11 13:52:31 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( '' ) ;
2016-03-11 00:48:53 +00:00
2017-04-11 13:52:31 +00:00
if ( data && ! data . allowed ) {
Common . UI . info ( {
title : this . requestEditFailedTitleText ,
msg : data . message || this . requestEditFailedMessageText
} ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onDocumentContentReady : function ( ) {
if ( this . _isDocReady )
return ;
2017-09-08 08:39:07 +00:00
if ( this . _state . openDlg )
this . _state . openDlg . close ( ) ;
2016-03-11 00:48:53 +00:00
var me = this ,
value ;
me . _isDocReady = true ;
2017-04-25 16:56:17 +00:00
Common . NotificationCenter . trigger ( 'app:ready' , this . appOptions ) ;
2016-03-11 00:48:53 +00:00
me . api . SetDrawingFreeze ( false ) ;
me . hidePreloader ( ) ;
2016-04-05 11:52:34 +00:00
me . onLongActionEnd ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
2020-03-12 10:07:49 +00:00
Common . Utils . InternalSettings . set ( "de-settings-datetime-default" , Common . localStorage . getItem ( "de-settings-datetime-default" ) ) ;
2016-03-11 00:48:53 +00:00
/** coauthoring begin **/
2017-06-16 11:53:29 +00:00
this . isLiveCommenting = Common . localStorage . getBool ( "de-settings-livecomment" , true ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-livecomment" , this . isLiveCommenting ) ;
2018-04-26 12:17:02 +00:00
value = Common . localStorage . getBool ( "de-settings-resolvedcomment" ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-resolvedcomment" , value ) ;
this . isLiveCommenting ? this . api . asc _showComments ( value ) : this . api . asc _hideComments ( ) ;
2016-03-11 00:48:53 +00:00
/** coauthoring end **/
value = Common . localStorage . getItem ( "de-settings-zoom" ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-zoom" , value ) ;
2016-09-13 08:28:21 +00:00
var zf = ( value !== null ) ? parseInt ( value ) : ( this . appOptions . customization && this . appOptions . customization . zoom ? parseInt ( this . appOptions . customization . zoom ) : 100 ) ;
( zf == - 1 ) ? this . api . zoomFitToPage ( ) : ( ( zf == - 2 ) ? this . api . zoomFitToWidth ( ) : this . api . zoom ( zf > 0 ? zf : 100 ) ) ;
2016-03-11 00:48:53 +00:00
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 ) ;
2021-11-01 18:13:34 +00:00
// spellcheck
2022-02-17 09:40:10 +00:00
value = Common . UI . FeaturesManager . getInitValue ( 'spellcheck' , true ) ;
2021-11-01 18:13:34 +00:00
value = ( value !== undefined ) ? value : ! ( this . appOptions . customization && this . appOptions . customization . spellcheck === false ) ;
if ( this . appOptions . customization && this . appOptions . customization . spellcheck !== undefined )
console . log ( "Obsolete: The 'spellcheck' parameter of the 'customization' section is deprecated. Please use 'spellcheck' parameter in the 'customization.features' section instead." ) ;
if ( Common . UI . FeaturesManager . canChange ( 'spellcheck' ) ) { // get from local storage
value = Common . localStorage . getBool ( "de-settings-spellcheck" , value ) ;
Common . Utils . InternalSettings . set ( "de-settings-spellcheck" , value ) ;
}
2017-10-03 11:22:33 +00:00
me . api . asc _setSpellCheck ( value ) ;
2021-11-01 18:13:34 +00:00
Common . NotificationCenter . trigger ( 'spelling:turn' , value ? 'on' : 'off' , true ) ; // only toggle buttons
2016-03-11 00:48:53 +00:00
2022-03-29 14:51:33 +00:00
if ( Common . UI . FeaturesManager . canChange ( 'spellcheck' ) ) { // get settings for spellcheck from local storage
value = Common . localStorage . getBool ( "de-spellcheck-ignore-uppercase-words" , true ) ;
Common . Utils . InternalSettings . set ( "de-spellcheck-ignore-uppercase-words" , value ) ;
value = Common . localStorage . getBool ( "de-spellcheck-ignore-numbers-words" , true ) ;
Common . Utils . InternalSettings . set ( "de-spellcheck-ignore-numbers-words" , value ) ;
value = new AscCommon . CSpellCheckSettings ( ) ;
value . put _IgnoreWordsInUppercase ( Common . Utils . InternalSettings . get ( "de-spellcheck-ignore-uppercase-words" ) ) ;
value . put _IgnoreWordsWithNumbers ( Common . Utils . InternalSettings . get ( "de-spellcheck-ignore-numbers-words" ) ) ;
this . api . asc _setSpellCheckSettings ( value ) ;
}
2022-03-29 11:26:21 +00:00
2019-07-24 09:27:14 +00:00
value = Common . localStorage . getBool ( "de-settings-compatible" , false ) ;
Common . Utils . InternalSettings . set ( "de-settings-compatible" , value ) ;
2017-10-04 15:44:01 +00:00
Common . Utils . InternalSettings . set ( "de-settings-showsnaplines" , me . api . get _ShowSnapLines ( ) ) ;
2016-03-11 00:48:53 +00:00
function checkWarns ( ) {
2022-05-25 13:48:17 +00:00
if ( ! Common . Controllers . Desktop . isActive ( ) ) {
2016-03-11 00:48:53 +00:00
var tips = [ ] ;
Common . Utils . isIE9m && tips . push ( me . warnBrowserIE9 ) ;
if ( tips . length ) me . showTips ( tips ) ;
}
2016-04-11 08:05:14 +00:00
document . removeEventListener ( 'visibilitychange' , checkWarns ) ;
2016-03-11 00:48:53 +00:00
}
if ( typeof document . hidden !== 'undefined' && document . hidden ) {
2016-04-11 08:05:14 +00:00
document . addEventListener ( 'visibilitychange' , checkWarns ) ;
2016-03-11 00:48:53 +00:00
} else checkWarns ( ) ;
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 ) ) ;
2022-10-04 18:53:31 +00:00
me . api . asc _registerCallback ( 'asc_onConfirmAction' , _ . bind ( me . onConfirmAction , me ) ) ;
2016-03-11 00:48:53 +00:00
2017-04-21 13:36:06 +00:00
appHeader . setDocumentCaption ( me . api . asc _getDocumentName ( ) ) ;
2016-03-11 00:48:53 +00:00
me . updateWindowTitle ( true ) ;
2022-10-03 13:01:19 +00:00
value = Common . localStorage . getBool ( "de-settings-show-alt-hints" , Common . Utils . isMac ? false : true ) ;
Common . Utils . InternalSettings . set ( "de-settings-show-alt-hints" , value ) ;
2022-05-17 15:55:18 +00:00
2016-03-11 00:48:53 +00:00
/** coauthoring begin **/
2021-04-01 10:36:08 +00:00
me . _state . fastCoauth = Common . Utils . InternalSettings . get ( "de-settings-coauthmode" ) ;
me . api . asc _SetFastCollaborative ( me . _state . fastCoauth ) ;
value = Common . Utils . InternalSettings . get ( ( me . _state . fastCoauth ) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict" ) ;
switch ( value ) {
case 'all' : value = Asc . c _oAscCollaborativeMarksShowType . All ; break ;
case 'none' : value = Asc . c _oAscCollaborativeMarksShowType . None ; break ;
case 'last' : value = Asc . c _oAscCollaborativeMarksShowType . LastChanges ; break ;
default : value = ( me . _state . fastCoauth ) ? Asc . c _oAscCollaborativeMarksShowType . None : Asc . c _oAscCollaborativeMarksShowType . LastChanges ;
}
me . api . SetCollaborativeMarksShowType ( value ) ;
me . api . asc _setAutoSaveGap ( Common . Utils . InternalSettings . get ( "de-settings-autosave" ) ) ;
2020-11-11 14:24:46 +00:00
me . api . asc _SetPerformContentControlActionByClick ( me . appOptions . isRestrictedEdit && me . appOptions . canFillForms ) ;
2017-10-03 11:22:33 +00:00
2016-03-11 00:48:53 +00:00
/** coauthoring end **/
2017-04-21 13:36:06 +00:00
var application = me . getApplication ( ) ;
2016-03-11 00:48:53 +00:00
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' ) ,
2016-05-17 15:38:54 +00:00
chatController = application . getController ( 'Common.Controllers.Chat' ) ,
2017-12-19 13:30:58 +00:00
pluginsController = application . getController ( 'Common.Controllers.Plugins' ) ,
navigationController = application . getController ( 'Navigation' ) ;
2016-03-11 00:48:53 +00:00
leftmenuController . getView ( 'LeftMenu' ) . getMenu ( 'file' ) . loadDocument ( { doc : me . document } ) ;
2022-10-28 18:36:19 +00:00
leftmenuController . createDelayedElements ( ) . setApi ( me . api ) ;
2016-03-11 00:48:53 +00:00
2022-04-15 13:37:38 +00:00
navigationController . setMode ( me . appOptions ) . setApi ( me . api ) ;
2018-02-19 09:34:15 +00:00
2016-03-11 00:48:53 +00:00
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 } ) ;
2022-03-10 16:21:29 +00:00
application . getController ( 'Common.Controllers.ExternalOleEditor' ) . setApi ( this . api ) . loadConfig ( { config : this . editorConfig , customization : this . editorConfig . customization } ) ;
2016-03-11 00:48:53 +00:00
2016-07-06 13:35:01 +00:00
pluginsController . setApi ( me . api ) ;
2016-05-17 15:38:54 +00:00
2016-03-11 00:48:53 +00:00
documentHolderController . setApi ( me . api ) ;
2022-04-27 19:24:39 +00:00
// documentHolderController.createDelayedElements();
2016-03-11 00:48:53 +00:00
statusbarController . createDelayedElements ( ) ;
leftmenuController . getView ( 'LeftMenu' ) . disableMenu ( 'all' , false ) ;
if ( me . appOptions . canBranding )
me . getApplication ( ) . getController ( 'LeftMenu' ) . leftMenu . getMenu ( 'about' ) . setLicInfo ( me . editorConfig . customization ) ;
2022-04-27 19:24:39 +00:00
documentHolderController . getView ( ) . on ( 'editcomplete' , _ . bind ( me . onEditComplete , me ) ) ;
2016-03-11 00:48:53 +00:00
if ( me . appOptions . isEdit ) {
2017-04-11 13:40:01 +00:00
if ( me . appOptions . canForcesave ) { // use asc_setIsForceSaveOnUserSave only when customization->forcesave = true
2017-06-16 11:53:29 +00:00
me . appOptions . forcesave = Common . localStorage . getBool ( "de-settings-forcesave" , me . appOptions . canForcesave ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-forcesave" , me . appOptions . forcesave ) ;
2017-04-11 13:40:01 +00:00
me . api . asc _setIsForceSaveOnUserSave ( me . appOptions . forcesave ) ;
}
2020-06-04 08:51:14 +00:00
value = Common . localStorage . getItem ( "de-settings-paste-button" ) ;
if ( value === null ) value = '1' ;
Common . Utils . InternalSettings . set ( "de-settings-paste-button" , parseInt ( value ) ) ;
me . api . asc _setVisiblePasteButton ( ! ! parseInt ( value ) ) ;
2020-08-12 17:30:04 +00:00
me . loadAutoCorrectSettings ( ) ;
2020-08-11 11:35:15 +00:00
2016-03-11 00:48:53 +00:00
if ( me . needToUpdateVersion )
Common . NotificationCenter . trigger ( 'api:disconnect' ) ;
var timer _sl = setInterval ( function ( ) {
if ( window . styles _loaded ) {
clearInterval ( timer _sl ) ;
2016-08-04 17:02:57 +00:00
toolbarController . createDelayedElements ( ) ;
2016-03-11 00:48:53 +00:00
2017-04-03 16:24:24 +00:00
documentHolderController . getView ( ) . createDelayedElements ( ) ;
2017-04-19 08:28:40 +00:00
me . setLanguages ( ) ;
2016-03-11 00:48:53 +00:00
2016-05-10 13:46:51 +00:00
var shapes = me . api . asc _getPropertyEditorShapes ( ) ;
2016-03-11 00:48:53 +00:00
if ( shapes )
me . fillAutoShapes ( shapes [ 0 ] , shapes [ 1 ] ) ;
2016-10-12 15:38:10 +00:00
rightmenuController . createDelayedElements ( ) ;
2016-03-11 00:48:53 +00:00
me . updateThemeColors ( ) ;
toolbarController . activateControls ( ) ;
if ( me . needToUpdateVersion )
toolbarController . onApiCoAuthoringDisconnect ( ) ;
me . api . UpdateInterfaceState ( ) ;
2016-11-16 09:38:16 +00:00
2017-11-28 11:20:54 +00:00
Common . NotificationCenter . trigger ( 'document:ready' , 'main' ) ;
2017-11-22 13:32:43 +00:00
me . applyLicense ( ) ;
2016-03-11 00:48:53 +00:00
}
} , 50 ) ;
2017-06-06 08:04:04 +00:00
} else {
documentHolderController . getView ( ) . createDelayedElementsViewer ( ) ;
2017-11-28 11:20:54 +00:00
Common . NotificationCenter . trigger ( 'document:ready' , 'main' ) ;
2022-04-19 15:59:18 +00:00
me . applyLicense ( ) ;
2017-06-06 08:04:04 +00:00
}
2016-03-11 00:48:53 +00:00
2020-01-31 13:39:24 +00:00
// TODO bug 43960
var dummyClass = ~ ~ ( 1e6 * Math . random ( ) ) ;
$ ( '.toolbar' ) . prepend ( Common . Utils . String . format ( '<div class="lazy-{0} x-huge"><div class="toolbar__icon" style="position: absolute; width: 1px; height: 1px;"></div>' , dummyClass ) ) ;
setTimeout ( function ( ) { $ ( Common . Utils . String . format ( '.toolbar .lazy-{0}' , dummyClass ) ) . remove ( ) ; } , 10 ) ;
2016-03-11 00:48:53 +00:00
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 ( 'processmouse' , _ . bind ( me . onProcessMouse , me ) ) ;
Common . Gateway . on ( 'refreshhistory' , _ . bind ( me . onRefreshHistory , me ) ) ;
Common . Gateway . on ( 'downloadas' , _ . bind ( me . onDownloadAs , me ) ) ;
2020-12-14 19:45:30 +00:00
Common . Gateway . on ( 'setfavorite' , _ . bind ( me . onSetFavorite , me ) ) ;
2021-03-29 11:30:31 +00:00
Common . Gateway . on ( 'requestclose' , _ . bind ( me . onRequestClose , me ) ) ;
2016-03-11 00:48:53 +00:00
Common . Gateway . sendInfo ( { mode : me . appOptions . isEdit ? 'edit' : 'view' } ) ;
$ ( document ) . on ( 'contextmenu' , _ . bind ( me . onContextMenu , me ) ) ;
2019-01-10 08:20:53 +00:00
Common . Gateway . documentReady ( ) ;
2019-07-22 08:17:53 +00:00
2019-11-08 13:14:01 +00:00
$ ( '#editor-container' ) . css ( 'overflow' , '' ) ;
2019-07-22 08:17:53 +00:00
$ ( '.doc-placeholder' ) . remove ( ) ;
2020-12-17 09:33:32 +00:00
2020-12-29 20:48:47 +00:00
this . appOptions . user . guest && this . appOptions . canRenameAnonymous && ( Common . Utils . InternalSettings . get ( "guest-username" ) === null ) && this . showRenameUserDialog ( ) ;
2017-11-22 13:32:43 +00:00
} ,
onLicenseChanged : function ( params ) {
var licType = params . asc _getLicenseType ( ) ;
2022-01-17 15:59:46 +00:00
if ( licType !== undefined && ( this . appOptions . canEdit || this . appOptions . isRestrictedEdit ) && this . editorConfig . mode !== 'view' &&
2020-11-09 11:52:21 +00:00
( licType === Asc . c _oLicenseResult . Connections || licType === Asc . c _oLicenseResult . UsersCount || licType === Asc . c _oLicenseResult . ConnectionsOS || licType === Asc . c _oLicenseResult . UsersCountOS
2020-11-24 11:54:41 +00:00
|| licType === Asc . c _oLicenseResult . SuccessLimit && ( this . appOptions . trialMode & Asc . c _oLicenseMode . Limited ) !== 0 ) )
2018-05-28 10:00:03 +00:00
this . _state . licenseType = licType ;
2022-04-19 15:59:18 +00:00
2022-07-29 10:01:05 +00:00
if ( licType !== undefined && this . appOptions . canLiveView && ( licType === Asc . c _oLicenseResult . ConnectionsLive || licType === Asc . c _oLicenseResult . ConnectionsLiveOS ||
licType === Asc . c _oLicenseResult . UsersViewCount || licType === Asc . c _oLicenseResult . UsersViewCountOS ) )
2022-04-19 15:59:18 +00:00
this . _state . licenseType = licType ;
2017-11-22 13:32:43 +00:00
if ( this . _isDocReady )
this . applyLicense ( ) ;
} ,
2016-03-11 00:48:53 +00:00
2017-11-22 13:32:43 +00:00
applyLicense : function ( ) {
2022-04-19 15:59:18 +00:00
if ( this . editorConfig . mode === 'view' ) {
2022-07-29 10:01:05 +00:00
if ( this . appOptions . canLiveView && ( this . _state . licenseType === Asc . c _oLicenseResult . ConnectionsLive || this . _state . licenseType === Asc . c _oLicenseResult . ConnectionsLiveOS ||
this . _state . licenseType === Asc . c _oLicenseResult . UsersViewCount || this . _state . licenseType === Asc . c _oLicenseResult . UsersViewCountOS ) ) {
2022-04-19 15:59:18 +00:00
// show warning or write to log if Common.Utils.InternalSettings.get("de-settings-coauthmode") was true ???
this . disableLiveViewing ( true ) ;
}
} else if ( this . _state . licenseType ) {
2018-05-28 10:00:03 +00:00
var license = this . _state . licenseType ,
buttons = [ 'ok' ] ,
primary = 'ok' ;
2020-11-25 14:27:53 +00:00
if ( ( this . appOptions . trialMode & Asc . c _oLicenseMode . Limited ) !== 0 &&
( license === Asc . c _oLicenseResult . SuccessLimit || license === Asc . c _oLicenseResult . ExpiredLimited || this . appOptions . permissionsLicense === Asc . c _oLicenseResult . SuccessLimit ) ) {
2020-11-09 11:52:21 +00:00
( license === Asc . c _oLicenseResult . ExpiredLimited ) && this . getApplication ( ) . getController ( 'LeftMenu' ) . leftMenu . setLimitMode ( ) ; // show limited hint
license = ( license === Asc . c _oLicenseResult . ExpiredLimited ) ? this . warnLicenseLimitedNoAccess : this . warnLicenseLimitedRenewed ;
} else if ( license === Asc . c _oLicenseResult . Connections || license === Asc . c _oLicenseResult . UsersCount ) {
2018-05-28 10:00:03 +00:00
license = ( license === Asc . c _oLicenseResult . Connections ) ? this . warnLicenseExceeded : this . warnLicenseUsersExceeded ;
} else {
license = ( license === Asc . c _oLicenseResult . ConnectionsOS ) ? this . warnNoLicense : this . warnNoLicenseUsers ;
buttons = [ { value : 'buynow' , caption : this . textBuyNow } , { value : 'contact' , caption : this . textContactUs } ] ;
primary = 'buynow' ;
}
2022-01-17 15:59:46 +00:00
if ( this . _state . licenseType !== Asc . c _oLicenseResult . SuccessLimit && ( this . appOptions . isEdit || this . appOptions . isRestrictedEdit ) ) {
2020-11-09 11:52:21 +00:00
this . disableEditing ( true ) ;
Common . NotificationCenter . trigger ( 'api:disconnect' ) ;
}
2017-11-22 12:20:51 +00:00
2017-11-22 13:32:43 +00:00
var value = Common . localStorage . getItem ( "de-license-warning" ) ;
2016-03-11 00:48:53 +00:00
value = ( value !== null ) ? parseInt ( value ) : 0 ;
var now = ( new Date ) . getTime ( ) ;
if ( now - value > 86400000 ) {
Common . UI . info ( {
2020-11-09 11:52:21 +00:00
maxwidth : 500 ,
2016-03-11 00:48:53 +00:00
title : this . textNoLicenseTitle ,
2018-05-28 10:00:03 +00:00
msg : license ,
buttons : buttons ,
primary : primary ,
2016-03-11 00:48:53 +00:00
callback : function ( btn ) {
2019-02-12 07:59:32 +00:00
Common . localStorage . setItem ( "de-license-warning" , now ) ;
2016-04-13 12:40:58 +00:00
if ( btn == 'buynow' )
2019-02-22 12:52:33 +00:00
window . open ( '{{PUBLISHER_URL}}' , "_blank" ) ;
2016-04-13 12:40:58 +00:00
else if ( btn == 'contact' )
2019-02-22 12:52:33 +00:00
window . open ( 'mailto:{{SALES_EMAIL}}' , "_blank" ) ;
2016-03-11 00:48:53 +00:00
}
} ) ;
}
2019-03-15 10:30:01 +00:00
} else if ( ! this . appOptions . isDesktopApp && ! this . appOptions . canBrandingExt &&
2022-11-09 11:45:46 +00:00
this . editorConfig && this . editorConfig . customization && ( this . editorConfig . customization . loaderName || this . editorConfig . customization . loaderLogo ||
2022-11-11 12:03:51 +00:00
this . editorConfig . customization . font && this . editorConfig . customization . font . name ) ) {
2019-03-15 10:30:01 +00:00
Common . UI . warning ( {
title : this . textPaidFeature ,
msg : this . textCustomLoader ,
buttons : [ { value : 'contact' , caption : this . textContactUs } , { value : 'close' , caption : this . textClose } ] ,
primary : 'contact' ,
callback : function ( btn ) {
if ( btn == 'contact' )
2019-06-07 15:23:33 +00:00
window . open ( 'mailto:{{SALES_EMAIL}}' , "_blank" ) ;
2019-03-15 10:30:01 +00:00
}
} ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onOpenDocument : function ( progress ) {
var elem = document . getElementById ( 'loadmask-text' ) ;
var proc = ( progress . asc _getCurrentFont ( ) + progress . asc _getCurrentImage ( ) ) / ( progress . asc _getFontsCount ( ) + progress . asc _getImagesCount ( ) ) ;
2021-06-18 13:53:50 +00:00
proc = this . textLoadingDocument + ': ' + Common . Utils . String . fixedDigits ( Math . min ( Math . round ( proc * 100 ) , 100 ) , 3 , " " ) + "%" ;
2018-11-07 13:32:22 +00:00
elem ? elem . innerHTML = proc : this . loadMask && this . loadMask . setTitle ( proc ) ;
2016-03-11 00:48:53 +00:00
} ,
onEditorPermissions : function ( params ) {
2016-08-29 11:46:15 +00:00
var licType = params . asc _getLicenseType ( ) ;
2016-08-30 10:30:11 +00:00
if ( Asc . c _oLicenseResult . Expired === licType || Asc . c _oLicenseResult . Error === licType || Asc . c _oLicenseResult . ExpiredTrial === licType ) {
2016-08-29 11:46:15 +00:00
Common . UI . warning ( {
title : this . titleLicenseExp ,
msg : this . warnLicenseExp ,
buttons : [ ] ,
closable : false
} ) ;
return ;
}
2020-11-24 11:54:41 +00:00
if ( Asc . c _oLicenseResult . ExpiredLimited === licType )
this . _state . licenseType = licType ;
2016-08-29 11:46:15 +00:00
2021-05-12 09:33:10 +00:00
if ( this . onServerVersion ( params . asc _getBuildVersion ( ) ) || ! this . onLanguageLoaded ( ) ) return ;
2017-04-11 11:37:45 +00:00
2022-02-01 17:04:34 +00:00
var isPDFViewer = /^(?:(pdf|djvu|xps|oxps))$/ . test ( this . document . fileType ) ;
2016-03-11 00:48:53 +00:00
this . permissions . review = ( this . permissions . review === undefined ) ? ( this . permissions . edit !== false ) : this . permissions . review ;
2016-10-20 07:22:16 +00:00
if ( params . asc _getRights ( ) !== Asc . c _oRights . Edit )
this . permissions . edit = this . permissions . review = false ;
2020-11-25 14:27:53 +00:00
this . appOptions . permissionsLicense = licType ;
2016-03-11 00:48:53 +00:00
this . appOptions . canAnalytics = params . asc _getIsAnalyticsEnable ( ) ;
2016-12-20 15:40:43 +00:00
this . appOptions . canLicense = ( licType === Asc . c _oLicenseResult . Success || licType === Asc . c _oLicenseResult . SuccessLimit ) ;
2016-06-30 08:56:15 +00:00
this . appOptions . isLightVersion = params . asc _getIsLight ( ) ;
2016-07-06 14:17:28 +00:00
/** coauthoring begin **/
this . appOptions . canCoAuthoring = ! this . appOptions . isLightVersion ;
/** coauthoring end **/
2016-03-11 00:48:53 +00:00
this . appOptions . isOffline = this . api . asc _isOffline ( ) ;
2022-05-24 13:22:37 +00:00
this . appOptions . canCreateNew = this . appOptions . canCreateNew && ! ( this . appOptions . isOffline && isPDFViewer ) ;
2020-06-08 11:02:48 +00:00
this . appOptions . isCrypted = this . api . asc _isCrypto ( ) ;
2017-06-15 13:35:55 +00:00
this . appOptions . isReviewOnly = this . permissions . review === true && this . permissions . edit === false ;
2016-06-16 13:09:26 +00:00
this . appOptions . canRequestEditRights = this . editorConfig . canRequestEditRights ;
2016-03-11 00:48:53 +00:00
this . appOptions . canEdit = ( this . permissions . edit !== false || this . permissions . review === true ) && // can edit or review
( this . editorConfig . canRequestEditRights || this . editorConfig . mode !== 'view' ) && // if mode=="view" -> canRequestEditRights must be defined
( ! this . appOptions . isReviewOnly || this . appOptions . canLicense ) ; // if isReviewOnly==true -> canLicense must be true
this . appOptions . isEdit = this . appOptions . canLicense && this . appOptions . canEdit && this . editorConfig . mode !== 'view' ;
2017-03-29 09:01:34 +00:00
this . appOptions . canReview = this . permissions . review === true && this . appOptions . canLicense && this . appOptions . isEdit ;
2018-12-18 14:27:19 +00:00
this . appOptions . canViewReview = true ;
2018-04-03 13:40:31 +00:00
this . appOptions . canUseHistory = this . appOptions . canLicense && this . editorConfig . canUseHistory && this . appOptions . canCoAuthoring && ! this . appOptions . isOffline ;
2016-03-11 00:48:53 +00:00
this . appOptions . canHistoryClose = this . editorConfig . canHistoryClose ;
2020-09-11 08:26:19 +00:00
this . appOptions . canHistoryRestore = this . editorConfig . canHistoryRestore ;
2017-03-31 10:57:19 +00:00
this . appOptions . canUseMailMerge = this . appOptions . canLicense && this . appOptions . canEdit && ! this . appOptions . isOffline ;
2016-03-11 00:48:53 +00:00
this . appOptions . canSendEmailAddresses = this . appOptions . canLicense && this . editorConfig . canSendEmailAddresses && this . appOptions . canEdit && this . appOptions . canCoAuthoring ;
2018-08-13 14:04:29 +00:00
this . appOptions . canComments = this . appOptions . canLicense && ( this . permissions . comment === undefined ? this . appOptions . isEdit : this . permissions . comment ) && ( this . editorConfig . mode !== 'view' ) ;
2022-02-01 17:04:34 +00:00
this . appOptions . canComments = ! isPDFViewer && this . appOptions . canComments && ! ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . comments === false ) ;
this . appOptions . canViewComments = this . appOptions . canComments || ! isPDFViewer && ! ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . comments === false ) ;
2021-11-19 19:41:44 +00:00
this . appOptions . canChat = this . appOptions . canLicense && ! this . appOptions . isOffline && ! ( this . permissions . chat === false || ( this . permissions . chat === undefined ) &&
( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . chat === false ) ;
if ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . chat !== undefined ) {
console . log ( "Obsolete: The 'chat' parameter of the 'customization' section is deprecated. Please use 'chat' parameter in the permissions instead." ) ;
}
2016-03-11 00:48:53 +00:00
this . appOptions . canEditStyles = this . appOptions . canLicense && this . appOptions . canEdit ;
this . appOptions . canPrint = ( this . permissions . print !== false ) ;
2022-11-15 13:45:28 +00:00
this . appOptions . canPreviewPrint = this . appOptions . canPrint && ! Common . Utils . isMac && this . appOptions . isDesktopApp ;
2022-12-05 08:48:43 +00:00
this . appOptions . canQuickPrint = this . appOptions . canPrint && ! Common . Utils . isMac && this . appOptions . isDesktopApp ;
2020-09-11 08:26:19 +00:00
this . appOptions . canRename = this . editorConfig . canRename ;
2016-10-05 14:08:53 +00:00
this . appOptions . buildVersion = params . asc _getBuildVersion ( ) ;
2017-04-11 13:40:01 +00:00
this . appOptions . canForcesave = this . appOptions . isEdit && ! this . appOptions . isOffline && ( typeof ( this . editorConfig . customization ) == 'object' && ! ! this . editorConfig . customization . forcesave ) ;
this . appOptions . forcesave = this . appOptions . canForcesave ;
2021-02-04 09:39:56 +00:00
this . appOptions . canEditComments = this . appOptions . isOffline || ! this . permissions . editCommentAuthorOnly ;
this . appOptions . canDeleteComments = this . appOptions . isOffline || ! this . permissions . deleteCommentAuthorOnly ;
if ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . commentAuthorOnly === true ) {
console . log ( "Obsolete: The 'commentAuthorOnly' parameter of the 'customization' section is deprecated. Please use 'editCommentAuthorOnly' and 'deleteCommentAuthorOnly' parameters in the permissions instead." ) ;
if ( this . permissions . editCommentAuthorOnly === undefined && this . permissions . deleteCommentAuthorOnly === undefined )
this . appOptions . canEditComments = this . appOptions . canDeleteComments = this . appOptions . isOffline ;
}
2021-07-22 19:56:15 +00:00
if ( typeof ( this . editorConfig . customization ) == 'object' ) {
if ( this . editorConfig . customization . showReviewChanges !== undefined )
console . log ( "Obsolete: The 'showReviewChanges' parameter of the 'customization' section is deprecated. Please use 'showReviewChanges' parameter in the 'customization.review' section instead." ) ;
if ( this . editorConfig . customization . reviewDisplay !== undefined )
console . log ( "Obsolete: The 'reviewDisplay' parameter of the 'customization' section is deprecated. Please use 'reviewDisplay' parameter in the 'customization.review' section instead." ) ;
if ( this . editorConfig . customization . trackChanges !== undefined )
console . log ( "Obsolete: The 'trackChanges' parameter of the 'customization' section is deprecated. Please use 'trackChanges' parameter in the 'customization.review' section instead." ) ;
}
2017-10-25 14:36:59 +00:00
this . appOptions . trialMode = params . asc _getLicenseMode ( ) ;
2020-11-02 20:26:17 +00:00
this . appOptions . isBeta = params . asc _getIsBeta ( ) ;
2021-09-09 16:15:29 +00:00
this . appOptions . isSignatureSupport = this . appOptions . isEdit && this . appOptions . isDesktopApp && this . appOptions . isOffline && this . api . asc _isSignaturesSupport ( ) && ( this . permissions . protect !== false ) ;
this . appOptions . isPasswordSupport = this . appOptions . isEdit && this . api . asc _isProtectionSupport ( ) && ( this . permissions . protect !== false ) ;
2018-08-01 16:08:24 +00:00
this . appOptions . canProtect = ( this . appOptions . isSignatureSupport || this . appOptions . isPasswordSupport ) ;
2018-06-26 12:46:49 +00:00
this . appOptions . canEditContentControl = ( this . permissions . modifyContentControl !== false ) ;
2018-04-19 14:26:42 +00:00
this . appOptions . canHelp = ! ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . help === false ) ;
2021-09-22 16:17:14 +00:00
this . appOptions . canSubmitForms = false ; // this.appOptions.canLicense && (typeof (this.editorConfig.customization) == 'object') && !!this.editorConfig.customization.submitForm;
2020-11-24 11:54:41 +00:00
this . appOptions . canFillForms = this . appOptions . canLicense && ( ( this . permissions . fillForms === undefined ) ? this . appOptions . isEdit : this . permissions . fillForms ) && ( this . editorConfig . mode !== 'view' ) ;
2018-07-19 14:47:03 +00:00
this . appOptions . isRestrictedEdit = ! this . appOptions . isEdit && ( this . appOptions . canComments || this . appOptions . canFillForms ) ;
if ( this . appOptions . isRestrictedEdit && this . appOptions . canComments && this . appOptions . canFillForms ) // must be one restricted mode, priority for filling forms
this . appOptions . canComments = false ;
2016-03-11 00:48:53 +00:00
2017-03-29 09:01:34 +00:00
if ( this . appOptions . isLightVersion ) {
this . appOptions . canUseHistory =
this . appOptions . canReview =
this . appOptions . isReviewOnly = false ;
}
if ( ! this . appOptions . canCoAuthoring ) {
2017-06-15 13:35:55 +00:00
this . appOptions . canChat = false ;
2017-03-29 09:01:34 +00:00
}
2022-02-11 14:54:01 +00:00
// var type = /^(?:(djvu))$/.exec(this.document.fileType);
this . appOptions . canDownloadOrigin = false ;
this . appOptions . canDownload = this . permissions . download !== false ;
2022-02-01 17:04:34 +00:00
this . appOptions . canUseSelectHandTools = this . appOptions . canUseThumbnails = this . appOptions . canUseViwerNavigation = isPDFViewer ;
2021-09-22 16:17:14 +00:00
this . appOptions . canDownloadForms = this . appOptions . canLicense && this . appOptions . canDownload ;
2016-03-11 00:48:53 +00:00
2018-09-12 11:52:13 +00:00
this . appOptions . fileKey = this . document . key ;
2019-04-18 09:18:14 +00:00
this . appOptions . canBranding = params . asc _getCustomization ( ) ;
2016-09-19 14:04:56 +00:00
if ( this . appOptions . canBranding )
2017-04-21 13:36:06 +00:00
appHeader . setBranding ( this . editorConfig . customization ) ;
2016-03-11 00:48:53 +00:00
2020-12-21 11:07:00 +00:00
this . appOptions . canFavorite = this . document . info && ( this . document . info . favorite !== undefined && this . document . info . favorite !== null ) && ! this . appOptions . isOffline ;
this . appOptions . canFavorite && appHeader . setFavorite ( this . document . info . favorite ) ;
2021-02-11 16:26:06 +00:00
this . appOptions . canUseReviewPermissions = this . appOptions . canLicense && ( ! ! this . permissions . reviewGroups ||
2021-02-05 10:51:37 +00:00
this . editorConfig . customization && this . editorConfig . customization . reviewPermissions && ( typeof ( this . editorConfig . customization . reviewPermissions ) == 'object' ) ) ;
2021-03-17 09:02:06 +00:00
this . appOptions . canUseCommentPermissions = this . appOptions . canLicense && ! ! this . permissions . commentGroups ;
2022-02-09 15:14:19 +00:00
this . appOptions . canUseUserInfoPermissions = this . appOptions . canLicense && ! ! this . permissions . userInfoGroups ;
2021-06-30 18:04:25 +00:00
AscCommon . UserInfoParser . setParser ( true ) ;
2021-03-26 11:29:16 +00:00
AscCommon . UserInfoParser . setCurrentName ( this . appOptions . user . fullname ) ;
this . appOptions . canUseReviewPermissions && AscCommon . UserInfoParser . setReviewPermissions ( this . permissions . reviewGroups , this . editorConfig . customization . reviewPermissions ) ;
this . appOptions . canUseCommentPermissions && AscCommon . UserInfoParser . setCommentPermissions ( this . permissions . commentGroups ) ;
2022-02-09 15:14:19 +00:00
this . appOptions . canUseUserInfoPermissions && AscCommon . UserInfoParser . setUserInfoPermissions ( this . permissions . userInfoGroups ) ;
2021-03-26 11:29:16 +00:00
appHeader . setUserName ( AscCommon . UserInfoParser . getParsedName ( AscCommon . UserInfoParser . getCurrentName ( ) ) ) ;
2020-08-04 19:20:20 +00:00
2017-04-21 13:36:06 +00:00
this . appOptions . canRename && appHeader . setCanRename ( true ) ;
2016-11-16 09:38:16 +00:00
this . appOptions . canBrandingExt = params . asc _getCanBranding ( ) && ( typeof this . editorConfig . customization == 'object' || this . editorConfig . plugins ) ;
2021-04-24 20:40:06 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.Plugins' ) . setMode ( this . appOptions , this . api ) ;
2022-10-24 07:28:30 +00:00
this . editorConfig . customization && Common . UI . LayoutManager . init ( this . editorConfig . customization . layout , this . appOptions . canBrandingExt ) ;
2022-02-17 09:40:10 +00:00
this . editorConfig . customization && Common . UI . FeaturesManager . init ( this . editorConfig . customization . features , this . appOptions . canBrandingExt ) ;
2016-10-28 13:38:33 +00:00
2019-04-12 12:15:06 +00:00
if ( this . appOptions . canComments )
Common . NotificationCenter . on ( 'comments:cleardummy' , _ . bind ( this . onClearDummyComment , this ) ) ;
2019-04-15 11:06:41 +00:00
Common . NotificationCenter . on ( 'comments:showdummy' , _ . bind ( this . onShowDummyComment , this ) ) ;
2019-04-12 12:15:06 +00:00
2022-04-13 09:23:17 +00:00
// change = true by default in editor
2022-05-11 20:16:07 +00:00
this . appOptions . canLiveView = ! ! params . asc _getLiveViewerSupport ( ) && ( this . editorConfig . mode === 'view' ) && ! isPDFViewer ; // viewer: change=false when no flag canLiveViewer (i.g. old license), change=true by default when canLiveViewer==true
2022-04-13 09:54:53 +00:00
this . appOptions . canChangeCoAuthoring = this . appOptions . isEdit && this . appOptions . canCoAuthoring && ! ( this . editorConfig . coEditing && typeof this . editorConfig . coEditing == 'object' && this . editorConfig . coEditing . change === false ) ||
2022-05-11 20:16:07 +00:00
this . appOptions . canLiveView && ! ( this . editorConfig . coEditing && typeof this . editorConfig . coEditing == 'object' && this . editorConfig . coEditing . change === false ) ;
2021-04-02 08:08:36 +00:00
2021-04-01 10:36:08 +00:00
this . loadCoAuthSettings ( ) ;
2016-03-11 00:48:53 +00:00
this . applyModeCommonElements ( ) ;
2017-06-14 11:53:29 +00:00
this . applyModeEditorElements ( ) ;
if ( ! this . appOptions . isEdit ) {
2017-04-10 13:39:03 +00:00
Common . NotificationCenter . trigger ( 'app:face' , this . appOptions ) ;
2016-03-11 00:48:53 +00:00
this . hidePreloader ( ) ;
2017-04-10 13:41:07 +00:00
this . onLongActionBegin ( Asc . c _oAscAsyncActionType . BlockInteraction , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
}
2017-04-10 13:39:03 +00:00
2018-07-19 14:47:03 +00:00
this . api . asc _setViewMode ( ! this . appOptions . isEdit && ! this . appOptions . isRestrictedEdit ) ;
2018-08-13 14:04:29 +00:00
this . appOptions . isRestrictedEdit && this . appOptions . canComments && this . api . asc _setRestriction ( Asc . c _oAscRestrictionType . OnlyComments ) ;
this . appOptions . isRestrictedEdit && this . appOptions . canFillForms && this . api . asc _setRestriction ( Asc . c _oAscRestrictionType . OnlyForms ) ;
2021-07-29 15:26:31 +00:00
this . appOptions . isRestrictedEdit && this . appOptions . canFillForms && this . api . asc _SetHighlightRequiredFields ( true ) ;
2017-04-10 13:39:03 +00:00
this . api . asc _LoadDocument ( ) ;
2016-03-11 00:48:53 +00:00
} ,
2021-04-01 10:36:08 +00:00
loadCoAuthSettings : function ( ) {
2021-04-02 08:08:36 +00:00
var fastCoauth = true ,
2021-04-01 10:36:08 +00:00
autosave = 1 ,
value ;
if ( this . appOptions . isEdit && ! this . appOptions . isOffline && this . appOptions . canCoAuthoring ) {
2021-04-07 21:48:16 +00:00
if ( ! this . appOptions . canChangeCoAuthoring ) { //can't change co-auth. mode. Use coEditing.mode or 'fast' by default
value = ( this . editorConfig . coEditing && this . editorConfig . coEditing . mode !== undefined ) ? ( this . editorConfig . coEditing . mode === 'strict' ? 0 : 1 ) : null ;
2021-04-02 08:08:36 +00:00
if ( value === null && this . appOptions . customization && this . appOptions . customization . autosave === false ) {
2021-04-07 21:48:16 +00:00
value = 0 ; // use customization.autosave only when coEditing.mode is null
2021-04-02 08:08:36 +00:00
}
2021-04-01 10:36:08 +00:00
} else {
value = Common . localStorage . getItem ( "de-settings-coauthmode" ) ;
if ( value === null ) {
2021-04-07 21:48:16 +00:00
value = ( this . editorConfig . coEditing && this . editorConfig . coEditing . mode !== undefined ) ? ( this . editorConfig . coEditing . mode === 'strict' ? 0 : 1 ) : null ;
2021-04-01 10:36:08 +00:00
if ( value === null && ! Common . localStorage . itemExists ( "de-settings-autosave" ) &&
this . appOptions . customization && this . appOptions . customization . autosave === false ) {
value = 0 ; // use customization.autosave only when de-settings-coauthmode and de-settings-autosave are null
}
}
}
2021-04-02 08:08:36 +00:00
fastCoauth = ( value === null || parseInt ( value ) == 1 ) ;
2021-04-01 10:36:08 +00:00
value = Common . localStorage . getItem ( ( fastCoauth ) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict" ) ;
if ( value == null ) value = fastCoauth ? 'none' : 'last' ;
Common . Utils . InternalSettings . set ( ( fastCoauth ) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict" , value ) ;
} else if ( ! this . appOptions . isEdit && this . appOptions . isRestrictedEdit ) {
fastCoauth = true ;
2022-04-19 15:59:18 +00:00
} else if ( this . appOptions . canLiveView && ! this . appOptions . isOffline ) { // viewer
2022-04-13 09:23:17 +00:00
value = Common . localStorage . getItem ( "de-settings-view-coauthmode" ) ;
2022-04-19 15:59:18 +00:00
if ( ! this . appOptions . canChangeCoAuthoring || value === null ) { // Use coEditing.mode or 'fast' by default
value = this . editorConfig . coEditing && this . editorConfig . coEditing . mode === 'strict' ? 0 : 1 ;
2022-02-15 07:41:16 +00:00
}
fastCoauth = ( parseInt ( value ) == 1 ) ;
2022-04-19 20:20:29 +00:00
// don't show collaborative marks in live viewer
Common . Utils . InternalSettings . set ( "de-settings-showchanges-fast" , 'none' ) ;
Common . Utils . InternalSettings . set ( "de-settings-showchanges-strict" , 'none' ) ;
2021-04-01 10:36:08 +00:00
} else {
fastCoauth = false ;
autosave = 0 ;
}
if ( this . appOptions . isEdit ) {
value = Common . localStorage . getItem ( "de-settings-autosave" ) ;
if ( value === null && this . appOptions . customization && this . appOptions . customization . autosave === false )
value = 0 ;
autosave = ( ! fastCoauth && value !== null ) ? parseInt ( value ) : ( this . appOptions . canCoAuthoring ? 1 : 0 ) ;
}
Common . Utils . InternalSettings . set ( "de-settings-coauthmode" , fastCoauth ) ;
Common . Utils . InternalSettings . set ( "de-settings-autosave" , autosave ) ;
} ,
2016-03-11 00:48:53 +00:00
applyModeCommonElements : function ( ) {
window . editor _elements _prepared = true ;
var app = this . getApplication ( ) ,
viewport = app . getController ( 'Viewport' ) . getView ( 'Viewport' ) ,
statusbarView = app . getController ( 'Statusbar' ) . getView ( 'Statusbar' ) ,
2022-04-27 19:24:39 +00:00
documentHolder = app . getController ( 'DocumentHolder' ) ,
2022-10-28 18:36:19 +00:00
toolbarController = app . getController ( 'Toolbar' ) ,
leftMenu = app . getController ( 'LeftMenu' ) ;
2016-03-11 00:48:53 +00:00
viewport && viewport . setMode ( this . appOptions ) ;
statusbarView && statusbarView . setMode ( this . appOptions ) ;
2018-05-15 12:37:26 +00:00
toolbarController . setMode ( this . appOptions ) ;
2016-03-11 00:48:53 +00:00
documentHolder . setMode ( this . appOptions ) ;
2022-10-28 18:36:19 +00:00
leftMenu . setMode ( this . appOptions ) ;
2016-03-11 00:48:53 +00:00
2022-10-18 13:37:35 +00:00
viewport . applyCommonMode ( ) ;
2022-10-21 20:22:16 +00:00
var printController = app . getController ( 'Print' ) ;
printController && this . api && printController . setApi ( this . api ) . setMode ( this . appOptions ) ;
2016-03-11 00:48:53 +00:00
this . api . asc _registerCallback ( 'asc_onSendThemeColors' , _ . bind ( this . onSendThemeColors , this ) ) ;
2017-04-11 11:40:18 +00:00
this . api . asc _registerCallback ( 'asc_onDownloadUrl' , _ . bind ( this . onDownloadUrl , this ) ) ;
2017-08-25 06:39:04 +00:00
this . api . asc _registerCallback ( 'asc_onAuthParticipantsChanged' , _ . bind ( this . onAuthParticipantsChanged , this ) ) ;
this . api . asc _registerCallback ( 'asc_onParticipantsChanged' , _ . bind ( this . onAuthParticipantsChanged , this ) ) ;
2020-12-20 09:22:46 +00:00
this . api . asc _registerCallback ( 'asc_onConnectionStateChanged' , _ . bind ( this . onUserConnection , this ) ) ;
2018-07-19 12:31:13 +00:00
this . api . asc _registerCallback ( 'asc_onDocumentModifiedChanged' , _ . bind ( this . onDocumentModifiedChanged , this ) ) ;
2022-03-22 16:30:09 +00:00
var value = Common . localStorage . getItem ( 'de-settings-unit' ) ;
value = ( value !== null ) ? parseInt ( value ) : ( this . appOptions . customization && this . appOptions . customization . unit ? Common . Utils . Metric . c _MetricUnits [ this . appOptions . customization . unit . toLocaleLowerCase ( ) ] : Common . Utils . Metric . getDefaultMetric ( ) ) ;
( value === undefined ) && ( value = Common . Utils . Metric . getDefaultMetric ( ) ) ;
Common . Utils . Metric . setCurrentMetric ( value ) ;
Common . Utils . InternalSettings . set ( "de-settings-unit" , value ) ;
2016-03-11 00:48:53 +00:00
} ,
applyModeEditorElements : function ( ) {
2018-12-17 08:37:43 +00:00
/** coauthoring begin **/
this . contComments . setMode ( this . appOptions ) ;
this . contComments . setConfig ( { config : this . editorConfig } , this . api ) ;
/** coauthoring end **/
2018-12-18 14:27:19 +00:00
var me = this ,
application = this . getApplication ( ) ,
reviewController = application . getController ( 'Common.Controllers.ReviewChanges' ) ;
2019-10-09 10:23:40 +00:00
reviewController . setMode ( me . appOptions ) . setConfig ( { config : me . editorConfig } , me . api ) . loadDocument ( { doc : me . document } ) ;
2018-12-18 14:27:19 +00:00
2022-02-06 17:58:45 +00:00
var toolbarController = application . getController ( 'Toolbar' ) ;
toolbarController && toolbarController . setApi ( me . api ) ;
2019-03-28 08:47:51 +00:00
2022-09-27 11:32:41 +00:00
if ( this . appOptions . isRestrictedEdit )
application . getController ( 'DocProtection' ) . setMode ( me . appOptions ) . setConfig ( { config : me . editorConfig } , me . api ) ;
else if ( this . appOptions . isEdit ) {
2019-03-28 08:47:51 +00:00
var rightmenuController = application . getController ( 'RightMenu' ) ,
2018-12-18 14:27:19 +00:00
fontsControllers = application . getController ( 'Common.Controllers.Fonts' ) ;
2016-03-11 00:48:53 +00:00
fontsControllers && fontsControllers . setApi ( me . api ) ;
rightmenuController && rightmenuController . setApi ( me . api ) ;
2022-09-21 14:15:33 +00:00
application . getController ( 'Common.Controllers.Protection' ) . setMode ( me . appOptions ) . setConfig ( { config : me . editorConfig } , me . api ) ;
application . getController ( 'DocProtection' ) . setMode ( me . appOptions ) . setConfig ( { config : me . editorConfig } , me . api ) ;
2016-03-11 00:48:53 +00:00
var viewport = this . getApplication ( ) . getController ( 'Viewport' ) . getView ( 'Viewport' ) ;
viewport . applyEditorMode ( ) ;
2018-05-15 12:37:26 +00:00
var rightmenuView = rightmenuController . getView ( 'RightMenu' ) ;
if ( rightmenuView ) {
rightmenuView . setApi ( me . api ) ;
rightmenuView . on ( 'editcomplete' , _ . bind ( me . onEditComplete , me ) ) ;
rightmenuView . setMode ( me . appOptions ) ;
}
2016-03-11 00:48:53 +00:00
2018-05-15 12:37:26 +00:00
var toolbarView = ( toolbarController ) ? toolbarController . getView ( ) : null ;
2016-03-11 00:48:53 +00:00
if ( toolbarView ) {
2018-05-15 12:37:26 +00:00
toolbarView . setApi ( me . api ) ;
toolbarView . on ( 'editcomplete' , _ . bind ( me . onEditComplete , me ) ) ;
2016-03-11 00:48:53 +00:00
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 ) ) ;
2020-09-30 15:52:11 +00:00
toolbarView . on ( 'insertcontrol' , _ . bind ( me . onInsertControl , me ) ) ;
2016-03-11 00:48:53 +00:00
}
2022-03-22 16:30:09 +00:00
var value = Common . Utils . InternalSettings . get ( "de-settings-unit" ) ;
2016-04-07 09:17:34 +00:00
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 ) ) ;
2016-03-11 00:48:53 +00:00
2021-02-11 17:13:47 +00:00
value = Common . localStorage . itemExists ( 'de-hidden-rulers' ) ? Common . localStorage . getBool ( 'de-hidden-rulers' ) : ( this . appOptions . customization && ! ! this . appOptions . customization . hideRulers ) ;
Common . Utils . InternalSettings . set ( "de-hidden-rulers" , value ) ;
me . api . asc _SetViewRulers ( ! value ) ;
2016-03-11 00:48:53 +00:00
me . api . asc _registerCallback ( 'asc_onDocumentCanSaveChanged' , _ . bind ( me . onDocumentCanSaveChanged , me ) ) ;
/** coauthoring begin **/
me . api . asc _registerCallback ( 'asc_onCollaborativeChanges' , _ . bind ( me . onCollaborativeChanges , me ) ) ;
me . api . asc _registerCallback ( 'asc_OnTryUndoInFastCollaborative' , _ . bind ( me . onTryUndoInFastCollaborative , me ) ) ;
2020-03-25 13:07:23 +00:00
me . api . asc _registerCallback ( 'asc_onConvertEquationToMath' , _ . bind ( me . onConvertEquationToMath , me ) ) ;
2016-03-11 00:48:53 +00:00
/** coauthoring end **/
2016-04-05 11:52:34 +00:00
if ( me . stackLongActions . exist ( { id : ApplyEditRights , type : Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] } ) ) {
me . onLongActionEnd ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , ApplyEditRights ) ;
2016-03-11 00:48:53 +00:00
} else if ( ! this . _isDocReady ) {
2017-03-29 11:19:57 +00:00
Common . NotificationCenter . trigger ( 'app:face' , me . appOptions ) ;
2016-03-11 00:48:53 +00:00
me . hidePreloader ( ) ;
2016-04-05 11:52:34 +00:00
me . onLongActionBegin ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
}
// Message on window close
window . onbeforeunload = _ . bind ( me . onBeforeUnload , me ) ;
window . onunload = _ . bind ( me . onUnload , me ) ;
}
} ,
2022-06-15 19:09:53 +00:00
onExternalMessage : function ( msg , options ) {
2016-03-11 00:48:53 +00:00
if ( msg && msg . msg ) {
msg . msg = ( msg . msg ) . toString ( ) ;
2022-06-15 19:09:53 +00:00
this . showTips ( [ msg . msg . charAt ( 0 ) . toUpperCase ( ) + msg . msg . substring ( 1 ) ] , options ) ;
2016-03-11 00:48:53 +00:00
2017-05-16 07:46:04 +00:00
Common . component . Analytics . trackEvent ( 'External Error' ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onError : function ( id , level , errData ) {
2018-10-08 11:21:05 +00:00
if ( id == Asc . c _oAscError . ID . LoadingScriptError ) {
this . showTips ( [ this . scriptLoadError ] ) ;
2018-10-08 14:06:37 +00:00
this . tooltip && this . tooltip . getBSTip ( ) . $tip . css ( 'z-index' , 10000 ) ;
2018-10-08 11:21:05 +00:00
return ;
2022-11-28 19:11:35 +00:00
} else if ( id == Asc . c _oAscError . ID . CanNotPasteImage ) {
this . showTips ( [ this . errorCannotPasteImg ] , { timeout : 7000 , hideCloseTip : true } ) ;
return ;
2018-10-08 11:21:05 +00:00
}
2016-03-11 00:48:53 +00:00
this . hidePreloader ( ) ;
2016-04-05 11:52:34 +00:00
this . onLongActionEnd ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
var config = {
2018-05-03 15:27:05 +00:00
closable : true
2016-03-11 00:48:53 +00:00
} ;
switch ( id )
{
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . Unknown :
2016-03-11 00:48:53 +00:00
config . msg = this . unknownErrorText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . ConvertationTimeout :
2016-03-11 00:48:53 +00:00
config . msg = this . convertationTimeoutText ;
break ;
2016-09-13 06:40:44 +00:00
case Asc . c _oAscError . ID . ConvertationOpenError :
config . msg = this . openErrorText ;
break ;
case Asc . c _oAscError . ID . ConvertationSaveError :
2020-11-24 12:31:51 +00:00
config . msg = ( this . appOptions . isDesktopApp && this . appOptions . isOffline ) ? this . saveErrorTextDesktop : this . saveErrorText ;
2016-03-11 00:48:53 +00:00
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . DownloadError :
2016-03-11 00:48:53 +00:00
config . msg = this . downloadErrorText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . UplImageSize :
2016-03-11 00:48:53 +00:00
config . msg = this . uploadImageSizeMessage ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . UplImageExt :
2016-03-11 00:48:53 +00:00
config . msg = this . uploadImageExtMessage ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . UplImageFileCount :
2016-03-11 00:48:53 +00:00
config . msg = this . uploadImageFileCountMessage ;
break ;
2019-10-11 12:12:59 +00:00
case Asc . c _oAscError . ID . UplDocumentSize :
config . msg = this . uploadDocSizeMessage ;
break ;
case Asc . c _oAscError . ID . UplDocumentExt :
config . msg = this . uploadDocExtMessage ;
break ;
case Asc . c _oAscError . ID . UplDocumentFileCount :
config . msg = this . uploadDocFileCountMessage ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . SplitCellMaxRows :
2016-03-11 00:48:53 +00:00
config . msg = this . splitMaxRowsErrorText . replace ( '%1' , errData . get _Value ( ) ) ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . SplitCellMaxCols :
2016-03-11 00:48:53 +00:00
config . msg = this . splitMaxColsErrorText . replace ( '%1' , errData . get _Value ( ) ) ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . SplitCellRowsDivider :
2016-03-11 00:48:53 +00:00
config . msg = this . splitDividerErrorText . replace ( '%1' , errData . get _Value ( ) ) ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . VKeyEncrypt :
2016-11-28 11:52:03 +00:00
config . msg = this . errorToken ;
2016-03-11 00:48:53 +00:00
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . KeyExpire :
2016-11-28 11:52:03 +00:00
config . msg = this . errorTokenExpire ;
2016-03-11 00:48:53 +00:00
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . UserCountExceed :
2016-03-11 00:48:53 +00:00
config . msg = this . errorUsersExceed ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . CoAuthoringDisconnect :
2016-10-12 13:32:48 +00:00
config . msg = this . errorViewerDisconnect ;
2016-03-11 00:48:53 +00:00
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . ConvertationPassword :
2016-03-11 00:48:53 +00:00
config . msg = this . errorFilePassProtect ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . StockChartError :
2016-03-11 00:48:53 +00:00
config . msg = this . errorStockChart ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . DataRangeError :
2016-03-11 00:48:53 +00:00
config . msg = this . errorDataRange ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . Database :
2016-03-11 00:48:53 +00:00
config . msg = this . errorDatabaseConnection ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . UserDrop :
2016-03-11 00:48:53 +00:00
if ( this . _state . lostEditingRights ) {
this . _state . lostEditingRights = false ;
return ;
}
this . _state . lostEditingRights = true ;
config . msg = this . errorUserDrop ;
2019-04-08 15:40:08 +00:00
Common . NotificationCenter . trigger ( 'collaboration:sharingdeny' ) ;
2016-03-11 00:48:53 +00:00
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . MailMergeLoadFile :
2016-03-11 00:48:53 +00:00
config . msg = this . errorMailMergeLoadFile ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . MailMergeSaveFile :
2016-03-11 00:48:53 +00:00
config . msg = this . errorMailMergeSaveFile ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . Warning :
2019-11-01 14:43:24 +00:00
config . msg = this . errorConnectToServer ;
2018-05-03 15:27:05 +00:00
config . closable = false ;
2016-03-11 00:48:53 +00:00
break ;
2016-11-28 11:52:03 +00:00
case Asc . c _oAscError . ID . SessionAbsolute :
config . msg = this . errorSessionAbsolute ;
break ;
case Asc . c _oAscError . ID . SessionIdle :
config . msg = this . errorSessionIdle ;
break ;
case Asc . c _oAscError . ID . SessionToken :
config . msg = this . errorSessionToken ;
break ;
case Asc . c _oAscError . ID . AccessDeny :
config . msg = this . errorAccessDeny ;
break ;
2017-04-12 09:49:16 +00:00
case Asc . c _oAscError . ID . UplImageUrl :
config . msg = this . errorBadImageUrl ;
break ;
2018-01-26 12:39:21 +00:00
case Asc . c _oAscError . ID . ForceSaveButton :
case Asc . c _oAscError . ID . ForceSaveTimeout :
config . msg = this . errorForceSave ;
2021-04-08 09:59:44 +00:00
config . maxwidth = 600 ;
2018-01-26 12:39:21 +00:00
break ;
2018-06-28 10:16:35 +00:00
case Asc . c _oAscError . ID . DataEncrypted :
config . msg = this . errorDataEncrypted ;
break ;
2018-10-25 13:19:29 +00:00
case Asc . c _oAscError . ID . EditingError :
config . msg = ( this . appOptions . isDesktopApp && this . appOptions . isOffline ) ? this . errorEditingSaveas : this . errorEditingDownloadas ;
break ;
2022-03-14 11:44:08 +00:00
case Asc . c _oAscError . ID . MailToClientMissing :
2019-03-04 08:53:58 +00:00
config . msg = this . errorEmailClient ;
break ;
2022-03-14 11:44:08 +00:00
case Asc . c _oAscError . ID . ConvertationOpenLimitError :
2019-08-28 14:29:39 +00:00
config . msg = this . errorFileSizeExceed ;
break ;
2022-03-14 11:44:08 +00:00
case Asc . c _oAscError . ID . UpdateVersion :
2019-11-13 11:14:41 +00:00
config . msg = this . errorUpdateVersionOnDisconnect ;
2019-11-15 14:11:59 +00:00
config . maxwidth = 600 ;
2019-11-13 11:14:41 +00:00
break ;
2022-03-14 11:44:08 +00:00
case Asc . c _oAscError . ID . DirectUrl :
2020-01-20 11:04:17 +00:00
config . msg = this . errorDirectUrl ;
break ;
2022-03-14 11:44:08 +00:00
case Asc . c _oAscError . ID . CannotCompareInCoEditing :
2020-03-13 14:09:06 +00:00
config . msg = this . errorCompare ;
break ;
2020-12-08 08:48:28 +00:00
case Asc . c _oAscError . ID . ComboSeriesError :
config . msg = this . errorComboSeries ;
break ;
2020-12-11 12:26:52 +00:00
case Asc . c _oAscError . ID . Password :
2020-12-10 14:25:39 +00:00
config . msg = this . errorSetPassword ;
break ;
2021-02-09 10:31:05 +00:00
case Asc . c _oAscError . ID . Submit :
config . msg = this . errorSubmit ;
break ;
2021-08-19 17:58:59 +00:00
case Asc . c _oAscError . ID . LoadingFontError :
config . msg = this . errorLoadingFont ;
break ;
2022-03-14 11:44:08 +00:00
case Asc . c _oAscError . ID . ComplexFieldEmptyTOC :
2022-03-14 13:36:33 +00:00
config . maxwidth = 600 ;
2022-03-14 11:44:08 +00:00
config . msg = this . errorEmptyTOC ;
break ;
2022-03-14 13:36:33 +00:00
case Asc . c _oAscError . ID . ComplexFieldNoTOC :
config . msg = this . errorNoTOC ;
break ;
2022-08-30 13:40:07 +00:00
case Asc . c _oAscError . ID . TextFormWrongFormat :
config . msg = this . errorTextFormWrongFormat ;
break ;
2022-10-06 12:03:38 +00:00
case Asc . c _oAscError . ID . PasswordIsNotCorrect :
config . msg = this . errorPasswordIsNotCorrect ;
break ;
2022-11-08 14:18:14 +00:00
case Asc . c _oAscError . ID . ConvertationOpenFormat :
2022-11-07 21:34:47 +00:00
config . maxwidth = 600 ;
2022-11-08 14:18:14 +00:00
if ( errData === 'pdf' )
2022-11-07 21:34:47 +00:00
config . msg = this . errorInconsistentExtPdf . replace ( '%1' , this . document . fileType || '' ) ;
2022-11-08 14:18:14 +00:00
else if ( errData === 'docx' )
2022-11-07 21:34:47 +00:00
config . msg = this . errorInconsistentExtDocx . replace ( '%1' , this . document . fileType || '' ) ;
2022-11-08 14:18:14 +00:00
else if ( errData === 'xlsx' )
2022-11-07 21:34:47 +00:00
config . msg = this . errorInconsistentExtXlsx . replace ( '%1' , this . document . fileType || '' ) ;
2022-11-08 14:18:14 +00:00
else if ( errData === 'pptx' )
2022-11-07 21:34:47 +00:00
config . msg = this . errorInconsistentExtPptx . replace ( '%1' , this . document . fileType || '' ) ;
else
config . msg = this . errorInconsistentExt ;
break ;
2016-03-11 00:48:53 +00:00
default :
2018-03-01 14:37:15 +00:00
config . msg = ( typeof id == 'string' ) ? id : this . errorDefaultMessage . replace ( '%1' , id ) ;
2016-03-11 00:48:53 +00:00
break ;
}
2016-04-05 11:52:34 +00:00
if ( level == Asc . c _oAscError . Level . Critical ) {
2016-03-11 00:48:53 +00:00
// report only critical errors
Common . Gateway . reportError ( id , config . msg ) ;
config . title = this . criticalErrorTitle ;
config . iconCls = 'error' ;
2018-05-03 15:27:05 +00:00
config . closable = false ;
2016-03-11 00:48:53 +00:00
2018-03-01 14:37:15 +00:00
if ( this . appOptions . canBackToFolder && ! this . appOptions . isDesktopApp && typeof id !== 'string' ) {
2020-06-05 17:34:50 +00:00
config . msg += '<br><br>' + this . criticalErrorExtText ;
2016-03-11 00:48:53 +00:00
config . callback = function ( btn ) {
if ( btn == 'ok' )
2019-01-10 13:20:27 +00:00
Common . NotificationCenter . trigger ( 'goback' , true ) ;
2016-03-11 00:48:53 +00:00
}
}
2021-09-14 20:17:43 +00:00
if ( id == Asc . c _oAscError . ID . DataEncrypted || id == Asc . c _oAscError . ID . ConvertationOpenLimitError ) {
2018-06-28 12:56:44 +00:00
this . api . asc _coAuthoringDisconnect ( ) ;
Common . NotificationCenter . trigger ( 'api:disconnect' ) ;
}
2016-03-11 00:48:53 +00:00
}
else {
2017-10-07 09:20:39 +00:00
Common . Gateway . reportWarning ( id , config . msg ) ;
2016-03-11 00:48:53 +00:00
config . title = this . notcriticalErrorTitle ;
config . iconCls = 'warn' ;
config . buttons = [ 'ok' ] ;
config . callback = _ . bind ( function ( btn ) {
2016-04-05 11:52:34 +00:00
if ( id == Asc . c _oAscError . ID . Warning && btn == 'ok' && ( this . appOptions . canDownload || this . appOptions . canDownloadOrigin ) ) {
2016-03-11 00:48:53 +00:00
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 ( ) ;
2017-08-23 08:02:04 +00:00
} else if ( id == Asc . c _oAscError . ID . SplitCellMaxRows || id == Asc . c _oAscError . ID . SplitCellMaxCols || id == Asc . c _oAscError . ID . SplitCellRowsDivider ) {
var me = this ;
setTimeout ( function ( ) {
( new Common . Views . InsertTableDialog ( {
split : true ,
handler : function ( result , value ) {
if ( result == 'ok' ) {
if ( me . api )
me . api . SplitCell ( value . columns , value . rows ) ;
}
me . onEditComplete ( ) ;
}
} ) ) . show ( ) ;
} , 10 ) ;
2018-10-25 13:19:29 +00:00
} else if ( id == Asc . c _oAscError . ID . EditingError ) {
this . disableEditing ( true ) ;
Common . NotificationCenter . trigger ( 'api:disconnect' , true ) ; // enable download and print
2016-03-11 00:48:53 +00:00
}
this . _state . lostEditingRights = false ;
this . onEditComplete ( ) ;
} , this ) ;
}
2021-04-08 09:59:44 +00:00
if ( ! Common . Utils . ModalWindow . isVisible ( ) || $ ( '.asc-window.modal.alert[data-value=' + id + ']' ) . length < 1 )
Common . UI . alert ( config ) . $window . attr ( 'data-value' , id ) ;
2016-03-11 00:48:53 +00:00
2020-05-08 18:48:46 +00:00
( id !== undefined ) && Common . component . Analytics . trackEvent ( 'Internal Error' , id . toString ( ) ) ;
2016-03-11 00:48:53 +00:00
} ,
onCoAuthoringDisconnect : function ( ) {
this . getApplication ( ) . getController ( 'Viewport' ) . getView ( 'Viewport' ) . setMode ( { isDisconnected : true } ) ;
2017-04-21 13:36:06 +00:00
appHeader . setCanRename ( false ) ;
2016-09-27 12:09:32 +00:00
this . appOptions . canRename = false ;
2016-03-11 00:48:53 +00:00
this . _state . isDisconnected = true ;
} ,
2022-06-15 19:09:53 +00:00
showTips : function ( strings , options ) {
2016-03-11 00:48:53 +00:00
var me = this ;
if ( ! strings . length ) return ;
if ( typeof ( strings ) != 'object' ) strings = [ strings ] ;
2022-06-15 19:09:53 +00:00
function closeTip ( cmp ) {
me . tipTimeout && clearTimeout ( me . tipTimeout ) ;
setTimeout ( showNextTip , 300 ) ;
}
2016-03-11 00:48:53 +00:00
function showNextTip ( ) {
var str _tip = strings . shift ( ) ;
if ( str _tip ) {
2022-06-15 19:09:53 +00:00
if ( ! ( options && options . hideCloseTip ) )
str _tip += '\n' + me . textCloseTip ;
me . tooltip . setTitle ( str _tip ) ;
me . tooltip . show ( ) ;
me . tipTimeout && clearTimeout ( me . tipTimeout ) ;
if ( options && options . timeout ) {
me . tipTimeout = setTimeout ( function ( ) {
me . tooltip . hide ( ) ;
closeTip ( ) ;
} , options . timeout ) ;
}
2016-03-11 00:48:53 +00:00
}
}
if ( ! this . tooltip ) {
this . tooltip = new Common . UI . Tooltip ( {
2017-04-21 13:36:06 +00:00
owner : this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( ) ,
2016-03-11 00:48:53 +00:00
hideonclick : true ,
placement : 'bottom' ,
cls : 'main-info' ,
offset : 30
} ) ;
2022-06-15 19:09:53 +00:00
this . tooltip . on ( 'tooltip:hideonclick' , closeTip ) ;
2016-03-11 00:48:53 +00:00
}
showNextTip ( ) ;
} ,
updateWindowTitle : function ( force ) {
var isModified = this . api . isDocumentModified ( ) ;
if ( this . _state . isDocModified !== isModified || force ) {
var title = this . defaultTitleText ;
2019-09-18 08:08:01 +00:00
if ( appHeader && ! _ . isEmpty ( appHeader . getDocumentCaption ( ) ) )
2017-04-21 13:36:06 +00:00
title = appHeader . getDocumentCaption ( ) + ' - ' + title ;
2016-03-11 00:48:53 +00:00
if ( isModified ) {
2017-04-12 08:55:46 +00:00
clearTimeout ( this . _state . timerCaption ) ;
if ( ! _ . isUndefined ( title ) ) {
2016-03-11 00:48:53 +00:00
title = '* ' + title ;
}
}
if ( window . document . title != title )
window . document . title = title ;
2021-03-09 14:06:44 +00:00
this . _isDocReady && ( this . _state . isDocModified !== isModified ) && Common . Gateway . setDocumentModified ( isModified ) ;
2017-04-12 08:55:46 +00:00
if ( isModified && ( ! this . _state . fastCoauth || this . _state . usersCount < 2 ) )
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( '' , true ) ;
2016-03-11 00:48:53 +00:00
this . _state . isDocModified = isModified ;
}
} ,
onDocumentModifiedChanged : function ( ) {
var isModified = this . api . asc _isDocumentCanSave ( ) ;
if ( this . _state . isDocModified !== isModified ) {
2021-03-09 14:06:44 +00:00
this . _isDocReady && Common . Gateway . setDocumentModified ( this . api . isDocumentModified ( ) ) ;
2016-03-11 00:48:53 +00:00
}
this . updateWindowTitle ( ) ;
2017-04-21 13:36:06 +00:00
var toolbarView = this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( ) ;
2018-07-19 12:31:13 +00:00
if ( toolbarView && toolbarView . btnCollabChanges && ! toolbarView . _state . previewmode ) {
2019-11-20 09:42:39 +00:00
var isSyncButton = toolbarView . btnCollabChanges . cmpEl . hasClass ( 'notify' ) ,
2017-09-05 07:54:44 +00:00
forcesave = this . appOptions . forcesave ,
isDisabled = ! isModified && ! isSyncButton && ! forcesave || this . _state . isDisconnected || this . _state . fastCoauth && this . _state . usersCount > 1 && ! forcesave ;
2018-02-15 23:56:17 +00:00
toolbarView . btnSave . setDisabled ( isDisabled ) ;
2016-03-11 00:48:53 +00:00
}
/** coauthoring begin **/
2019-04-15 11:06:41 +00:00
if ( this . contComments . isDummyComment && ! this . dontCloseDummyComment && ! this . beforeShowDummyComment ) {
2016-03-11 00:48:53 +00:00
this . contComments . clearDummyComment ( ) ;
}
/** coauthoring end **/
} ,
2019-04-12 12:15:06 +00:00
2016-03-11 00:48:53 +00:00
onDocumentCanSaveChanged : function ( isCanSave ) {
2018-02-15 23:52:44 +00:00
var toolbarView = this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( ) ;
2016-03-11 00:48:53 +00:00
2017-09-01 14:48:31 +00:00
if ( toolbarView && this . api && ! toolbarView . _state . previewmode ) {
2019-11-20 09:42:39 +00:00
var isSyncButton = toolbarView . btnCollabChanges . cmpEl . hasClass ( 'notify' ) ,
2017-09-05 07:54:44 +00:00
forcesave = this . appOptions . forcesave ,
isDisabled = ! isCanSave && ! isSyncButton && ! forcesave || this . _state . isDisconnected || this . _state . fastCoauth && this . _state . usersCount > 1 && ! forcesave ;
2018-02-15 23:56:17 +00:00
toolbarView . btnSave . setDisabled ( isDisabled ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onContextMenu : function ( event ) {
var canCopyAttr = event . target . getAttribute ( 'data-can-copy' ) ,
isInputEl = ( event . target instanceof HTMLInputElement ) || ( event . target instanceof HTMLTextAreaElement ) ;
if ( ( isInputEl && canCopyAttr === 'false' ) ||
( ! isInputEl && canCopyAttr !== 'true' ) ) {
event . stopPropagation ( ) ;
event . preventDefault ( ) ;
return false ;
}
} ,
onBeforeUnload : function ( ) {
Common . localStorage . save ( ) ;
if ( this . api . isDocumentModified ( ) ) {
var me = this ;
this . api . asc _stopSaving ( ) ;
2022-03-03 18:39:40 +00:00
this . _state . unloadTimer = 1000 ;
2016-03-11 00:48:53 +00:00
this . continueSavingTimer = window . setTimeout ( function ( ) {
me . api . asc _continueSaving ( ) ;
2022-03-03 18:39:40 +00:00
me . _state . unloadTimer = 0 ;
2016-03-11 00:48:53 +00:00
} , 500 ) ;
return this . leavePageText ;
2022-03-03 18:39:40 +00:00
} else
this . _state . unloadTimer = 10000 ;
2016-03-11 00:48:53 +00:00
} ,
onUnload : function ( ) {
if ( this . continueSavingTimer ) clearTimeout ( this . continueSavingTimer ) ;
} ,
hidePreloader : function ( ) {
2019-05-23 14:25:44 +00:00
var promise ;
2016-11-16 09:38:16 +00:00
if ( ! this . _state . customizationDone ) {
this . _state . customizationDone = true ;
2017-04-11 12:24:07 +00:00
if ( this . appOptions . customization ) {
if ( this . appOptions . isDesktopApp )
this . appOptions . customization . about = false ;
else if ( ! this . appOptions . canBrandingExt )
this . appOptions . customization . about = true ;
}
2016-03-11 00:48:53 +00:00
Common . Utils . applyCustomization ( this . appOptions . customization , mapCustomizationElements ) ;
2016-11-16 09:38:16 +00:00
if ( this . appOptions . canBrandingExt ) {
2016-10-28 13:38:33 +00:00
Common . Utils . applyCustomization ( this . appOptions . customization , mapCustomizationExtElements ) ;
2021-10-08 07:55:26 +00:00
Common . UI . LayoutManager . applyCustomization ( ) ;
2021-10-28 22:09:13 +00:00
if ( this . appOptions . customization && ( typeof ( this . appOptions . customization ) == 'object' ) ) {
if ( this . appOptions . customization . leftMenu !== undefined )
2021-11-12 09:36:42 +00:00
console . log ( "Obsolete: The 'leftMenu' parameter of the 'customization' section is deprecated. Please use 'leftMenu' parameter in the 'customization.layout' section instead." ) ;
2021-10-28 22:09:13 +00:00
if ( this . appOptions . customization . rightMenu !== undefined )
2021-11-12 09:36:42 +00:00
console . log ( "Obsolete: The 'rightMenu' parameter of the 'customization' section is deprecated. Please use 'rightMenu' parameter in the 'customization.layout' section instead." ) ;
2022-01-11 19:59:57 +00:00
if ( this . appOptions . customization . statusBar !== undefined )
console . log ( "Obsolete: The 'statusBar' parameter of the 'customization' section is deprecated. Please use 'statusBar' parameter in the 'customization.layout' section instead." ) ;
if ( this . appOptions . customization . toolbar !== undefined )
console . log ( "Obsolete: The 'toolbar' parameter of the 'customization' section is deprecated. Please use 'toolbar' parameter in the 'customization.layout' section instead." ) ;
2021-10-28 22:09:13 +00:00
}
2019-05-23 14:25:44 +00:00
promise = this . getApplication ( ) . getController ( 'Common.Controllers.Plugins' ) . applyUICustomization ( ) ;
2016-11-16 09:38:16 +00:00
}
2016-03-11 00:48:53 +00:00
}
Common . NotificationCenter . trigger ( 'layout:changed' , 'main' ) ;
2018-04-27 13:32:39 +00:00
2019-05-23 14:25:44 +00:00
( promise || ( new Promise ( function ( resolve , reject ) {
resolve ( ) ;
} ) ) ) . then ( function ( ) {
$ ( '#loading-mask' ) . hide ( ) . remove ( ) ;
Common . Controllers . Desktop . process ( 'preloader:hide' ) ;
} ) ;
2016-03-11 00:48:53 +00:00
} ,
2021-07-29 22:01:33 +00:00
onDownloadUrl : function ( url , fileType ) {
if ( this . _state . isFromGatewayDownloadAs ) {
Common . Gateway . downloadAs ( url , fileType ) ;
}
2016-09-19 07:41:02 +00:00
this . _state . isFromGatewayDownloadAs = false ;
2016-03-11 00:48:53 +00:00
} ,
onUpdateVersion : function ( callback ) {
var me = this ;
me . needToUpdateVersion = true ;
2016-04-05 11:52:34 +00:00
me . onLongActionEnd ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
Common . UI . warning ( {
title : me . titleUpdateVersion ,
msg : this . errorUpdateVersion ,
callback : function ( ) {
_ . defer ( function ( ) {
Common . Gateway . updateVersion ( ) ;
if ( callback ) callback . call ( me ) ;
2016-04-05 11:52:34 +00:00
me . onLongActionBegin ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
} )
}
} ) ;
} ,
2017-04-11 11:37:45 +00:00
onServerVersion : function ( buildVersion ) {
if ( this . changeServerVersion ) return true ;
2022-11-22 19:34:22 +00:00
const cur _version = this . getApplication ( ) . getController ( 'LeftMenu' ) . leftMenu . getMenu ( 'about' ) . txtVersionNum ;
2022-11-29 09:59:24 +00:00
const cropped _version = cur _version . match ( /^(\d+.\d+.\d+)/ ) ;
2022-11-30 16:42:34 +00:00
if ( ! window . compareVersions && ( ! cropped _version || cropped _version [ 1 ] !== buildVersion ) ) {
2017-04-11 11:37:45 +00:00
this . changeServerVersion = true ;
Common . UI . warning ( {
title : this . titleServerVersion ,
msg : this . errorServerVersion ,
callback : function ( ) {
_ . defer ( function ( ) {
Common . Gateway . updateVersion ( ) ;
} )
}
} ) ;
return true ;
}
return false ;
} ,
2016-03-11 00:48:53 +00:00
/** coauthoring begin **/
// fillUserStore: function(users){
// if (!_.isEmpty(users)){
// var userStore = this.getCommonStoreUsersStore();
//
// if (userStore)
// userStore.add(users);
// }
// },
onCollaborativeChanges : function ( ) {
if ( this . _state . hasCollaborativeChanges ) return ;
this . _state . hasCollaborativeChanges = true ;
if ( this . appOptions . isEdit )
2017-04-11 13:40:01 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( this . txtNeedSynchronize , true ) ;
2016-03-11 00:48:53 +00:00
} ,
/** coauthoring end **/
synchronizeChanges : function ( ) {
this . getApplication ( ) . getController ( 'Statusbar' ) . synchronizeChanges ( ) ;
2017-03-29 11:19:57 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.ReviewChanges' ) . synchronizeChanges ( ) ;
2022-04-27 19:24:39 +00:00
this . getApplication ( ) . getController ( 'DocumentHolder' ) . hideTips ( ) ;
2016-03-11 00:48:53 +00:00
/** coauthoring begin **/
2017-04-21 13:36:06 +00:00
this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( ) . synchronizeChanges ( ) ;
2016-03-11 00:48:53 +00:00
/** 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 = [ ] ,
2022-01-17 19:45:48 +00:00
shapeStore = this . getCollection ( 'ShapeGroups' ) ,
name _arr = { } ;
2016-03-11 00:48:53 +00:00
shapeStore . reset ( ) ;
_ . each ( groupNames , function ( groupName , index ) {
var store = new Backbone . Collection ( [ ] , {
model : DE . Models . ShapeModel
2019-08-19 14:33:30 +00:00
} ) ,
arr = [ ] ;
2016-03-11 00:48:53 +00:00
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 ) {
2022-01-17 19:45:48 +00:00
var name = me [ 'txtShape_' + shape . Type ] ;
2019-08-19 14:33:30 +00:00
arr . push ( {
2016-03-11 00:48:53 +00:00
data : { shapeType : shape . Type } ,
2022-01-17 19:45:48 +00:00
tip : name || ( me . textShape + ' ' + ( idx + 1 ) ) ,
2016-03-11 00:48:53 +00:00
allowSelected : true ,
selected : false
} ) ;
2022-01-17 19:45:48 +00:00
if ( name )
name _arr [ shape . Type ] = name ;
2016-03-11 00:48:53 +00:00
} ) ;
2019-08-19 14:33:30 +00:00
store . add ( arr ) ;
2016-03-11 00:48:53 +00:00
shapegrouparray . push ( {
groupName : me . shapeGroupNames [ index ] ,
groupStore : store ,
groupWidth : width ,
groupHeight : height
} ) ;
} ) ;
shapeStore . add ( shapegrouparray ) ;
setTimeout ( function ( ) {
2019-08-20 11:05:13 +00:00
me . getApplication ( ) . getController ( 'Toolbar' ) . onApiAutoShapes ( ) ;
2016-03-11 00:48:53 +00:00
} , 50 ) ;
2022-01-17 19:45:48 +00:00
this . api . asc _setShapeNames ( name _arr ) ;
2016-03-11 00:48:53 +00:00
} ,
fillTextArt : function ( shapes ) {
2019-09-03 10:32:06 +00:00
var arr = [ ] ,
2016-03-11 00:48:53 +00:00
artStore = this . getCollection ( 'Common.Collections.TextArt' ) ;
2019-09-03 10:32:06 +00:00
if ( ! shapes && artStore . length > 0 ) { // shapes == undefined when update textart collection (from asc_onSendThemeColors)
shapes = this . api . asc _getTextArtPreviews ( ) ;
}
if ( _ . isEmpty ( shapes ) ) return ;
2016-03-11 00:48:53 +00:00
_ . each ( shapes , function ( shape , index ) {
arr . push ( {
imageUrl : shape ,
data : index ,
allowSelected : true ,
selected : false
} ) ;
} ) ;
artStore . reset ( arr ) ;
} ,
updateThemeColors : function ( ) {
var me = this ;
setTimeout ( function ( ) {
me . getApplication ( ) . getController ( 'RightMenu' ) . 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 ( ) ;
2019-08-21 12:40:57 +00:00
var me = this ;
setTimeout ( function ( ) {
2019-09-03 10:32:06 +00:00
me . fillTextArt ( ) ;
2019-08-21 12:40:57 +00:00
} , 1 ) ;
2016-03-11 00:48:53 +00:00
}
} ,
2017-04-19 08:28:40 +00:00
loadLanguages : function ( apiLangs ) {
2019-01-28 13:51:07 +00:00
var langs = [ ] , info ,
allLangs = Common . util . LanguageInfo . getLanguages ( ) ;
for ( var code in allLangs ) {
if ( allLangs . hasOwnProperty ( code ) ) {
info = allLangs [ code ] ;
info [ 2 ] && langs . push ( {
displayValue : info [ 1 ] ,
value : info [ 0 ] ,
code : parseInt ( code ) ,
spellcheck : _ . indexOf ( apiLangs , code ) > - 1
} ) ;
}
}
2017-02-07 15:16:17 +00:00
langs . sort ( function ( a , b ) {
2019-01-28 13:51:07 +00:00
if ( a . value < b . value ) return - 1 ;
if ( a . value > b . value ) return 1 ;
2017-02-07 15:16:17 +00:00
return 0 ;
} ) ;
2017-04-19 08:28:40 +00:00
this . languages = langs ;
window . styles _loaded && this . setLanguages ( ) ;
} ,
setLanguages : function ( ) {
2019-01-28 13:51:07 +00:00
if ( ! this . languages || this . languages . length < 1 ) {
this . loadLanguages ( [ ] ) ;
}
2017-04-19 08:28:40 +00:00
if ( this . languages && this . languages . length > 0 ) {
this . getApplication ( ) . getController ( 'DocumentHolder' ) . getView ( ) . setLanguages ( this . languages ) ;
this . getApplication ( ) . getController ( 'Statusbar' ) . setLanguages ( this . languages ) ;
this . getApplication ( ) . getController ( 'Common.Controllers.ReviewChanges' ) . setLanguages ( this . languages ) ;
}
2016-03-11 00:48:53 +00:00
} ,
onInsertTable : function ( ) {
this . getApplication ( ) . getController ( 'RightMenu' ) . onInsertTable ( ) ;
} ,
onInsertImage : function ( ) {
this . getApplication ( ) . getController ( 'RightMenu' ) . onInsertImage ( ) ;
} ,
onInsertChart : function ( ) {
this . getApplication ( ) . getController ( 'RightMenu' ) . onInsertChart ( ) ;
} ,
onInsertShape : function ( ) {
this . getApplication ( ) . getController ( 'RightMenu' ) . onInsertShape ( ) ;
} ,
onInsertTextArt : function ( ) {
this . getApplication ( ) . getController ( 'RightMenu' ) . onInsertTextArt ( ) ;
} ,
2020-09-30 15:52:11 +00:00
onInsertControl : function ( ) {
this . getApplication ( ) . getController ( 'RightMenu' ) . onInsertControl ( ) ;
} ,
2016-03-11 00:48:53 +00:00
unitsChanged : function ( m ) {
var value = Common . localStorage . getItem ( "de-settings-unit" ) ;
2016-04-08 08:55:15 +00:00
value = ( value !== null ) ? parseInt ( value ) : Common . Utils . Metric . getDefaultMetric ( ) ;
2016-04-06 15:18:40 +00:00
Common . Utils . Metric . setCurrentMetric ( value ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-unit" , value ) ;
2016-04-07 09:17:34 +00:00
this . 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 ) ) ;
2016-03-11 00:48:53 +00:00
this . getApplication ( ) . getController ( 'RightMenu' ) . updateMetricUnit ( ) ;
2017-04-21 13:36:06 +00:00
this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( ) . updateMetricUnit ( ) ;
2022-11-28 11:06:48 +00:00
this . appOptions . canPreviewPrint && this . getApplication ( ) . getController ( 'Print' ) . getView ( 'PrintWithPreview' ) . updateMetricUnit ( ) ;
2016-03-11 00:48:53 +00:00
} ,
2019-07-25 07:14:45 +00:00
onAdvancedOptions : function ( type , advOptions , mode , formatOptions ) {
2017-09-08 08:39:07 +00:00
if ( this . _state . openDlg ) return ;
2019-07-25 07:14:45 +00:00
var me = this ;
2016-04-05 11:52:34 +00:00
if ( type == Asc . c _oAscAdvancedOptionsID . TXT ) {
2017-09-08 08:39:07 +00:00
me . _state . openDlg = new Common . Views . OpenDialog ( {
2019-04-17 09:01:20 +00:00
title : Common . Views . OpenDialog . prototype . txtTitle . replace ( '%1' , 'TXT' ) ,
closable : ( mode == 2 ) , // if save settings
type : Common . Utils . importTextType . TXT ,
2019-07-25 07:14:45 +00:00
preview : advOptions . asc _getData ( ) ,
codepages : advOptions . asc _getCodePages ( ) ,
settings : advOptions . asc _getRecommendedSettings ( ) ,
2018-02-09 14:26:34 +00:00
api : me . api ,
2021-03-23 13:55:20 +00:00
handler : function ( result , settings ) {
2016-03-11 00:48:53 +00:00
me . isShowOpenDialog = false ;
2018-07-25 11:40:51 +00:00
if ( result == 'ok' ) {
if ( me && me . api ) {
2019-07-24 14:33:29 +00:00
if ( mode == 2 ) {
2021-03-23 13:55:20 +00:00
formatOptions && formatOptions . asc _setAdvancedOptions ( settings . textOptions ) ;
2019-07-24 14:33:29 +00:00
me . api . asc _DownloadAs ( formatOptions ) ;
} else
2021-03-23 13:55:20 +00:00
me . api . asc _setAdvancedOptions ( type , settings . textOptions ) ;
2018-07-25 11:40:51 +00:00
me . loadMask && me . loadMask . show ( ) ;
}
2016-03-11 00:48:53 +00:00
}
2017-09-08 08:39:07 +00:00
me . _state . openDlg = null ;
2016-03-11 00:48:53 +00:00
}
} ) ;
2016-08-10 09:33:08 +00:00
} else if ( type == Asc . c _oAscAdvancedOptionsID . DRM ) {
2017-09-08 08:39:07 +00:00
me . _state . openDlg = new Common . Views . OpenDialog ( {
2019-04-17 09:01:20 +00:00
title : Common . Views . OpenDialog . prototype . txtTitleProtected ,
2018-10-31 10:44:18 +00:00
closeFile : me . appOptions . canRequestClose ,
2019-04-17 09:01:20 +00:00
type : Common . Utils . importTextType . DRM ,
2021-01-20 16:32:42 +00:00
warning : ! ( me . appOptions . isDesktopApp && me . appOptions . isOffline ) && ( typeof advOptions == 'string' ) ,
2020-12-14 11:47:48 +00:00
warningMsg : advOptions ,
2017-09-08 08:44:01 +00:00
validatePwd : ! ! me . _state . isDRM ,
2018-02-06 10:54:40 +00:00
handler : function ( result , value ) {
2016-08-10 09:33:08 +00:00
me . isShowOpenDialog = false ;
2018-02-06 10:54:40 +00:00
if ( result == 'ok' ) {
if ( me . api ) {
2021-03-23 13:55:20 +00:00
me . api . asc _setAdvancedOptions ( type , value . drmOptions ) ;
2018-02-06 10:54:40 +00:00
me . loadMask && me . loadMask . show ( ) ;
}
2018-10-31 09:16:44 +00:00
} else {
2018-02-06 10:54:40 +00:00
Common . Gateway . requestClose ( ) ;
2018-10-31 09:16:44 +00:00
Common . Controllers . Desktop . requestClose ( ) ;
}
2017-09-08 08:39:07 +00:00
me . _state . openDlg = null ;
2016-08-10 09:33:08 +00:00
}
} ) ;
2017-09-08 08:44:01 +00:00
me . _state . isDRM = true ;
2016-08-10 09:33:08 +00:00
}
2017-09-08 08:39:07 +00:00
if ( me . _state . openDlg ) {
2016-03-11 00:48:53 +00:00
this . isShowOpenDialog = true ;
this . loadMask && this . loadMask . hide ( ) ;
2016-04-05 11:52:34 +00:00
this . onLongActionEnd ( Asc . c _oAscAsyncActionType . BlockInteraction , LoadingDocument ) ;
2017-09-08 08:39:07 +00:00
me . _state . openDlg . show ( ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onTryUndoInFastCollaborative : function ( ) {
2019-07-24 09:27:14 +00:00
if ( ! Common . localStorage . getBool ( "de-hide-try-undoredo" ) )
2016-03-11 00:48:53 +00:00
Common . UI . info ( {
width : 500 ,
2021-04-02 08:08:36 +00:00
msg : this . appOptions . canChangeCoAuthoring ? this . textTryUndoRedo : this . textTryUndoRedoWarn ,
2016-03-11 00:48:53 +00:00
iconCls : 'info' ,
2021-04-02 08:08:36 +00:00
buttons : this . appOptions . canChangeCoAuthoring ? [ 'custom' , 'cancel' ] : [ 'ok' ] ,
primary : this . appOptions . canChangeCoAuthoring ? 'custom' : 'ok' ,
2016-03-11 00:48:53 +00:00
customButtonText : this . textStrict ,
dontshow : true ,
callback : _ . bind ( function ( btn , dontshow ) {
2019-07-24 09:27:14 +00:00
if ( dontshow ) Common . localStorage . setItem ( "de-hide-try-undoredo" , 1 ) ;
2016-03-11 00:48:53 +00:00
if ( btn == 'custom' ) {
Common . localStorage . setItem ( "de-settings-coauthmode" , 0 ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-coauthmode" , false ) ;
2016-03-11 00:48:53 +00:00
this . api . asc _SetFastCollaborative ( false ) ;
this . _state . fastCoauth = false ;
Common . localStorage . setItem ( "de-settings-showchanges-strict" , 'last' ) ;
2016-04-05 11:52:34 +00:00
this . api . SetCollaborativeMarksShowType ( Asc . c _oAscCollaborativeMarksShowType . LastChanges ) ;
2018-04-02 10:58:55 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.ReviewChanges' ) . applySettings ( ) ;
2016-03-11 00:48:53 +00:00
}
2017-08-23 08:02:04 +00:00
this . onEditComplete ( ) ;
2016-03-11 00:48:53 +00:00
} , this )
} ) ;
} ,
onAuthParticipantsChanged : function ( users ) {
var length = 0 ;
_ . each ( users , function ( item ) {
if ( ! item . asc _getView ( ) )
length ++ ;
} ) ;
this . _state . usersCount = length ;
} ,
2020-12-20 09:22:46 +00:00
onUserConnection : function ( change ) {
2020-12-29 20:48:47 +00:00
if ( change && this . appOptions . user . guest && this . appOptions . canRenameAnonymous && ( change . asc _getIdOriginal ( ) == this . appOptions . user . id ) ) { // change name of the current user
2020-12-20 09:22:46 +00:00
var name = change . asc _getUserName ( ) ;
2021-03-26 11:29:16 +00:00
if ( name && name !== AscCommon . UserInfoParser . getCurrentName ( ) ) {
2021-01-20 20:49:01 +00:00
this . _renameDialog && this . _renameDialog . close ( ) ;
2021-03-26 11:29:16 +00:00
AscCommon . UserInfoParser . setCurrentName ( name ) ;
appHeader . setUserName ( AscCommon . UserInfoParser . getParsedName ( name ) ) ;
2020-12-20 09:22:46 +00:00
var idx1 = name . lastIndexOf ( '(' ) ,
idx2 = name . lastIndexOf ( ')' ) ,
str = ( idx1 > 0 ) && ( idx1 < idx2 ) ? name . substring ( 0 , idx1 - 1 ) : '' ;
if ( Common . localStorage . getItem ( "guest-username" ) !== null ) {
Common . localStorage . setItem ( "guest-username" , str ) ;
}
Common . Utils . InternalSettings . set ( "guest-username" , str ) ;
}
}
} ,
2016-03-11 00:48:53 +00:00
applySettings : function ( ) {
2016-12-20 14:29:37 +00:00
if ( this . appOptions . isEdit && ! this . appOptions . isOffline && this . appOptions . canCoAuthoring ) {
2017-06-16 11:53:29 +00:00
var oldval = this . _state . fastCoauth ;
this . _state . fastCoauth = Common . localStorage . getBool ( "de-settings-coauthmode" , true ) ;
2016-03-11 00:48:53 +00:00
if ( this . _state . fastCoauth && ! oldval )
this . synchronizeChanges ( ) ;
}
2017-04-11 13:40:01 +00:00
if ( this . appOptions . canForcesave ) {
2017-06-16 11:53:29 +00:00
this . appOptions . forcesave = Common . localStorage . getBool ( "de-settings-forcesave" , this . appOptions . canForcesave ) ;
2017-10-03 11:22:33 +00:00
Common . Utils . InternalSettings . set ( "de-settings-forcesave" , this . appOptions . forcesave ) ;
2017-04-11 13:40:01 +00:00
this . api . asc _setIsForceSaveOnUserSave ( this . appOptions . forcesave ) ;
}
2016-03-11 00:48:53 +00:00
} ,
onDocumentName : function ( name ) {
2017-04-21 13:36:06 +00:00
appHeader . setDocumentCaption ( name ) ;
2016-03-11 00:48:53 +00:00
this . updateWindowTitle ( true ) ;
} ,
2016-09-26 10:54:25 +00:00
onMeta : function ( meta ) {
2017-04-21 13:36:06 +00:00
appHeader . setDocumentCaption ( meta . title ) ;
2016-09-26 10:54:25 +00:00
this . updateWindowTitle ( true ) ;
this . document . title = meta . title ;
2017-04-21 13:36:06 +00:00
var filemenu = this . getApplication ( ) . getController ( 'LeftMenu' ) . getView ( 'LeftMenu' ) . getMenu ( 'file' ) ;
2016-09-26 10:54:25 +00:00
filemenu . loadDocument ( { doc : this . document } ) ;
2019-10-08 14:35:47 +00:00
filemenu . panels && filemenu . panels [ 'info' ] && filemenu . panels [ 'info' ] . updateInfo ( this . document ) ;
2019-10-09 10:23:40 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.ReviewChanges' ) . loadDocument ( { doc : this . document } ) ;
2016-09-26 10:54:25 +00:00
Common . Gateway . metaChange ( meta ) ;
2021-05-12 16:04:14 +00:00
if ( this . appOptions . wopi ) {
var idx = meta . title . lastIndexOf ( '.' ) ;
Common . Gateway . requestRename ( idx > 0 ? meta . title . substring ( 0 , idx ) : meta . title ) ;
}
2016-09-26 10:54:25 +00:00
} ,
2016-03-11 00:48:53 +00:00
onPrint : function ( ) {
2020-04-22 09:35:55 +00:00
if ( ! this . appOptions . canPrint || Common . Utils . ModalWindow . isVisible ( ) ) return ;
2022-10-24 16:02:05 +00:00
Common . NotificationCenter . trigger ( 'file:print' ) ;
2016-03-11 00:48:53 +00:00
Common . component . Analytics . trackEvent ( 'Print' ) ;
} ,
onPrintUrl : function ( url ) {
2016-06-09 10:22:58 +00:00
if ( this . iframePrint ) {
this . iframePrint . parentNode . removeChild ( this . iframePrint ) ;
this . iframePrint = null ;
}
2016-03-11 00:48:53 +00:00
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 ( ) {
2019-07-23 12:07:51 +00:00
try {
2016-03-11 00:48:53 +00:00
me . iframePrint . contentWindow . focus ( ) ;
me . iframePrint . contentWindow . print ( ) ;
2016-06-09 10:22:58 +00:00
me . iframePrint . contentWindow . blur ( ) ;
window . focus ( ) ;
2019-07-23 12:07:51 +00:00
} catch ( e ) {
2019-07-24 08:36:13 +00:00
me . api . asc _DownloadAs ( new Asc . asc _CDownloadOptions ( Asc . c _oAscFileType . PDF ) ) ;
2019-07-23 12:07:51 +00:00
}
2016-03-11 00:48:53 +00:00
} ;
}
if ( url ) this . iframePrint . src = url ;
} ,
2022-11-15 18:45:25 +00:00
onPrintQuick : function ( ) {
2022-11-16 09:46:49 +00:00
if ( ! this . appOptions . canQuickPrint ) return ;
2022-11-21 21:56:54 +00:00
var value = Common . localStorage . getBool ( "de-hide-quick-print-warning" ) ,
me = this ,
handler = function ( ) {
var printopt = new Asc . asc _CAdjustPrint ( ) ;
printopt . asc _setNativeOptions ( { quickPrint : true } ) ;
var opts = new Asc . asc _CDownloadOptions ( ) ;
opts . asc _setAdvancedOptions ( printopt ) ;
me . api . asc _Print ( opts ) ;
Common . component . Analytics . trackEvent ( 'Print' ) ;
} ;
if ( value ) {
handler . call ( this ) ;
} else {
Common . UI . warning ( {
msg : this . textTryQuickPrint ,
buttons : [ 'yes' , 'no' ] ,
primary : 'yes' ,
dontshow : true ,
maxwidth : 500 ,
callback : function ( btn , dontshow ) {
dontshow && Common . localStorage . setBool ( "de-hide-quick-print-warning" , true ) ;
if ( btn === 'yes' ) {
setTimeout ( handler , 1 ) ;
}
}
} ) ;
}
2022-11-15 18:45:25 +00:00
} ,
2019-04-12 12:15:06 +00:00
onClearDummyComment : function ( ) {
this . dontCloseDummyComment = false ;
} ,
2019-04-15 11:06:41 +00:00
onShowDummyComment : function ( ) {
this . beforeShowDummyComment = true ;
} ,
2019-08-22 14:16:07 +00:00
DisableMailMerge : function ( ) {
this . appOptions . mergeFolderUrl = "" ;
var toolbarController = this . getApplication ( ) . getController ( 'Toolbar' ) ;
toolbarController && toolbarController . DisableMailMerge ( ) ;
} ,
DisableVersionHistory : function ( ) {
this . editorConfig . canUseHistory = false ;
this . appOptions . canUseHistory = false ;
} ,
2020-03-25 13:07:23 +00:00
onConvertEquationToMath : function ( equation ) {
var me = this ,
win ;
var msg = this . textConvertEquation + '<br><br><a id="id-equation-convert-help" style="cursor: pointer;">' + this . textLearnMore + '</a>' ;
win = Common . UI . warning ( {
width : 500 ,
msg : msg ,
buttons : [ 'yes' , 'cancel' ] ,
primary : 'yes' ,
dontshow : true ,
textDontShow : this . textApplyAll ,
callback : _ . bind ( function ( btn , dontshow ) {
if ( btn == 'yes' ) {
this . api . asc _ConvertEquationToMath ( equation , dontshow ) ;
}
this . onEditComplete ( ) ;
} , this )
} ) ;
win . $window . find ( '#id-equation-convert-help' ) . on ( 'click' , function ( e ) {
win && win . close ( ) ;
2020-08-24 13:45:30 +00:00
me . getApplication ( ) . getController ( 'LeftMenu' ) . getView ( 'LeftMenu' ) . showMenu ( 'file:help' , 'UsageInstructions\/InsertEquation.htm#convertequation' ) ;
2020-03-25 13:07:23 +00:00
} )
} ,
2020-04-23 16:57:36 +00:00
warningDocumentIsLocked : function ( ) {
var me = this ;
var _disable _ui = function ( disable ) {
2021-06-29 13:27:44 +00:00
me . disableEditing ( disable , true ) ;
2020-04-29 17:54:48 +00:00
} ;
2020-04-23 16:57:36 +00:00
2020-04-29 17:54:48 +00:00
Common . Utils . warningDocumentIsLocked ( { disablefunc : _disable _ui } ) ;
2020-04-23 16:57:36 +00:00
} ,
2020-05-21 16:30:57 +00:00
onRunAutostartMacroses : function ( ) {
var me = this ,
enable = ! this . editorConfig . customization || ( this . editorConfig . customization . macros !== false ) ;
if ( enable ) {
2020-05-21 19:50:18 +00:00
var value = Common . Utils . InternalSettings . get ( "de-macros-mode" ) ;
if ( value == 1 )
2020-05-21 16:30:57 +00:00
this . api . asc _runAutostartMacroses ( ) ;
2020-05-21 19:50:18 +00:00
else if ( value === 0 ) {
Common . UI . warning ( {
msg : this . textHasMacros + '<br>' ,
buttons : [ 'yes' , 'no' ] ,
primary : 'yes' ,
dontshow : true ,
textDontShow : this . textRemember ,
callback : function ( btn , dontshow ) {
if ( dontshow ) {
Common . Utils . InternalSettings . set ( "de-macros-mode" , ( btn == 'yes' ) ? 1 : 2 ) ;
Common . localStorage . setItem ( "de-macros-mode" , ( btn == 'yes' ) ? 1 : 2 ) ;
}
if ( btn == 'yes' ) {
setTimeout ( function ( ) {
me . api . asc _runAutostartMacroses ( ) ;
} , 1 ) ;
}
}
} ) ;
}
2020-05-21 16:30:57 +00:00
}
} ,
2022-05-19 14:54:49 +00:00
onMacrosPermissionRequest : function ( url , callback ) {
2022-05-19 18:11:36 +00:00
if ( url && callback ) {
this . stackMacrosRequests . push ( { url : url , callback : callback } ) ;
if ( this . stackMacrosRequests . length > 1 ) {
return ;
2022-05-19 14:54:49 +00:00
}
2022-05-19 18:11:36 +00:00
} else if ( this . stackMacrosRequests . length > 0 ) {
url = this . stackMacrosRequests [ 0 ] . url ;
callback = this . stackMacrosRequests [ 0 ] . callback ;
} else
return ;
var me = this ;
var value = Common . Utils . InternalSettings . get ( "de-allow-macros-request" ) ;
if ( value > 0 ) {
callback && callback ( value === 1 ) ;
this . stackMacrosRequests . shift ( ) ;
this . onMacrosPermissionRequest ( ) ;
} else {
Common . UI . warning ( {
msg : this . textRequestMacros . replace ( '%1' , url ) ,
buttons : [ 'yes' , 'no' ] ,
primary : 'yes' ,
dontshow : true ,
textDontShow : this . textRememberMacros ,
maxwidth : 600 ,
callback : function ( btn , dontshow ) {
if ( dontshow ) {
Common . Utils . InternalSettings . set ( "de-allow-macros-request" , ( btn == 'yes' ) ? 1 : 2 ) ;
Common . localStorage . setItem ( "de-allow-macros-request" , ( btn == 'yes' ) ? 1 : 2 ) ;
}
setTimeout ( function ( ) {
if ( callback ) callback ( btn == 'yes' ) ;
me . stackMacrosRequests . shift ( ) ;
me . onMacrosPermissionRequest ( ) ;
} , 1 ) ;
}
} ) ;
}
2022-05-19 14:54:49 +00:00
} ,
2020-08-12 17:30:04 +00:00
loadAutoCorrectSettings : function ( ) {
// autocorrection
var me = this ;
var value = Common . localStorage . getItem ( "de-settings-math-correct-add" ) ;
Common . Utils . InternalSettings . set ( "de-settings-math-correct-add" , value ) ;
var arrAdd = value ? JSON . parse ( value ) : [ ] ;
value = Common . localStorage . getItem ( "de-settings-math-correct-rem" ) ;
Common . Utils . InternalSettings . set ( "de-settings-math-correct-rem" , value ) ;
var arrRem = value ? JSON . parse ( value ) : [ ] ;
value = Common . localStorage . getBool ( "de-settings-math-correct-replace-type" , true ) ; // replace on type
Common . Utils . InternalSettings . set ( "de-settings-math-correct-replace-type" , value ) ;
me . api . asc _refreshOnStartAutoCorrectMathSymbols ( arrRem , arrAdd , value ) ;
value = Common . localStorage . getItem ( "de-settings-rec-functions-add" ) ;
Common . Utils . InternalSettings . set ( "de-settings-rec-functions-add" , value ) ;
arrAdd = value ? JSON . parse ( value ) : [ ] ;
value = Common . localStorage . getItem ( "de-settings-rec-functions-rem" ) ;
Common . Utils . InternalSettings . set ( "de-settings-rec-functions-rem" , value ) ;
arrRem = value ? JSON . parse ( value ) : [ ] ;
me . api . asc _refreshOnStartAutoCorrectMathFunctions ( arrRem , arrAdd ) ;
value = Common . localStorage . getBool ( "de-settings-autoformat-bulleted" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-bulleted" , value ) ;
me . api . asc _SetAutomaticBulletedLists ( value ) ;
value = Common . localStorage . getBool ( "de-settings-autoformat-numbered" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-numbered" , value ) ;
me . api . asc _SetAutomaticNumberedLists ( value ) ;
value = Common . localStorage . getBool ( "de-settings-autoformat-smart-quotes" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-smart-quotes" , value ) ;
me . api . asc _SetAutoCorrectSmartQuotes ( value ) ;
value = Common . localStorage . getBool ( "de-settings-autoformat-hyphens" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-hyphens" , value ) ;
me . api . asc _SetAutoCorrectHyphensWithDash ( value ) ;
2021-05-19 17:53:49 +00:00
value = Common . localStorage . getBool ( "de-settings-autoformat-fl-sentence" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-fl-sentence" , value ) ;
me . api . asc _SetAutoCorrectFirstLetterOfSentences ( value ) ;
2021-08-27 11:42:59 +00:00
value = Common . localStorage . getBool ( "de-settings-autoformat-hyperlink" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-hyperlink" , value ) ;
2021-08-31 16:08:04 +00:00
me . api . asc _SetAutoCorrectHyperlinks ( value ) ;
2021-09-07 10:39:38 +00:00
value = Common . localStorage . getBool ( "de-settings-autoformat-fl-cells" , true ) ;
Common . Utils . InternalSettings . set ( "de-settings-autoformat-fl-cells" , value ) ;
me . api . asc _SetAutoCorrectFirstLetterOfCells ( value ) ;
2022-01-18 09:23:41 +00:00
value = Common . localStorage . getBool ( "de-settings-autoformat-double-space" , Common . Utils . isMac ) ; // add period with double-space in MacOs by default
Common . Utils . InternalSettings . set ( "de-settings-autoformat-double-space" , value ) ;
me . api . asc _SetAutoCorrectDoubleSpaceWithPeriod ( value ) ;
2020-08-12 17:30:04 +00:00
} ,
2020-12-10 11:48:03 +00:00
showRenameUserDialog : function ( ) {
2020-12-11 10:08:13 +00:00
if ( this . _renameDialog ) return ;
2020-12-10 11:48:03 +00:00
var me = this ;
2020-12-11 10:08:13 +00:00
this . _renameDialog = new Common . Views . UserNameDialog ( {
2020-12-10 11:48:03 +00:00
label : this . textRenameLabel ,
error : this . textRenameError ,
2020-12-20 09:22:46 +00:00
value : Common . Utils . InternalSettings . get ( "guest-username" ) || '' ,
check : Common . Utils . InternalSettings . get ( "save-guest-username" ) || false ,
2020-12-10 11:48:03 +00:00
validation : function ( value ) {
return value . length < 128 ? true : me . textLongName ;
} ,
2020-12-18 16:20:31 +00:00
handler : function ( result , settings ) {
2020-12-10 11:48:03 +00:00
if ( result == 'ok' ) {
2020-12-29 20:48:47 +00:00
var name = settings . input ? settings . input + ' (' + me . appOptions . guestName + ')' : me . textAnonymous ;
2020-12-10 11:48:03 +00:00
var _user = new Asc . asc _CUserInfo ( ) ;
_user . put _FullName ( name ) ;
var docInfo = new Asc . asc _CDocInfo ( ) ;
docInfo . put _UserInfo ( _user ) ;
2020-12-18 10:23:14 +00:00
me . api . asc _changeDocInfo ( docInfo ) ;
2020-12-10 11:48:03 +00:00
2020-12-18 16:20:31 +00:00
settings . checkbox ? Common . localStorage . setItem ( "guest-username" , settings . input ) : Common . localStorage . removeItem ( "guest-username" ) ;
Common . Utils . InternalSettings . set ( "guest-username" , settings . input ) ;
2020-12-20 09:22:46 +00:00
Common . Utils . InternalSettings . set ( "save-guest-username" , settings . checkbox ) ;
2020-12-10 11:48:03 +00:00
}
}
2020-12-11 10:08:13 +00:00
} ) ;
this . _renameDialog . on ( 'close' , function ( ) {
me . _renameDialog = undefined ;
} ) ;
this . _renameDialog . show ( Common . Utils . innerWidth ( ) - this . _renameDialog . options . width - 15 , 30 ) ;
2020-12-10 11:48:03 +00:00
} ,
2021-05-06 11:37:46 +00:00
onGrabFocus : function ( ) {
this . getApplication ( ) . getController ( 'DocumentHolder' ) . getView ( ) . focus ( ) ;
} ,
2021-05-12 09:33:10 +00:00
onLanguageLoaded : function ( ) {
if ( ! Common . Locale . getCurrentLanguage ( ) ) {
Common . UI . warning ( {
msg : this . errorLang ,
2021-05-12 11:36:24 +00:00
buttons : [ ] ,
closable : false
2021-05-12 09:33:10 +00:00
} ) ;
return false ;
}
return true ;
} ,
2022-10-04 18:53:31 +00:00
onConfirmAction : function ( id , apiCallback , data ) {
var me = this ;
if ( id == Asc . c _oAscConfirm . ConfirmMaxChangesSize ) {
Common . UI . warning ( {
title : this . notcriticalErrorTitle ,
msg : this . confirmMaxChangesSize ,
buttons : [ { value : 'ok' , caption : this . textUndo , primary : true } , { value : 'cancel' , caption : this . textContinue } ] ,
maxwidth : 600 ,
callback : _ . bind ( function ( btn ) {
if ( apiCallback ) {
apiCallback ( btn === 'ok' ) ;
}
me . onEditComplete ( ) ;
} , this )
} ) ;
}
} ,
2016-03-11 00:48:53 +00:00
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.' ,
criticalErrorTitle : 'Error' ,
notcriticalErrorTitle : 'Warning' ,
errorDefaultMessage : 'Error code: %1' ,
2019-04-29 11:42:58 +00:00
criticalErrorExtText : 'Press "OK" to back to document list.' ,
2016-03-11 00:48:53 +00:00
openTitleText : 'Opening Document' ,
openTextText : 'Opening 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...' ,
2019-10-11 12:12:59 +00:00
uploadImageSizeMessage : 'Maximum image size limit exceeded.' ,
2016-03-11 00:48:53 +00:00
uploadImageExtMessage : 'Unknown image format.' ,
uploadImageFileCountMessage : 'No images uploaded.' ,
reloadButtonText : 'Reload Page' ,
unknownErrorText : 'Unknown error.' ,
convertationTimeoutText : 'Convertation timeout exceeded.' ,
downloadErrorText : 'Download failed.' ,
2019-04-29 11:02:52 +00:00
unsupportedBrowserErrorText : 'Your browser is not supported.' ,
2016-03-11 00:48:53 +00:00
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.' ,
2018-04-26 10:27:08 +00:00
errorFilePassProtect : 'The file is password protected and cannot be opened.' ,
2016-03-11 00:48:53 +00:00
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' ,
2016-07-04 14:41:11 +00:00
loadingDocumentTitleText : 'Loading document' ,
2016-03-11 00:48:53 +00:00
loadingDocumentTextText : 'Loading document...' ,
warnProcessRightsChange : 'You have been denied the right to edit the file.' ,
errorProcessSaveResult : 'Saving is failed.' ,
2016-11-16 10:35:26 +00:00
textCloseTip : 'Click to close the tip.' ,
2016-03-11 00:48:53 +00:00
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' ,
2020-01-20 11:04:17 +00:00
errorMailMergeLoadFile : 'Loading the document failed. Please select a different file.' ,
2016-03-11 00:48:53 +00:00
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' ,
2019-11-01 14:43:24 +00:00
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.' ,
2016-03-11 00:48:53 +00:00
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' ,
2016-06-23 06:45:41 +00:00
textBuyNow : 'Visit website' ,
2020-07-14 09:46:15 +00:00
textNoLicenseTitle : 'License limit reached' ,
2016-07-25 07:56:39 +00:00
textContactUs : 'Contact sales' ,
2019-10-30 14:27:57 +00:00
errorViewerDisconnect : 'Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored and page is reloaded.' ,
2016-08-29 11:46:15 +00:00
warnLicenseExp : 'Your license has expired.<br>Please update your license and refresh the page.' ,
2016-09-13 06:40:44 +00:00
titleLicenseExp : 'License expired' ,
openErrorText : 'An error has occurred while opening the file' ,
2016-11-28 11:52:03 +00:00
saveErrorText : 'An error has occurred while saving the file' ,
errorToken : 'The document security token is not correctly formed.<br>Please contact your Document Server administrator.' ,
errorTokenExpire : 'The document security token has expired.<br>Please contact your Document Server administrator.' ,
errorSessionAbsolute : 'The document editing session has expired. Please reload the page.' ,
errorSessionIdle : 'The document has not been edited for quite a long time. Please reload the page.' ,
errorSessionToken : 'The connection to the server has been interrupted. Please reload the page.' ,
2017-04-11 11:37:45 +00:00
errorAccessDeny : 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.' ,
titleServerVersion : 'Editor updated' ,
2017-04-11 13:40:01 +00:00
errorServerVersion : 'The editor version has been updated. The page will be reloaded to apply the changes.' ,
2017-06-27 10:38:19 +00:00
textChangesSaved : 'All changes saved' ,
2017-06-23 13:46:10 +00:00
errorBadImageUrl : 'Image url is incorrect' ,
txtStyle _Normal : 'Normal' ,
txtStyle _No _Spacing : 'No Spacing' ,
txtStyle _Heading _1 : 'Heading 1' ,
txtStyle _Heading _2 : 'Heading 2' ,
txtStyle _Heading _3 : 'Heading 3' ,
txtStyle _Heading _4 : 'Heading 4' ,
txtStyle _Heading _5 : 'Heading 5' ,
txtStyle _Heading _6 : 'Heading 6' ,
txtStyle _Heading _7 : 'Heading 7' ,
txtStyle _Heading _8 : 'Heading 8' ,
txtStyle _Heading _9 : 'Heading 9' ,
txtStyle _Title : 'Title' ,
txtStyle _Subtitle : 'Subtitle' ,
txtStyle _Quote : 'Quote' ,
txtStyle _Intense _Quote : 'Intense Quote' ,
2017-06-28 08:42:58 +00:00
txtStyle _List _Paragraph : 'List Paragraph' ,
2018-03-07 11:54:22 +00:00
txtStyle _footnote _text : 'Footnote Text' ,
2017-06-28 08:42:58 +00:00
saveTextText : 'Saving document...' ,
2017-11-22 12:20:51 +00:00
saveTitleText : 'Saving Document' ,
2017-10-26 13:05:05 +00:00
txtBookmarkError : "Error! Bookmark not defined." ,
txtAbove : "above" ,
txtBelow : "below" ,
2019-04-30 10:38:53 +00:00
txtOnPage : "on page" ,
2017-10-26 13:05:05 +00:00
txtHeader : "Header" ,
txtFooter : "Footer" ,
2019-04-30 10:38:53 +00:00
txtSection : "-Section" ,
txtFirstPage : "First Page" ,
txtEvenPage : "Even Page" ,
txtOddPage : "Odd Page" ,
2017-11-09 09:03:17 +00:00
txtSameAsPrev : "Same as Previous" ,
2017-12-11 10:24:21 +00:00
txtCurrentDocument : "Current Document" ,
2020-02-17 09:04:39 +00:00
txtNoTableOfContents : "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." ,
2018-03-12 16:48:34 +00:00
txtTableOfContents : "Table of Contents" ,
2018-05-28 10:00:03 +00:00
errorForceSave : "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later." ,
2020-07-14 09:46:15 +00:00
warnNoLicense : "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms." ,
warnNoLicenseUsers : "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms." ,
warnLicenseExceeded : "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more." ,
warnLicenseUsersExceeded : "You've reached the user limit for %1 editors. Contact your administrator to learn more." ,
2018-09-07 10:22:03 +00:00
errorDataEncrypted : 'Encrypted changes have been received, they cannot be deciphered.' ,
textClose : 'Close' ,
textPaidFeature : 'Paid feature' ,
2018-10-30 10:08:21 +00:00
scriptLoadError : 'The connection is too slow, some of the components could not be loaded. Please reload the page.' ,
2018-10-25 13:19:29 +00:00
errorEditingSaveas : 'An error occurred during the work with the document.<br>Use the \'Save as...\' option to save the file backup copy to your computer hard drive.' ,
2019-02-08 12:08:19 +00:00
errorEditingDownloadas : 'An error occurred during the work with the document.<br>Use the \'Download as...\' option to save the file backup copy to your computer hard drive.' ,
txtShape _textRect : 'Text Box' ,
txtShape _rect : 'Rectangle' ,
txtShape _ellipse : 'Ellipse' ,
txtShape _triangle : 'Triangle' ,
txtShape _rtTriangle : 'Right Triangle' ,
txtShape _parallelogram : 'Parallelogram' ,
txtShape _trapezoid : 'Trapezoid' ,
txtShape _diamond : 'Diamond' ,
txtShape _pentagon : 'Pentagon' ,
txtShape _hexagon : 'Hexagon' ,
txtShape _heptagon : 'Heptagon' ,
txtShape _octagon : 'Octagon' ,
txtShape _decagon : 'Decagon' ,
txtShape _dodecagon : 'Dodecagon' ,
txtShape _pie : 'Pie' ,
txtShape _chord : 'Chord' ,
txtShape _teardrop : 'Teardrop' ,
txtShape _frame : 'Frame' ,
txtShape _halfFrame : 'Half Frame' ,
txtShape _corner : 'Corner' ,
txtShape _diagStripe : 'Diagonal Stripe' ,
txtShape _plus : 'Plus' ,
txtShape _plaque : 'Sign' ,
txtShape _can : 'Can' ,
txtShape _cube : 'Cube' ,
txtShape _bevel : 'Bevel' ,
txtShape _donut : 'Donut' ,
txtShape _noSmoking : '"No" Symbol' ,
txtShape _blockArc : 'Block Arc' ,
txtShape _foldedCorner : 'Folded Corner' ,
txtShape _smileyFace : 'Smiley Face' ,
txtShape _heart : 'Heart' ,
txtShape _lightningBolt : 'Lightning Bolt' ,
txtShape _sun : 'Sun' ,
txtShape _moon : 'Moon' ,
txtShape _cloud : 'Cloud' ,
txtShape _arc : 'Arc' ,
txtShape _bracePair : 'Double Brace' ,
txtShape _leftBracket : 'Left Bracket' ,
txtShape _rightBracket : 'Right Bracket' ,
txtShape _leftBrace : 'Left Brace' ,
txtShape _rightBrace : 'Right Brace' ,
txtShape _rightArrow : 'Right Arrow' ,
txtShape _leftArrow : 'Left Arrow' ,
txtShape _upArrow : 'Up Arrow' ,
txtShape _downArrow : 'Down Arrow' ,
txtShape _leftRightArrow : 'Left Right Arrow' ,
txtShape _upDownArrow : 'Up Down Arrow' ,
txtShape _quadArrow : 'Quad Arrow' ,
txtShape _leftRightUpArrow : 'Left Right Up Arrow' ,
txtShape _bentArrow : 'Bent Arrow' ,
txtShape _uturnArrow : 'U-Turn Arrow' ,
txtShape _leftUpArrow : 'Left Up Arrow' ,
txtShape _bentUpArrow : 'Bent Up Arrow' ,
txtShape _curvedRightArrow : 'Curved Right Arrow' ,
txtShape _curvedLeftArrow : 'Curved Left Arrow' ,
txtShape _curvedUpArrow : 'Curved Up Arrow' ,
txtShape _curvedDownArrow : 'Curved Down Arrow' ,
txtShape _stripedRightArrow : 'Striped Right Arrow' ,
txtShape _notchedRightArrow : 'Notched Right Arrow' ,
txtShape _homePlate : 'Pentagon' ,
txtShape _chevron : 'Chevron' ,
txtShape _rightArrowCallout : 'Right Arrow Callout' ,
txtShape _downArrowCallout : 'Down Arrow Callout' ,
txtShape _leftArrowCallout : 'Left Arrow Callout' ,
txtShape _upArrowCallout : 'Up Arrow Callout' ,
txtShape _leftRightArrowCallout : 'Left Right Arrow Callout' ,
txtShape _quadArrowCallout : 'Quad Arrow Callout' ,
txtShape _circularArrow : 'Circular Arrow' ,
txtShape _mathPlus : 'Plus' ,
txtShape _mathMinus : 'Minus' ,
txtShape _mathMultiply : 'Multiply' ,
txtShape _mathDivide : 'Division' ,
txtShape _mathEqual : 'Equal' ,
txtShape _mathNotEqual : 'Not Equal' ,
txtShape _flowChartProcess : 'Flowchart: Process' ,
txtShape _flowChartAlternateProcess : 'Flowchart: Alternate Process' ,
txtShape _flowChartDecision : 'Flowchart: Decision' ,
txtShape _flowChartInputOutput : 'Flowchart: Data' ,
txtShape _flowChartPredefinedProcess : 'Flowchart: Predefined Process' ,
txtShape _flowChartInternalStorage : 'Flowchart: Internal Storage' ,
txtShape _flowChartDocument : 'Flowchart: Document' ,
txtShape _flowChartMultidocument : 'Flowchart: Multidocument ' ,
txtShape _flowChartTerminator : 'Flowchart: Terminator' ,
txtShape _flowChartPreparation : 'Flowchart: Preparation' ,
txtShape _flowChartManualInput : 'Flowchart: Manual Input' ,
txtShape _flowChartManualOperation : 'Flowchart: Manual Operation' ,
txtShape _flowChartConnector : 'Flowchart: Connector' ,
txtShape _flowChartOffpageConnector : 'Flowchart: Off-page Connector' ,
txtShape _flowChartPunchedCard : 'Flowchart: Card' ,
txtShape _flowChartPunchedTape : 'Flowchart: Punched Tape' ,
txtShape _flowChartSummingJunction : 'Flowchart: Summing Junction' ,
txtShape _flowChartOr : 'Flowchart: Or' ,
txtShape _flowChartCollate : 'Flowchart: Collate' ,
txtShape _flowChartSort : 'Flowchart: Sort' ,
txtShape _flowChartExtract : 'Flowchart: Extract' ,
txtShape _flowChartMerge : 'Flowchart: Merge' ,
txtShape _flowChartOnlineStorage : 'Flowchart: Stored Data' ,
txtShape _flowChartDelay : 'Flowchart: Delay' ,
txtShape _flowChartMagneticTape : 'Flowchart: Sequential Access Storage' ,
txtShape _flowChartMagneticDisk : 'Flowchart: Magnetic Disk' ,
txtShape _flowChartMagneticDrum : 'Flowchart: Direct Access Storage' ,
txtShape _flowChartDisplay : 'Flowchart: Display' ,
txtShape _irregularSeal1 : 'Explosion 1' ,
txtShape _irregularSeal2 : 'Explosion 2' ,
txtShape _star4 : '4-Point Star' ,
txtShape _star5 : '5-Point Star' ,
txtShape _star6 : '6-Point Star' ,
txtShape _star7 : '7-Point Star' ,
txtShape _star8 : '8-Point Star' ,
txtShape _star10 : '10-Point Star' ,
txtShape _star12 : '12-Point Star' ,
txtShape _star16 : '16-Point Star' ,
txtShape _star24 : '24-Point Star' ,
txtShape _star32 : '32-Point Star' ,
txtShape _ribbon2 : 'Up Ribbon' ,
txtShape _ribbon : 'Down Ribbon' ,
txtShape _ellipseRibbon2 : 'Curved Up Ribbon' ,
txtShape _ellipseRibbon : 'Curved Down Ribbon' ,
txtShape _verticalScroll : 'Vertical Scroll' ,
txtShape _horizontalScroll : 'Horizontal Scroll' ,
txtShape _wave : 'Wave' ,
txtShape _doubleWave : 'Double Wave' ,
txtShape _wedgeRectCallout : 'Rectangular Callout' ,
txtShape _wedgeRoundRectCallout : 'Rounded Rectangular Callout' ,
txtShape _wedgeEllipseCallout : 'Oval Callout' ,
txtShape _cloudCallout : 'Cloud Callout' ,
txtShape _borderCallout1 : 'Line Callout 1' ,
txtShape _borderCallout2 : 'Line Callout 2' ,
txtShape _borderCallout3 : 'Line Callout 3' ,
txtShape _accentCallout1 : 'Line Callout 1 (Accent Bar)' ,
txtShape _accentCallout2 : 'Line Callout 2 (Accent Bar)' ,
txtShape _accentCallout3 : 'Line Callout 3 (Accent Bar)' ,
txtShape _callout1 : 'Line Callout 1 (No Border)' ,
txtShape _callout2 : 'Line Callout 2 (No Border)' ,
txtShape _callout3 : 'Line Callout 3 (No Border)' ,
txtShape _accentBorderCallout1 : 'Line Callout 1 (Border and Accent Bar)' ,
txtShape _accentBorderCallout2 : 'Line Callout 2 (Border and Accent Bar)' ,
txtShape _accentBorderCallout3 : 'Line Callout 3 (Border and Accent Bar)' ,
txtShape _actionButtonBackPrevious : 'Back or Previous Button' ,
txtShape _actionButtonForwardNext : 'Forward or Next Button' ,
txtShape _actionButtonBeginning : 'Beginning Button' ,
txtShape _actionButtonEnd : 'End Button' ,
txtShape _actionButtonHome : 'Home Button' ,
txtShape _actionButtonInformation : 'Information Button' ,
txtShape _actionButtonReturn : 'Return Button' ,
txtShape _actionButtonMovie : 'Movie Button' ,
txtShape _actionButtonDocument : 'Document Button' ,
txtShape _actionButtonSound : 'Sound Button' ,
txtShape _actionButtonHelp : 'Help Button' ,
txtShape _actionButtonBlank : 'Blank Button' ,
txtShape _roundRect : 'Round Corner Rectangle' ,
txtShape _snip1Rect : 'Snip Single Corner Rectangle' ,
txtShape _snip2SameRect : 'Snip Same Side Corner Rectangle' ,
txtShape _snip2DiagRect : 'Snip Diagonal Corner Rectangle' ,
txtShape _snipRoundRect : 'Snip and Round Single Corner Rectangle' ,
txtShape _round1Rect : 'Round Single Corner Rectangle' ,
txtShape _round2SameRect : 'Round Same Side Corner Rectangle' ,
txtShape _round2DiagRect : 'Round Diagonal Corner Rectangle' ,
txtShape _line : 'Line' ,
txtShape _lineWithArrow : 'Arrow' ,
txtShape _lineWithTwoArrows : 'Double Arrow' ,
txtShape _bentConnector5 : 'Elbow Connector' ,
txtShape _bentConnector5WithArrow : 'Elbow Arrow Connector' ,
txtShape _bentConnector5WithTwoArrows : 'Elbow Double-Arrow Connector' ,
txtShape _curvedConnector3 : 'Curved Connector' ,
txtShape _curvedConnector3WithArrow : 'Curved Arrow Connector' ,
txtShape _curvedConnector3WithTwoArrows : 'Curved Double-Arrow Connector' ,
txtShape _spline : 'Curve' ,
txtShape _polyline1 : 'Scribble' ,
2019-03-04 08:53:58 +00:00
txtShape _polyline2 : 'Freeform' ,
2019-03-06 08:16:21 +00:00
txtSyntaxError : 'Syntax Error' ,
txtMissOperator : 'Missing Operator' ,
txtMissArg : 'Missing Argument' ,
txtTooLarge : 'Number Too Large To Format' ,
txtZeroDivide : 'Zero Divide' ,
txtNotInTable : 'Is Not In Table' ,
txtIndTooLarge : 'Index Too Large' ,
txtFormulaNotInTable : 'The Formula Not In Table' ,
txtTableInd : 'Table Index Cannot be Zero' ,
txtUndefBookmark : 'Undefined Bookmark' ,
2019-03-06 10:04:14 +00:00
txtEndOfFormula : 'Unexpected End of Formula' ,
2019-03-15 10:30:01 +00:00
errorEmailClient : 'No email client could be found' ,
2019-04-30 11:11:24 +00:00
textCustomLoader : 'Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.' ,
2019-05-08 11:52:35 +00:00
txtHyperlink : 'Hyperlink' ,
2019-08-28 14:29:39 +00:00
waitText : 'Please, wait...' ,
2019-10-03 14:36:52 +00:00
errorFileSizeExceed : 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.' ,
txtMainDocOnly : 'Error! Main Document Only.' ,
txtNotValidBookmark : 'Error! Not a valid bookmark self-reference.' ,
2019-10-11 12:12:59 +00:00
txtNoText : 'Error! No text of specified style in document.' ,
uploadDocSizeMessage : 'Maximum document size limit exceeded.' ,
uploadDocExtMessage : 'Unknown document format.' ,
2019-11-14 09:47:19 +00:00
uploadDocFileCountMessage : 'No documents uploaded.' ,
2019-12-12 07:37:28 +00:00
errorUpdateVersionOnDisconnect : 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.' ,
2021-03-26 21:36:57 +00:00
txtChoose : 'Choose an item' ,
2020-01-21 13:13:43 +00:00
errorDirectUrl : 'Please verify the link to the document.<br>This link must be a direct link to the file for downloading.' ,
2020-03-13 14:09:06 +00:00
txtStyle _Caption : 'Caption' ,
2020-03-25 13:07:23 +00:00
errorCompare : 'The Compare documents feature is not available in the co-editing mode.' ,
textConvertEquation : 'This equation was created with an old version of equation editor which is no longer supported. Converting this equation to Office Math ML format will make it editable.<br>Do you want to convert this equation?' ,
textApplyAll : 'Apply to all equations' ,
2020-04-07 14:29:38 +00:00
textLearnMore : 'Learn More' ,
2021-03-26 21:36:57 +00:00
txtEnterDate : 'Enter a date' ,
txtTypeEquation : 'Type equation here' ,
2020-05-21 16:30:57 +00:00
textHasMacros : 'The file contains automatic macros.<br>Do you want to run macros?' ,
2022-05-19 18:11:36 +00:00
textRemember : 'Remember my choice for all files' ,
2020-11-09 11:52:21 +00:00
warnLicenseLimitedRenewed : 'License needs to be renewed.<br>You have a limited access to document editing functionality.<br>Please contact your administrator to get full access' ,
2020-11-24 12:31:51 +00:00
warnLicenseLimitedNoAccess : 'License expired.<br>You have no access to document editing functionality.<br>Please contact your administrator.' ,
2020-12-08 08:48:28 +00:00
saveErrorTextDesktop : 'This file cannot be saved or created.<br>Possible reasons are: <br>1. The file is read-only. <br>2. The file is being edited by other users. <br>3. The disk is full or corrupted.' ,
2020-12-10 14:25:39 +00:00
errorComboSeries : 'To create a combination chart, select at least two series of data.' ,
2020-12-30 08:24:02 +00:00
errorSetPassword : 'Password could not be set.' ,
2020-12-10 11:48:03 +00:00
textRenameLabel : 'Enter a name to be used for collaboration' ,
textRenameError : 'User name must not be empty.' ,
textLongName : 'Enter a name that is less than 128 characters.' ,
2021-02-09 10:31:05 +00:00
textGuest : 'Guest' ,
2021-03-26 21:36:57 +00:00
errorSubmit : 'Submit failed.' ,
2021-03-28 20:59:55 +00:00
txtClickToLoad : 'Click to load image' ,
2021-04-01 10:36:08 +00:00
leavePageTextOnClose : 'All unsaved changes in this document will be lost.<br> Click \'Cancel\' then \'Save\' to save them. Click \'OK\' to discard all the unsaved changes.' ,
2021-04-09 21:37:17 +00:00
textTryUndoRedoWarn : 'The Undo/Redo functions are disabled for the Fast co-editing mode.' ,
2021-04-29 21:07:29 +00:00
txtNone : 'None' ,
2021-04-19 19:40:42 +00:00
txtNoTableOfFigures : "No table of figures entries found." ,
txtTableOfFigures : 'Table of figures' ,
txtStyle _endnote _text : 'Endnote Text' ,
2021-06-29 21:31:55 +00:00
txtTOCHeading : 'TOC Heading' ,
2021-07-04 20:39:04 +00:00
textDisconnect : 'Connection is lost' ,
2021-12-13 21:37:33 +00:00
textReconnect : 'Connection is restored' ,
2021-08-19 17:58:59 +00:00
errorLang : 'The interface language is not loaded.<br>Please contact your Document Server administrator.' ,
2022-03-14 11:44:08 +00:00
errorLoadingFont : 'Fonts are not loaded.<br>Please contact your Document Server administrator.' ,
2022-03-14 13:36:33 +00:00
errorEmptyTOC : 'Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.' ,
2022-05-19 14:54:49 +00:00
errorNoTOC : 'There\'s no table of contents to update. You can insert one from the References tab.' ,
2022-05-19 18:11:36 +00:00
textRequestMacros : 'A macro makes a request to URL. Do you want to allow the request to the %1?' ,
2022-08-30 13:40:07 +00:00
textRememberMacros : 'Remember my choice for all macros' ,
2022-10-06 12:03:38 +00:00
errorTextFormWrongFormat : 'The value entered does not match the format of the field.' ,
2022-10-15 11:10:35 +00:00
errorPasswordIsNotCorrect : 'The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.' ,
2022-10-04 18:53:31 +00:00
confirmMaxChangesSize : 'The size of actions exceeds the limitation set for your server.<br>Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).' ,
textUndo : 'Undo' ,
2022-11-07 21:34:47 +00:00
textContinue : 'Continue' ,
errorInconsistentExtDocx : 'An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.' ,
errorInconsistentExtXlsx : 'An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.' ,
errorInconsistentExtPptx : 'An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.' ,
errorInconsistentExtPdf : 'An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.' ,
2022-11-28 19:11:35 +00:00
errorInconsistentExt : 'An error has occurred while opening the file.<br>The file content does not match the file extension.' ,
2022-12-04 14:44:46 +00:00
errorCannotPasteImg : 'We can\'t paste this image from the Clipboard, but you can save it to your device and \ninsert it from there, or you can copy the image without text and paste it into the document.' ,
2022-11-21 21:56:54 +00:00
textTryQuickPrint : 'You have selected Quick print: the entire document will be printed on the last selected or default printer.<br>Do you want to continue?'
2016-03-11 00:48:53 +00:00
}
} ) ( ) , DE . Controllers . Main || { } ) )
} ) ;