2016-04-01 13:17:09 +00:00
/ *
*
2017-01-17 14:58:08 +00:00
* ( c ) Copyright Ascensio System Limited 2010 - 2017
2016-04-01 13:17:09 +00:00
*
* This program is a free software product . You can redistribute it and / or
* modify it under the terms of the GNU Affero General Public License ( AGPL )
* version 3 as published by the Free Software Foundation . In accordance with
* Section 7 ( a ) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non - infringement
* of any third - party rights .
*
* This program is distributed WITHOUT ANY WARRANTY ; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . For
* details , see the GNU AGPL at : http : //www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st . 125 a - 25 , Riga , Latvia ,
* EU , LV - 1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices , as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7 ( b ) of the License you must retain the original Product
* logo when distributing the program . Pursuant to Section 7 ( e ) we decline to
* grant you any rights under trademark law for use of our trademarks .
*
* All the Product ' s GUI elements , including illustrations and icon sets , as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution - ShareAlike 4.0 International . See the License
* terms at http : //creativecommons.org/licenses/by-sa/4.0/legalcode
*
* /
2016-03-11 00:48:53 +00:00
/ * *
* Main . js
*
* Main controller
*
* Created by Julia Radzhabova on 26 March 2014
* Copyright ( c ) 2014 Ascensio System SIA . All rights reserved .
*
* /
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' ,
2016-09-29 13:06:22 +00:00
'common/main/lib/view/OpenDialog' ,
2017-01-27 16:20:14 +00:00
'common/main/lib/util/LocalStorage' ,
2016-03-11 00:48:53 +00:00
'presentationeditor/main/app/collection/ShapeGroups' ,
2016-10-25 10:48:31 +00:00
'presentationeditor/main/app/collection/SlideLayouts' ,
'presentationeditor/main/app/collection/EquationGroups'
2016-03-11 00:48:53 +00:00
] , function ( ) { 'use strict' ;
PE . Controllers . Main = Backbone . Controller . extend ( _ . extend ( ( function ( ) {
2017-04-20 12:13:11 +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-11 11:05:56 +00:00
header : '#viewport #header' ,
statusBar : '#statusbar'
2016-03-11 00:48:53 +00:00
} ;
Common . localStorage . setId ( 'presentation' ) ;
Common . localStorage . setKeysFilter ( 'pe-,asc.presentation' ) ;
Common . localStorage . sync ( ) ;
return {
models : [ ] ,
collections : [
'ShapeGroups' ,
'SlideLayouts' ,
2016-10-25 10:48:31 +00:00
'EquationGroups' ,
2016-03-11 00:48:53 +00:00
'Common.Collections.TextArt'
] ,
views : [ ] ,
initialize : function ( ) {
this . addListeners ( {
'FileMenu' : {
'settings:apply' : _ . bind ( this . applySettings , this )
}
} ) ;
} ,
onLaunch : function ( ) {
var me = this ;
2017-04-11 11:05:56 +00:00
this . _state = { isDisconnected : false , usersCount : 1 , fastCoauth : true , lostEditingRights : false , licenseWarning : false } ;
2017-04-26 08:34:55 +00:00
this . languages = null ;
2016-03-11 00:48:53 +00:00
window . storagename = 'presentation' ;
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 ; }
} ) ;
// Initialize viewport
if ( ! Common . Utils . isBrowserSupported ( ) ) {
Common . Utils . showBrowserRestriction ( ) ;
Common . Gateway . reportError ( undefined , this . unsupportedBrowserErrorText ) ;
return ;
}
// Initialize api
2016-05-10 11:52:24 +00:00
window [ "flat_desine" ] = true ;
2016-05-13 08:37:54 +00:00
this . api = new Asc . asc _docs _api ( {
2017-06-23 13:43:21 +00:00
'id-view' : 'editor_sdk' ,
'translate' : {
'Series' : this . txtSeries ,
'Diagram Title' : this . txtDiagramTitle ,
'X Axis' : this . txtXAxis ,
'Y Axis' : this . txtYAxis ,
2017-06-23 13:49:29 +00:00
'Your text here' : this . txtArt ,
'Slide text' : this . txtSlideText ,
'Chart' : this . txtSldLtTChart ,
'ClipArt' : this . txtClipArt ,
'Diagram' : this . txtDiagram ,
'Date and time' : this . txtDateTime ,
'Footer' : this . txtFooter ,
'Header' : this . txtHeader ,
'Media' : this . txtMedia ,
'Picture' : this . txtPicture ,
'Image' : this . txtImage ,
'Slide number' : this . txtSlideNumber ,
'Slide subtitle' : this . txtSlideSubtitle ,
'Table' : this . txtSldLtTTbl ,
2017-08-11 07:26:21 +00:00
'Slide title' : this . txtSlideTitle ,
'Loading' : this . txtLoading
2017-06-23 13:43:21 +00:00
}
2016-05-13 08:37:54 +00:00
} ) ;
2016-03-11 00:48:53 +00:00
if ( this . api ) {
this . api . SetDrawingFreeze ( true ) ;
2016-03-24 13:21:57 +00:00
this . api . SetThemesPath ( "../../../../sdkjs/slide/themes/" ) ;
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_onThumbnailsShow' , _ . bind ( this . onThumbnailsShow , this ) ) ;
this . api . asc _registerCallback ( 'asc_onDocumentUpdateVersion' , _ . bind ( this . onUpdateVersion , this ) ) ;
2017-04-11 11:05:56 +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_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 ) ) ;
2016-09-29 13:06:22 +00:00
this . api . asc _registerCallback ( 'asc_onAdvancedOptions' , _ . bind ( this . onAdvancedOptions , this ) ) ;
2017-04-26 08:34:55 +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 ) ) ;
2016-09-29 13:06:22 +00:00
this . isShowOpenDialog = false ;
2016-03-11 00:48:53 +00:00
// Initialize api gateway
this . editorConfig = { } ;
this . appOptions = { } ;
2016-07-26 11:45:41 +00:00
this . plugins = undefined ;
2016-11-16 09:38:16 +00:00
this . UICustomizePlugins = [ ] ;
2016-03-11 00:48:53 +00:00
Common . Gateway . on ( 'init' , _ . bind ( this . loadConfig , this ) ) ;
Common . Gateway . on ( 'showmessage' , _ . bind ( this . onExternalMessage , this ) ) ;
Common . Gateway . on ( 'opendocument' , _ . bind ( this . loadDocument , this ) ) ;
Common . Gateway . ready ( ) ;
this . getApplication ( ) . getController ( 'Viewport' ) . setApi ( this . api ) ;
this . getApplication ( ) . getController ( 'Statusbar' ) . setApi ( me . api ) ;
// Syncronize focus with api
$ ( document . body ) . on ( 'focus' , 'input, textarea' , function ( e ) {
if ( ! /area_id/ . test ( e . target . id ) ) {
if ( /msg-reply/ . test ( e . target . className ) )
me . dontCloseDummyComment = true ;
2017-04-11 11:05:56 +00:00
else if ( /chat-msg-text/ . test ( e . target . id ) )
me . dontCloseChat = true ;
2016-03-11 00:48:53 +00:00
}
} ) ;
$ ( document . body ) . on ( 'blur' , 'input, textarea' , function ( e ) {
if ( ! me . isModalShowed ) {
2016-10-14 13:58:57 +00:00
if ( ! e . relatedTarget ||
! /area_id/ . test ( e . target . id ) && $ ( e . target ) . parent ( ) . find ( e . relatedTarget ) . length < 1 /* Check if focus in combobox goes from input to it's menu button or menu items */
&& ( 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" */ {
2016-03-11 00:48:53 +00:00
me . api . asc _enableKeyEvents ( true ) ;
if ( /msg-reply/ . test ( e . target . className ) )
me . dontCloseDummyComment = false ;
2017-04-11 11:05:56 +00:00
else if ( /chat-msg-text/ . test ( e . target . id ) )
me . dontCloseChat = 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 ;
}
} ) ;
Common . NotificationCenter . on ( {
'modal:show' : function ( e ) {
me . isModalShowed = true ;
me . api . asc _enableKeyEvents ( false ) ;
} ,
'modal:close' : function ( dlg ) {
2017-04-21 08:20:40 +00:00
if ( dlg && dlg . $lastmodal && dlg . $lastmodal . length < 1 ) {
2016-03-11 00:48:53 +00:00
me . isModalShowed = false ;
me . api . asc _enableKeyEvents ( true ) ;
}
} ,
'modal:hide' : function ( dlg ) {
2017-04-21 08:20:40 +00:00
if ( dlg && dlg . $lastmodal && dlg . $lastmodal . length < 1 ) {
2016-03-11 00:48:53 +00:00
me . isModalShowed = false ;
me . api . asc _enableKeyEvents ( true ) ;
}
} ,
'settings:unitschanged' : _ . bind ( this . unitsChanged , this ) ,
'dataview:focus' : function ( e ) {
} ,
'dataview:blur' : function ( e ) {
if ( ! me . isModalShowed ) {
me . api . asc _enableKeyEvents ( true ) ;
}
} ,
2016-06-23 07:50:10 +00:00
'menu:show' : function ( e ) {
} ,
2017-04-11 11:05:56 +00:00
'menu:hide' : function ( e , isFromInputControl ) {
if ( ! me . isModalShowed && ! isFromInputControl )
2016-06-23 07:50:10 +00:00
me . api . asc _enableKeyEvents ( true ) ;
} ,
2016-03-11 00:48:53 +00:00
'edit:complete' : _ . bind ( me . onEditComplete , me )
} ) ;
this . initNames ( ) ;
2017-04-11 11:05:56 +00:00
Common . util . Shortcuts . delegateShortcuts ( {
shortcuts : {
'command+s,ctrl+s' : _ . bind ( function ( e ) {
e . preventDefault ( ) ;
e . stopPropagation ( ) ;
} , this )
}
} ) ;
2016-03-11 00:48:53 +00:00
}
} ,
loadConfig : function ( data ) {
this . editorConfig = $ . extend ( this . editorConfig , data . config ) ;
this . editorConfig . user =
this . appOptions . user = Common . Utils . fillUserInfo ( data . config . user , this . editorConfig . lang , this . textAnonymous ) ;
this . appOptions . nativeApp = this . editorConfig . nativeApp === true ;
this . appOptions . isDesktopApp = this . editorConfig . targetApp == 'desktop' ;
this . appOptions . canCreateNew = ! _ . isEmpty ( this . editorConfig . createUrl ) && ! this . appOptions . isDesktopApp ;
this . appOptions . canOpenRecent = this . editorConfig . nativeApp !== true && this . editorConfig . recent !== undefined && ! this . appOptions . isDesktopApp ;
this . appOptions . templates = this . editorConfig . templates ;
this . appOptions . recent = this . editorConfig . recent ;
this . appOptions . createUrl = this . editorConfig . createUrl ;
this . appOptions . lang = this . editorConfig . lang ;
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 . canAnalytics = false ;
this . appOptions . customization = this . editorConfig . customization ;
this . appOptions . canBackToFolder = ( this . editorConfig . canBackToFolder !== false ) && ( typeof ( this . editorConfig . customization ) == 'object' )
&& ( typeof ( this . editorConfig . customization . goback ) == 'object' ) && ! _ . isEmpty ( this . editorConfig . customization . goback . url ) ;
this . appOptions . canBack = this . editorConfig . nativeApp !== true && this . appOptions . canBackToFolder === true ;
2016-07-26 11:45:41 +00:00
this . appOptions . canPlugins = false ;
this . plugins = this . editorConfig . plugins ;
2016-03-11 00:48:53 +00:00
2017-04-20 12:13:11 +00:00
appHeader = this . getApplication ( ) . getController ( 'Viewport' ) . getView ( 'Common.Views.Header' ) ;
appHeader . setCanBack ( this . appOptions . canBackToFolder === true ) ;
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 ) ;
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 ) ;
2016-04-18 12:21:15 +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 ) ;
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 ) ;
docInfo . put _Title ( data . doc . title ) ;
docInfo . put _Format ( data . doc . fileType ) ;
docInfo . put _VKey ( data . doc . vkey ) ;
docInfo . put _Options ( data . doc . options ) ;
docInfo . put _UserInfo ( _user ) ;
docInfo . put _CallbackUrl ( this . editorConfig . callbackUrl ) ;
2016-11-24 13:44:54 +00:00
docInfo . put _Token ( data . doc . token ) ;
2016-03-11 00:48:53 +00:00
//docInfo.put_OfflineApp(this.editorConfig.nativeApp === true);
}
this . api . asc _registerCallback ( 'asc_onGetEditorPermissions' , _ . bind ( this . onEditorPermissions , this ) ) ;
this . api . asc _setDocInfo ( docInfo ) ;
this . api . asc _getEditorPermissions ( this . editorConfig . licenseUrl , this . editorConfig . customerId ) ;
if ( data . doc ) {
2017-04-20 12:13:11 +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 ( ) ;
this . getApplication ( ) . getController ( 'LeftMenu' ) . leftMenu . getMenu ( 'file' ) . panels [ 'rights' ] . onLostEditRights ( ) ;
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 ( ) ;
}
} ) ;
}
} ,
onDownloadAs : function ( ) {
2016-04-05 11:52:34 +00:00
this . api . asc _DownloadAs ( Asc . c _oAscFileType . PPTX , true ) ;
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
) ;
}
}
} ,
goBack : function ( blank ) {
var href = this . appOptions . customization . goback . url ;
if ( blank ) {
window . open ( href , "_blank" ) ;
} else {
parent . location . href = href ;
}
} ,
onEditComplete : function ( cmp ) {
var application = this . getApplication ( ) ,
toolbarController = application . getController ( 'Toolbar' ) ,
toolbarView = toolbarController . getView ( 'Toolbar' ) ;
application . getController ( 'DocumentHolder' ) . getView ( 'DocumentHolder' ) . focus ( ) ;
if ( this . api && this . api . asc _isDocumentCanSave ) {
2017-04-11 11:05:56 +00:00
var cansave = this . api . asc _isDocumentCanSave ( ) ,
2017-09-05 07:54:44 +00:00
forcesave = this . appOptions . forcesave ,
isSyncButton = $ ( '.icon' , toolbarView . btnSave . cmpEl ) . hasClass ( 'btn-synch' ) ,
isDisabled = ! cansave && ! isSyncButton && ! forcesave || this . _state . isDisconnected || this . _state . fastCoauth && this . _state . usersCount > 1 && ! forcesave ;
if ( toolbarView . btnSave . isDisabled ( ) !== isDisabled )
toolbarView . btnsSave . forEach ( function ( button ) {
if ( button ) {
button . setDisabled ( isDisabled ) ;
}
} ) ;
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 ) ;
2017-04-20 12:13:11 +00:00
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-08-10 12:25:46 +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 11:05:56 +00:00
if ( this . _state . fastCoauth && this . _state . usersCount > 1 ) {
2017-04-21 11:17:08 +00:00
me . _state . timerSave = setTimeout ( function ( ) {
2017-08-10 12:25:46 +00:00
me . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( me . textChangesSaved , false , 3000 ) ;
2016-04-28 10:51:22 +00:00
} , 500 ) ;
2017-04-11 11:05:56 +00:00
} else
2017-08-10 12:25:46 +00:00
me . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( me . textChangesSaved , false , 3000 ) ;
2016-03-11 00:48:53 +00:00
} else
2017-08-10 12:25:46 +00:00
me . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( '' ) ;
2016-03-11 00:48:53 +00:00
}
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 ( ) ;
2017-04-11 11:05:56 +00:00
if ( ( id == Asc . c _oAscAsyncAction [ 'Save' ] || id == Asc . c _oAscAsyncAction [ 'ForceSaveButton' ] ) && ( ! this . _state . fastCoauth || this . _state . usersCount < 2 ) )
2016-03-11 00:48:53 +00:00
this . synchronizeChanges ( ) ;
2017-09-08 12:02:54 +00:00
if ( type == Asc . c _oAscAsyncActionType . BlockInteraction && ! ( ( id == Asc . c _oAscAsyncAction [ 'LoadDocumentFonts' ] || id == Asc . c _oAscAsyncAction [ 'ApplyChanges' ] ) && ( this . dontCloseDummyComment || this . dontCloseChat || this . isModalShowed ) ) ) {
2016-03-11 00:48:53 +00:00
this . onEditComplete ( this . loadMask ) ;
this . api . asc _enableKeyEvents ( true ) ;
}
} ,
setLongActionView : function ( action ) {
2017-04-11 11:05:56 +00:00
var title = '' , text = '' , force = false ;
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 11:05:56 +00:00
case Asc . c _oAscAsyncAction [ 'ForceSaveButton' ] :
clearTimeout ( this . _state . timerSave ) ;
force = true ;
2017-08-10 12:25:46 +00:00
title = ( ! this . appOptions . isOffline ) ? this . saveTitleText : '' ;
text = ( ! this . appOptions . isOffline ) ? this . saveTextText : '' ;
2016-03-11 00:48:53 +00:00
break ;
2017-04-11 11:05:56 +00:00
case Asc . c _oAscAsyncAction [ 'ForceSaveTimeout' ] :
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 [ 'LoadTheme' ] :
2016-03-11 00:48:53 +00:00
title = this . loadThemeTitleText ;
text = this . loadThemeTextText ;
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 [ 'PrepareToSave' ] :
2016-03-11 00:48:53 +00:00
title = this . savePreparingText ;
text = this . savePreparingTitle ;
break ;
case ApplyEditRights :
title = this . txtEditingMode ;
text = this . txtEditingMode ;
break ;
case LoadingDocument :
title = this . loadingDocumentTitleText ;
text = this . loadingDocumentTextText ;
break ;
}
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 ) ;
2016-09-29 13:06:22 +00:00
if ( ! this . isShowOpenDialog )
this . loadMask . show ( ) ;
2017-04-20 13:34:39 +00:00
} else {
2017-04-11 11:05:56 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( text , force ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onApplyEditRights : function ( data ) {
2017-04-11 11:05:56 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setStatusCaption ( '' ) ;
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 ,
2016-04-11 08:05:14 +00:00
value ;
2016-03-11 00:48:53 +00:00
me . _isDocReady = true ;
2017-04-20 13:34:39 +00:00
Common . NotificationCenter . trigger ( 'app:ready' , me . 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
value = Common . localStorage . getItem ( "pe-settings-zoom" ) ;
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 ) : - 1 ) ;
( 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
2017-08-08 11:14:14 +00:00
me . api . asc _setSpellCheck ( Common . localStorage . getBool ( "pe-settings-spellcheck" , true ) ) ;
2017-04-26 08:34:55 +00:00
2016-04-11 08:05:14 +00:00
function checkWarns ( ) {
if ( ! window [ 'AscDesktopEditor' ] ) {
var tips = [ ] ;
Common . Utils . isIE9m && tips . push ( me . warnBrowserIE9 ) ;
2016-03-11 00:48:53 +00:00
2016-04-11 08:05:14 +00:00
if ( tips . length ) me . showTips ( tips ) ;
}
document . removeEventListener ( 'visibilitychange' , checkWarns ) ;
2016-03-11 00:48:53 +00:00
}
2016-04-11 08:05:14 +00:00
if ( typeof document . hidden !== 'undefined' && document . hidden ) {
document . addEventListener ( 'visibilitychange' , checkWarns ) ;
} else checkWarns ( ) ;
2016-03-11 00:48:53 +00:00
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 ) ) ;
2017-04-20 12:13:11 +00:00
appHeader . setDocumentCaption ( me . api . asc _getDocumentName ( ) ) ;
2016-03-11 00:48:53 +00:00
me . updateWindowTitle ( true ) ;
2017-04-21 09:56:11 +00:00
me . api . SetTextBoxInputMode ( Common . localStorage . getBool ( "pe-settings-inputmode" ) ) ;
2016-03-11 00:48:53 +00:00
/** coauthoring begin **/
2016-12-20 14:29:37 +00:00
if ( me . appOptions . isEdit && ! me . appOptions . isOffline && me . appOptions . canCoAuthoring ) {
2016-03-11 00:48:53 +00:00
value = Common . localStorage . getItem ( "pe-settings-coauthmode" ) ;
2017-08-08 11:14:14 +00:00
if ( value === null && ! Common . localStorage . itemExists ( "pe-settings-autosave" ) &&
2016-11-17 11:13:33 +00:00
me . appOptions . customization && me . appOptions . customization . autosave === false ) {
value = 0 ; // use customization.autosave only when pe-settings-coauthmode and pe-settings-autosave are null
}
2016-03-11 00:48:53 +00:00
me . _state . fastCoauth = ( value === null || parseInt ( value ) == 1 ) ;
2017-06-16 07:29:15 +00:00
} else {
2017-06-14 11:59:43 +00:00
me . _state . fastCoauth = ( ! me . appOptions . isEdit && me . appOptions . canComments ) ;
2017-06-16 07:29:15 +00:00
me . _state . fastCoauth && me . api . asc _setAutoSaveGap ( 1 ) ;
}
2016-03-11 00:48:53 +00:00
me . api . asc _SetFastCollaborative ( me . _state . fastCoauth ) ;
/** coauthoring end **/
2017-08-08 11:14:14 +00:00
Common . localStorage . setBool ( "pe-settings-showsnaplines" , me . api . get _ShowSnapLines ( ) ) ;
2016-03-11 00:48:53 +00:00
2017-04-20 13:34:39 +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-07-26 11:45:41 +00:00
chatController = application . getController ( 'Common.Controllers.Chat' ) ,
pluginsController = application . getController ( 'Common.Controllers.Plugins' ) ;
2016-03-11 00:48:53 +00:00
leftmenuController . getView ( 'LeftMenu' ) . getMenu ( 'file' ) . loadDocument ( { doc : me . document } ) ;
leftmenuController . setMode ( me . appOptions ) . setApi ( me . api ) . createDelayedElements ( ) ;
chatController . setApi ( this . api ) . setMode ( this . appOptions ) ;
application . getController ( 'Common.Controllers.ExternalDiagramEditor' ) . setApi ( this . api ) . loadConfig ( { config : this . editorConfig , customization : this . editorConfig . customization } ) ;
2016-07-26 11:45:41 +00:00
pluginsController . setApi ( me . api ) ;
2016-11-16 09:38:16 +00:00
me . updatePlugins ( me . plugins , false ) ;
2017-04-11 11:05:56 +00:00
me . requestPlugins ( '../../../../plugins.json' ) ;
2016-07-26 11:45:41 +00:00
me . api . asc _registerCallback ( 'asc_onPluginsInit' , _ . bind ( me . updatePluginsList , me ) ) ;
2016-03-11 00:48:53 +00:00
documentHolderController . setApi ( me . api ) ;
documentHolderController . createDelayedElements ( ) ;
statusbarController . createDelayedElements ( ) ;
leftmenuController . getView ( 'LeftMenu' ) . disableMenu ( 'all' , false ) ;
if ( me . appOptions . canBranding )
me . getApplication ( ) . getController ( 'LeftMenu' ) . leftMenu . getMenu ( 'about' ) . setLicInfo ( me . editorConfig . customization ) ;
documentHolderController . getView ( 'DocumentHolder' ) . setApi ( me . api ) . on ( 'editcomplete' , _ . bind ( me . onEditComplete , me ) ) ;
// if (me.isThumbnailsShow) me.getMainMenu().onThumbnailsShow(me.isThumbnailsShow);
application . getController ( 'Viewport' ) . getView ( 'DocumentPreview' ) . setApi ( me . api ) . setMode ( me . appOptions ) . on ( 'editcomplete' , _ . bind ( me . onEditComplete , me ) ) ;
if ( me . appOptions . isEdit ) {
2016-03-25 07:48:19 +00:00
value = Common . localStorage . getItem ( "pe-settings-autosave" ) ;
2016-11-17 11:13:33 +00:00
if ( value === null && me . appOptions . customization && me . appOptions . customization . autosave === false )
value = 0 ;
2016-08-16 10:01:23 +00:00
value = ( ! me . _state . fastCoauth && value !== null ) ? parseInt ( value ) : ( me . appOptions . canCoAuthoring ? 1 : 0 ) ;
2016-03-25 07:48:19 +00:00
me . api . asc _setAutoSaveGap ( value ) ;
2017-04-11 11:05:56 +00:00
if ( me . appOptions . canForcesave ) { // use asc_setIsForceSaveOnUserSave only when customization->forcesave = true
2017-08-08 11:14:14 +00:00
me . appOptions . forcesave = Common . localStorage . getBool ( "pe-settings-forcesave" , me . appOptions . canForcesave ) ;
2017-04-11 11:05:56 +00:00
me . api . asc _setIsForceSaveOnUserSave ( me . appOptions . forcesave ) ;
}
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-10-19 13:30:26 +00:00
toolbarController . createDelayedElements ( ) ;
2016-03-11 00:48:53 +00:00
documentHolderController . getView ( 'DocumentHolder' ) . createDelayedElements ( ) ;
2017-04-26 08:34:55 +00:00
me . setLanguages ( ) ;
2016-03-11 00:48:53 +00:00
me . api . asc _registerCallback ( 'asc_onUpdateLayout' , _ . bind ( me . fillLayoutsStore , me ) ) ; // slide layouts loading
me . updateThemeColors ( ) ;
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-14 10:48:04 +00:00
rightmenuController . createDelayedElements ( ) ;
me . api . asc _registerCallback ( 'asc_onFocusObject' , _ . bind ( me . onFocusObject , me ) ) ;
2016-03-11 00:48:53 +00:00
me . fillTextArt ( me . api . asc _getTextArtPreviews ( ) ) ;
toolbarController . activateControls ( ) ;
if ( me . needToUpdateVersion )
toolbarController . onApiCoAuthoringDisconnect ( ) ;
me . api . UpdateInterfaceState ( ) ;
2016-11-16 09:38:16 +00:00
if ( me . appOptions . canBrandingExt )
Common . NotificationCenter . trigger ( 'document:ready' , 'main' ) ;
2016-03-11 00:48:53 +00:00
}
} , 50 ) ;
2017-06-06 08:04:04 +00:00
} else {
documentHolderController . getView ( 'DocumentHolder' ) . createDelayedElementsViewer ( ) ;
if ( me . appOptions . canBrandingExt )
Common . NotificationCenter . trigger ( 'document:ready' , 'main' ) ;
}
2016-03-11 00:48:53 +00:00
if ( this . appOptions . canAnalytics && false )
Common . component . Analytics . initialize ( 'UA-12442749-13' , 'Presentation 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 ( 'downloadas' , _ . bind ( me . onDownloadAs , me ) ) ;
Common . Gateway . sendInfo ( { mode : me . appOptions . isEdit ? 'edit' : 'view' } ) ;
$ ( document ) . on ( 'contextmenu' , _ . bind ( me . onContextMenu , me ) ) ;
if ( this . _state . licenseWarning ) {
2017-08-08 11:14:14 +00:00
value = Common . localStorage . getItem ( "pe-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 . localStorage . setItem ( "de-license-warning" , now ) ;
Common . UI . info ( {
2016-06-23 06:45:41 +00:00
width : 500 ,
2016-03-11 00:48:53 +00:00
title : this . textNoLicenseTitle ,
msg : this . warnNoLicense ,
2016-04-13 12:40:58 +00:00
buttons : [
{ value : 'buynow' , caption : this . textBuyNow } ,
{ value : 'contact' , caption : this . textContactUs }
] ,
primary : 'buynow' ,
2016-03-11 00:48:53 +00:00
callback : function ( btn ) {
2016-04-13 12:40:58 +00:00
if ( btn == 'buynow' )
2016-03-11 00:48:53 +00:00
window . open ( 'http://www.onlyoffice.com/enterprise-edition.aspx' , "_blank" ) ;
2016-04-13 12:40:58 +00:00
else if ( btn == 'contact' )
window . open ( 'mailto:sales@onlyoffice.com' , "_blank" ) ;
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 ( ) ) ;
proc = this . textLoadingDocument + ': ' + Math . min ( Math . round ( proc * 100 ) , 100 ) + '%' ;
elem ? elem . innerHTML = proc : this . loadMask . setTitle ( proc ) ;
} ,
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 ;
}
2017-04-11 11:05:56 +00:00
if ( this . onServerVersion ( params . asc _getBuildVersion ( ) ) ) return ;
2016-10-20 07:22:16 +00:00
if ( params . asc _getRights ( ) !== Asc . c _oRights . Edit )
this . permissions . edit = false ;
2016-03-11 00:48:53 +00:00
this . appOptions . isOffline = this . api . asc _isOffline ( ) ;
2016-12-20 15:40:43 +00:00
this . appOptions . canLicense = ( licType === Asc . c _oLicenseResult . Success || licType === Asc . c _oLicenseResult . SuccessLimit ) ;
2016-06-30 09:38:54 +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-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 && // can edit
( this . editorConfig . canRequestEditRights || this . editorConfig . mode !== 'view' ) ; // if mode=="view" -> canRequestEditRights must be defined
this . appOptions . isEdit = this . appOptions . canLicense && this . appOptions . canEdit && this . editorConfig . mode !== 'view' ;
this . appOptions . canDownload = ! this . appOptions . nativeApp && this . permissions . download !== false ;
this . appOptions . canAnalytics = params . asc _getIsAnalyticsEnable ( ) ;
2017-06-28 15:34:16 +00:00
this . appOptions . canComments = this . appOptions . canLicense && ( this . permissions . comment === undefined ? this . appOptions . isEdit : this . permissions . comment ) ;
2017-06-14 11:53:29 +00:00
this . appOptions . canComments = this . appOptions . canComments && ! ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . comments === false ) ;
this . appOptions . canChat = this . appOptions . canLicense && ! this . appOptions . isOffline && ! ( ( typeof ( this . editorConfig . customization ) == 'object' ) && this . editorConfig . customization . chat === false ) ;
2016-03-11 00:48:53 +00:00
this . appOptions . canPrint = ( this . permissions . print !== false ) ;
2016-09-27 12:09:32 +00:00
this . appOptions . canRename = ! ! this . permissions . rename ;
2017-04-11 11:05:56 +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 ;
this . appOptions . canEditComments = this . appOptions . isOffline || ! ( typeof ( this . editorConfig . customization ) == 'object' && this . editorConfig . customization . commentAuthorOnly ) ;
this . appOptions . isTrial = params . asc _getTrial ( ) ;
2016-03-11 00:48:53 +00:00
2016-08-29 11:46:15 +00:00
this . _state . licenseWarning = ( licType === Asc . c _oLicenseResult . Connections ) && this . appOptions . canEdit && this . editorConfig . mode !== 'view' ;
2016-03-11 00:48:53 +00:00
2016-12-20 15:40:43 +00:00
this . appOptions . canBranding = ( licType === Asc . c _oLicenseResult . Success ) && ( typeof this . editorConfig . customization == 'object' ) ;
2016-09-19 14:04:56 +00:00
if ( this . appOptions . canBranding )
2017-04-20 12:13:11 +00:00
appHeader . setBranding ( this . editorConfig . customization ) ;
2016-09-19 14:04:56 +00:00
2017-04-20 12:13:11 +00:00
this . appOptions . canRename && appHeader . setCanRename ( true ) ;
2016-03-11 00:48:53 +00:00
2016-11-16 09:38:16 +00:00
this . appOptions . canBrandingExt = params . asc _getCanBranding ( ) && ( typeof this . editorConfig . customization == 'object' || this . editorConfig . plugins ) ;
if ( this . appOptions . canBrandingExt )
this . updatePlugins ( this . plugins , true ) ;
2016-10-28 13:38:33 +00:00
2016-03-11 00:48:53 +00:00
this . applyModeCommonElements ( ) ;
2017-06-14 11:53:29 +00:00
this . applyModeEditorElements ( ) ;
2016-03-11 00:48:53 +00:00
2017-06-14 11:53:29 +00:00
if ( ! this . appOptions . isEdit ) {
2017-04-20 13:34:39 +00:00
Common . NotificationCenter . trigger ( 'app:face' , this . appOptions ) ;
2016-03-11 00:48:53 +00:00
this . hidePreloader ( ) ;
2016-04-05 11:52:34 +00:00
this . onLongActionBegin ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
2016-03-11 00:48:53 +00:00
}
2017-04-20 13:34:39 +00:00
2017-06-14 11:53:29 +00:00
this . api . asc _setViewMode ( ! this . appOptions . isEdit && ! this . appOptions . canComments ) ;
2017-06-14 11:56:51 +00:00
( ! this . appOptions . isEdit && this . appOptions . canComments ) && this . api . asc _setRestriction ( Asc . c _oAscRestrictionType . OnlyComments ) ;
2017-04-20 13:34:39 +00:00
this . api . asc _LoadDocument ( ) ;
2016-03-11 00:48:53 +00:00
} ,
applyModeCommonElements : function ( ) {
window . editor _elements _prepared = true ;
2017-04-21 09:56:11 +00:00
// var value = Common.localStorage.getItem("pe-hidden-title");
// value = this.appOptions.isEdit && (value!==null && parseInt(value) == 1);
2016-03-11 00:48:53 +00:00
var app = this . getApplication ( ) ,
viewport = app . getController ( 'Viewport' ) . getView ( 'Viewport' ) ,
statusbarView = app . getController ( 'Statusbar' ) . getView ( 'Statusbar' ) ,
documentHolder = app . getController ( 'DocumentHolder' ) . getView ( 'DocumentHolder' ) ;
2017-04-21 09:56:11 +00:00
// appHeader.setHeaderCaption(this.appOptions.isEdit ? 'Presentation Editor' : 'Presentation Viewer');
// appHeader.setVisible(!this.appOptions.nativeApp && !value && !this.appOptions.isDesktopApp);
2016-03-11 00:48:53 +00:00
viewport && viewport . setMode ( this . appOptions , true ) ;
statusbarView && statusbarView . setMode ( this . appOptions ) ;
documentHolder . setMode ( this . appOptions ) ;
this . api . asc _registerCallback ( 'asc_onSendThemeColors' , _ . bind ( this . onSendThemeColors , this ) ) ;
2017-04-11 11:05:56 +00:00
this . api . asc _registerCallback ( 'asc_onDownloadUrl' , _ . bind ( this . onDownloadUrl , this ) ) ;
2016-03-11 00:48:53 +00:00
} ,
applyModeEditorElements : function ( prevmode ) {
2017-06-14 11:53:29 +00:00
if ( this . appOptions . canComments || this . appOptions . isEdit ) {
/** coauthoring begin **/
var commentsController = this . getApplication ( ) . getController ( 'Common.Controllers.Comments' ) ;
if ( commentsController ) {
commentsController . setMode ( this . appOptions ) ;
commentsController . setConfig ( { config : this . editorConfig } , this . api ) ;
}
/** coauthoring end **/
}
2016-03-11 00:48:53 +00:00
if ( this . appOptions . isEdit ) {
var me = this ,
application = this . getApplication ( ) ,
toolbarController = application . getController ( 'Toolbar' ) ,
rightmenuController = application . getController ( 'RightMenu' ) ,
fontsControllers = application . getController ( 'Common.Controllers.Fonts' ) ;
// me.getStore('SlideLayouts');
fontsControllers && fontsControllers . setApi ( me . api ) ;
toolbarController && toolbarController . setApi ( me . api ) ;
rightmenuController && rightmenuController . setApi ( me . api ) ;
var viewport = this . getApplication ( ) . getController ( 'Viewport' ) . getView ( 'Viewport' ) ;
viewport . applyEditorMode ( ) ;
var toolbarView = ( toolbarController ) ? toolbarController . getView ( 'Toolbar' ) : null ;
_ . each ( [
toolbarView ,
rightmenuController . getView ( 'RightMenu' )
] , function ( view ) {
if ( view ) {
view . setApi ( me . api ) ;
view . on ( 'editcomplete' , _ . bind ( me . onEditComplete , me ) ) ;
view . setMode ( me . appOptions ) ;
}
} ) ;
if ( toolbarView ) {
toolbarView . on ( 'insertimage' , _ . bind ( me . onInsertImage , me ) ) ;
toolbarView . on ( 'inserttable' , _ . bind ( me . onInsertTable , me ) ) ;
toolbarView . on ( 'insertshape' , _ . bind ( me . onInsertShape , me ) ) ;
toolbarView . on ( 'insertchart' , _ . bind ( me . onInsertChart , me ) ) ;
toolbarView . on ( 'inserttextart' , _ . bind ( me . onInsertTextArt , me ) ) ;
}
var value = Common . localStorage . getItem ( 'pe-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 ) ;
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
2017-08-10 14:20:12 +00:00
if ( me . api . asc _SetViewRulers ) me . api . asc _SetViewRulers ( ! Common . localStorage . getBool ( 'pe-hidden-rulers' , true ) ) ;
2016-03-11 00:48:53 +00:00
me . api . asc _registerCallback ( 'asc_onChangeObjectLock' , _ . bind ( me . _onChangeObjectLock , me ) ) ;
me . api . asc _registerCallback ( 'asc_onDocumentModifiedChanged' , _ . bind ( me . onDocumentModifiedChanged , me ) ) ;
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 ) ) ;
me . api . asc _registerCallback ( 'asc_onAuthParticipantsChanged' , _ . bind ( me . onAuthParticipantsChanged , me ) ) ;
me . api . asc _registerCallback ( 'asc_onParticipantsChanged' , _ . bind ( me . onAuthParticipantsChanged , me ) ) ;
/** 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-04-20 13:34:39 +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 ) ;
}
} ,
onExternalMessage : function ( msg ) {
if ( msg && msg . msg ) {
msg . msg = ( msg . msg ) . toString ( ) ;
this . showTips ( [ msg . msg . charAt ( 0 ) . toUpperCase ( ) + msg . msg . substring ( 1 ) ] ) ;
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 ) {
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 = {
closable : false
} ;
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 :
config . msg = 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 ;
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 ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . Warning :
2016-03-11 00:48:53 +00:00
config . msg = this . errorConnectToServer ;
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-11 11:05:56 +00:00
case Asc . c _oAscError . ID . UplImageUrl :
config . msg = this . errorBadImageUrl ;
break ;
2016-03-11 00:48:53 +00:00
default :
config . msg = this . errorDefaultMessage . replace ( '%1' , id ) ;
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' ;
if ( this . appOptions . canBackToFolder ) {
config . msg += '<br/><br/>' + this . criticalErrorExtText ;
config . fn = function ( btn ) {
if ( btn == 'ok' ) {
Common . NotificationCenter . trigger ( 'goback' ) ;
}
}
}
}
else {
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 ) {
2016-03-11 00:48:53 +00:00
Common . UI . Menu . Manager . hideAll ( ) ;
( this . appOptions . isDesktopApp && this . appOptions . isOffline ) ? this . api . asc _DownloadAs ( ) : this . getApplication ( ) . getController ( 'LeftMenu' ) . leftMenu . showMenu ( 'file:saveas' ) ;
}
this . _state . lostEditingRights = false ;
this . onEditComplete ( ) ;
} , this ) ;
}
Common . UI . alert ( config ) ;
Common . component . Analytics . trackEvent ( 'Internal Error' , id . toString ( ) ) ;
} ,
onCoAuthoringDisconnect : function ( ) {
// TODO: Disable all except 'Download As' and 'Print'
this . getApplication ( ) . getController ( 'Viewport' ) . getView ( 'Viewport' ) . setMode ( { isDisconnected : true } ) ;
2017-04-20 12:13:11 +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 ;
// this.getFileMenu().setMode({isDisconnected:true});
} ,
showTips : function ( strings ) {
var me = this ;
if ( ! strings . length ) return ;
if ( typeof ( strings ) != 'object' ) strings = [ strings ] ;
// var top_elem = Ext.ComponentQuery.query('petoolbar');
// !top_elem.length && (top_elem = Ext.select('.common-header').first()) || (top_elem = top_elem[0].getEl());
//
function showNextTip ( ) {
var str _tip = strings . shift ( ) ;
if ( str _tip ) {
2016-11-16 10:35:26 +00:00
str _tip += '\n' + me . textCloseTip ;
2016-03-11 00:48:53 +00:00
tooltip . setTitle ( str _tip ) ;
tooltip . show ( ) ;
}
}
if ( ! this . tooltip ) {
this . tooltip = new Common . UI . Tooltip ( {
owner : this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( 'Toolbar' ) ,
hideonclick : true ,
placement : 'bottom' ,
cls : 'main-info' ,
offset : 30
} ) ;
}
var tooltip = this . tooltip ;
tooltip . on ( 'tooltip:hide' , function ( ) {
setTimeout ( showNextTip , 300 ) ;
} ) ;
showNextTip ( ) ;
} ,
updateWindowTitle : function ( force ) {
var isModified = this . api . isDocumentModified ( ) ;
if ( this . _state . isDocModified !== isModified || force ) {
var title = this . defaultTitleText ;
2017-04-20 12:13:11 +00:00
if ( ! _ . isEmpty ( appHeader . getDocumentCaption ( ) ) )
title = appHeader . getDocumentCaption ( ) + ' - ' + title ;
2016-03-11 00:48:53 +00:00
if ( isModified ) {
2017-04-21 11:17:08 +00:00
clearTimeout ( this . _state . timerCaption ) ;
2017-04-11 11:05:56 +00:00
if ( ! _ . isUndefined ( title ) ) {
2016-03-11 00:48:53 +00:00
title = '* ' + title ;
}
}
2017-04-20 12:13:11 +00:00
if ( window . document . title != title )
2016-03-11 00:48:53 +00:00
window . document . title = title ;
2017-04-11 11:05:56 +00:00
Common . Gateway . setDocumentModified ( isModified ) ;
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 ;
}
} ,
onDocumentChanged : function ( ) {
} ,
onDocumentModifiedChanged : function ( ) {
var isModified = this . api . asc _isDocumentCanSave ( ) ;
if ( this . _state . isDocModified !== isModified ) {
Common . Gateway . setDocumentModified ( this . api . isDocumentModified ( ) ) ;
}
this . updateWindowTitle ( ) ;
var toolbarView = this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( 'Toolbar' ) ;
if ( toolbarView ) {
2017-04-21 08:59:00 +00:00
var isSyncButton = $ ( '.icon' , toolbarView . btnSave . cmpEl ) . hasClass ( 'btn-synch' ) ,
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 ;
if ( toolbarView . btnSave . isDisabled ( ) !== isDisabled )
toolbarView . btnsSave . forEach ( function ( button ) {
if ( button ) {
button . setDisabled ( isDisabled ) ;
}
} ) ;
2016-03-11 00:48:53 +00:00
}
} ,
onDocumentCanSaveChanged : function ( isCanSave ) {
var application = this . getApplication ( ) ,
toolbarController = application . getController ( 'Toolbar' ) ,
toolbarView = toolbarController . getView ( 'Toolbar' ) ;
if ( toolbarView ) {
2017-04-21 08:59:00 +00:00
var isSyncButton = $ ( '.icon' , toolbarView . btnSave . cmpEl ) . hasClass ( 'btn-synch' ) ,
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 ;
if ( toolbarView . btnSave . isDisabled ( ) !== isDisabled )
toolbarView . btnsSave . forEach ( function ( button ) {
if ( button ) {
button . 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 ( ) ;
this . continueSavingTimer = window . setTimeout ( function ( ) {
me . api . asc _continueSaving ( ) ;
} , 500 ) ;
return this . leavePageText ;
}
} ,
onUnload : function ( ) {
if ( this . continueSavingTimer ) clearTimeout ( this . continueSavingTimer ) ;
} ,
hidePreloader : function ( ) {
2016-11-16 09:38:16 +00:00
if ( ! this . _state . customizationDone ) {
this . _state . customizationDone = true ;
2017-04-11 11:05:56 +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 ) ;
2016-11-16 09:38:16 +00:00
Common . Utils . applyCustomizationPlugins ( this . UICustomizePlugins ) ;
}
2016-03-11 00:48:53 +00:00
}
Common . NotificationCenter . trigger ( 'layout:changed' , 'main' ) ;
$ ( '#loading-mask' ) . hide ( ) . remove ( ) ;
} ,
onDownloadUrl : function ( url ) {
Common . Gateway . downloadAs ( url ) ;
} ,
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 . error ( {
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:05:56 +00:00
onServerVersion : function ( buildVersion ) {
if ( this . changeServerVersion ) return true ;
if ( DocsAPI . DocEditor . version ( ) !== buildVersion && ! window . compareVersions ) {
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 11:05:56 +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' ) . setStatusCaption ( '' ) ;
this . getApplication ( ) . getController ( 'DocumentHolder' ) . getView ( 'DocumentHolder' ) . hideTips ( ) ;
/** coauthoring begin **/
this . getApplication ( ) . getController ( 'Toolbar' ) . getView ( 'Toolbar' ) . synchronizeChanges ( ) ;
/** coauthoring end **/
this . _state . hasCollaborativeChanges = false ;
} ,
initNames : function ( ) {
this . shapeGroupNames = [
this . txtBasicShapes ,
this . txtFiguredArrows ,
this . txtMath ,
this . txtCharts ,
this . txtStarsRibbons ,
this . txtCallouts ,
this . txtButtons ,
this . txtRectangles ,
this . txtLines
] ;
this . layoutNames = [
this . txtSldLtTBlank , this . txtSldLtTChart , this . txtSldLtTChartAndTx , this . txtSldLtTClipArtAndTx ,
this . txtSldLtTClipArtAndVertTx , this . txtSldLtTCust , this . txtSldLtTDgm , this . txtSldLtTFourObj ,
this . txtSldLtTMediaAndTx , this . txtSldLtTObj , this . txtSldLtTObjAndTwoObj , this . txtSldLtTObjAndTx ,
this . txtSldLtTObjOnly , this . txtSldLtTObjOverTx , this . txtSldLtTObjTx , this . txtSldLtTPicTx ,
this . txtSldLtTSecHead , this . txtSldLtTTbl , this . txtSldLtTTitle , this . txtSldLtTTitleOnly ,
this . txtSldLtTTwoColTx , this . txtSldLtTTwoObj , this . txtSldLtTTwoObjAndObj , this . txtSldLtTTwoObjAndTx ,
this . txtSldLtTTwoObjOverTx , this . txtSldLtTTwoTxTwoObj , this . txtSldLtTTx , this . txtSldLtTTxAndChart ,
this . txtSldLtTTxAndClipArt , this . txtSldLtTTxAndMedia , this . txtSldLtTTxAndObj ,
this . txtSldLtTTxAndTwoObj , this . txtSldLtTTxOverObj , this . txtSldLtTVertTitleAndTx ,
this . txtSldLtTVertTitleAndTxOverChart , this . txtSldLtTVertTx
] ;
} ,
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 ( ) ;
} ,
unitsChanged : function ( m ) {
var value = Common . localStorage . getItem ( "pe-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 ) ;
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 ( ) ;
} ,
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 ( ) ;
this . fillTextArt ( this . api . asc _getTextArtPreviews ( ) ) ;
}
} ,
onFocusObject : function ( SelectedObjects ) {
var rightpan = this . getApplication ( ) . getController ( 'RightMenu' ) ;
2016-11-15 08:55:49 +00:00
if ( rightpan ) rightpan . onFocusObject . call ( rightpan , SelectedObjects ) ;
2016-03-11 00:48:53 +00:00
} ,
_onChangeObjectLock : function ( ) {
var elements = this . api . getSelectedElements ( ) ;
this . onFocusObject ( elements ) ;
this . getApplication ( ) . getController ( 'Toolbar' ) . _onFocusObject ( elements ) ;
} ,
onThumbnailsShow : function ( isShow ) {
this . isThumbnailsShow = isShow ;
} ,
fillAutoShapes : function ( groupNames , shapes ) {
if ( _ . isEmpty ( shapes ) || _ . isEmpty ( groupNames ) || shapes . length != groupNames . length )
return ;
var me = this ,
2017-04-20 13:34:39 +00:00
shapegrouparray = [ ] ;
2016-03-11 00:48:53 +00:00
_ . each ( groupNames , function ( groupName , index ) {
var store = new Backbone . Collection ( [ ] , {
model : PE . Models . ShapeModel
} ) ;
var cols = ( shapes [ index ] . length ) > 18 ? 7 : 6 ,
height = Math . ceil ( shapes [ index ] . length / cols ) * 35 + 3 ,
width = 30 * cols ;
_ . each ( shapes [ index ] , function ( shape , idx ) {
store . add ( {
imageUrl : shape . Image ,
data : { shapeType : shape . Type } ,
tip : me . textShape + ' ' + ( idx + 1 ) ,
allowSelected : true ,
selected : false
} ) ;
} ) ;
shapegrouparray . push ( {
groupName : me . shapeGroupNames [ index ] ,
groupStore : store ,
groupWidth : width ,
groupHeight : height
} ) ;
} ) ;
2017-04-20 13:34:39 +00:00
this . getCollection ( 'ShapeGroups' ) . reset ( shapegrouparray ) ;
2016-03-11 00:48:53 +00:00
} ,
fillLayoutsStore : function ( layouts ) {
var me = this ;
if ( ! _ . isEmpty ( layouts ) ) {
var layoutStore = this . getCollection ( 'SlideLayouts' ) ;
if ( layoutStore ) {
var layoutarray = [ ] ;
_ . each ( layouts , function ( layout ) {
var name = layout . get _Name ( ) ;
layoutarray . push ( {
imageUrl : layout . get _Image ( ) ,
title : ( name !== '' ) ? name : me . layoutNames [ layout . getType ( ) ] ,
itemWidth : layout . get _Width ( ) ,
itemHeight : layout . get _Height ( ) ,
data : {
type : layout . getType ( ) ,
idx : layout . getIndex ( )
} ,
allowSelected : true ,
selected : false
} ) ;
} ) ;
layoutStore . reset ( layoutarray ) ;
}
}
} ,
fillTextArt : function ( shapes ) {
if ( _ . isEmpty ( shapes ) ) return ;
var me = this , arr = [ ] ,
artStore = this . getCollection ( 'Common.Collections.TextArt' ) ;
_ . each ( shapes , function ( shape , index ) {
arr . push ( {
imageUrl : shape ,
data : index ,
allowSelected : true ,
selected : false
} ) ;
} ) ;
artStore . reset ( arr ) ;
setTimeout ( function ( ) {
me . getApplication ( ) . getController ( 'RightMenu' ) . fillTextArt ( ) ;
} , 50 ) ;
} ,
2017-04-26 08:34:55 +00:00
loadLanguages : function ( apiLangs ) {
var langs = [ ] , info ;
_ . each ( apiLangs , function ( lang , index , list ) {
lang = parseInt ( lang ) ;
info = Common . util . LanguageInfo . getLocalLanguageName ( lang ) ;
langs . push ( {
title : info [ 1 ] ,
tip : info [ 0 ] ,
code : lang
} ) ;
} , this ) ;
langs . sort ( function ( a , b ) {
if ( a . tip < b . tip ) return - 1 ;
if ( a . tip > b . tip ) return 1 ;
return 0 ;
} ) ;
this . languages = langs ;
window . styles _loaded && this . setLanguages ( ) ;
} ,
setLanguages : function ( ) {
if ( this . languages && this . languages . length > 0 ) {
2017-04-26 09:26:02 +00:00
this . getApplication ( ) . getController ( 'DocumentHolder' ) . getView ( 'DocumentHolder' ) . setLanguages ( this . languages ) ;
2017-04-26 08:34:55 +00:00
this . getApplication ( ) . getController ( 'Statusbar' ) . setLanguages ( this . languages ) ;
}
} ,
2016-03-11 00:48:53 +00:00
onTryUndoInFastCollaborative : function ( ) {
2017-08-08 11:14:14 +00:00
if ( ! window . localStorage . getBool ( "pe-hide-try-undoredo" ) )
2016-03-11 00:48:53 +00:00
Common . UI . info ( {
width : 500 ,
msg : this . textTryUndoRedo ,
iconCls : 'info' ,
buttons : [ 'custom' , 'cancel' ] ,
primary : 'custom' ,
customButtonText : this . textStrict ,
dontshow : true ,
callback : _ . bind ( function ( btn , dontshow ) {
if ( dontshow ) window . localStorage . setItem ( "pe-hide-try-undoredo" , 1 ) ;
if ( btn == 'custom' ) {
Common . localStorage . setItem ( "pe-settings-coauthmode" , 0 ) ;
this . api . asc _SetFastCollaborative ( false ) ;
this . _state . fastCoauth = false ;
}
this . onEditComplete ( ) ;
} , this )
} ) ;
} ,
onAuthParticipantsChanged : function ( users ) {
var length = 0 ;
_ . each ( users , function ( item ) {
if ( ! item . asc _getView ( ) )
length ++ ;
} ) ;
this . _state . usersCount = length ;
} ,
applySettings : function ( ) {
2016-12-20 14:29:37 +00:00
if ( this . appOptions . isEdit && ! this . appOptions . isOffline && this . appOptions . canCoAuthoring ) {
2017-08-08 11:14:14 +00:00
var oldval = this . _state . fastCoauth ;
this . _state . fastCoauth = Common . localStorage . getBool ( "pe-settings-coauthmode" , true ) ;
2016-03-11 00:48:53 +00:00
if ( this . _state . fastCoauth && ! oldval )
this . synchronizeChanges ( ) ;
}
2017-04-11 11:05:56 +00:00
if ( this . appOptions . canForcesave ) {
2017-08-08 11:14:14 +00:00
this . appOptions . forcesave = Common . localStorage . getBool ( "pe-settings-forcesave" , this . appOptions . canForcesave ) ;
2017-04-11 11:05:56 +00:00
this . api . asc _setIsForceSaveOnUserSave ( this . appOptions . forcesave ) ;
}
2016-03-11 00:48:53 +00:00
} ,
onDocumentName : function ( name ) {
2017-04-20 12:13:11 +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-20 12:13:11 +00:00
appHeader . setDocumentCaption ( meta . title ) ;
2016-09-26 10:54:25 +00:00
this . updateWindowTitle ( true ) ;
this . document . title = meta . title ;
2017-04-20 13:34:39 +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 } ) ;
filemenu . panels [ 'info' ] . updateInfo ( this . document ) ;
Common . Gateway . metaChange ( meta ) ;
} ,
2016-03-11 00:48:53 +00:00
onPrint : function ( ) {
if ( ! this . appOptions . canPrint ) return ;
if ( this . api )
this . api . asc _Print ( Common . Utils . isChrome || Common . Utils . isSafari || Common . Utils . isOpera ) ; // if isChrome or isSafari or isOpera == true use asc_onPrintUrl event
Common . component . Analytics . trackEvent ( 'Print' ) ;
} ,
onPrintUrl : function ( url ) {
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 ( ) {
me . iframePrint . contentWindow . focus ( ) ;
me . iframePrint . contentWindow . print ( ) ;
2016-06-09 10:22:58 +00:00
me . iframePrint . contentWindow . blur ( ) ;
window . focus ( ) ;
2016-03-11 00:48:53 +00:00
} ;
}
if ( url ) this . iframePrint . src = url ;
} ,
2016-09-29 13:06:22 +00:00
onAdvancedOptions : function ( advOptions ) {
2017-09-08 08:39:07 +00:00
if ( this . _state . openDlg ) return ;
2016-09-29 13:06:22 +00:00
var type = advOptions . asc _getOptionId ( ) ,
2017-09-08 08:39:07 +00:00
me = this ;
2016-09-29 13:06:22 +00:00
if ( type == Asc . c _oAscAdvancedOptionsID . DRM ) {
2017-09-08 08:39:07 +00:00
me . _state . openDlg = new Common . Views . OpenDialog ( {
2016-09-29 13:06:22 +00:00
type : type ,
2017-09-08 08:44:01 +00:00
validatePwd : ! ! me . _state . isDRM ,
2016-09-29 13:06:22 +00:00
handler : function ( value ) {
me . isShowOpenDialog = false ;
if ( me && me . api ) {
me . api . asc _setAdvancedOptions ( type , new Asc . asc _CDRMAdvancedOptions ( value ) ) ;
me . loadMask && me . loadMask . show ( ) ;
}
2017-09-08 08:39:07 +00:00
me . _state . openDlg = null ;
2016-09-29 13:06:22 +00:00
}
} ) ;
2017-09-08 08:44:01 +00:00
me . _state . isDRM = true ;
2016-09-29 13:06:22 +00:00
}
2017-09-08 08:39:07 +00:00
if ( me . _state . openDlg ) {
2016-09-29 13:06:22 +00:00
this . isShowOpenDialog = true ;
this . loadMask && this . loadMask . hide ( ) ;
this . onLongActionEnd ( Asc . c _oAscAsyncActionType . BlockInteraction , LoadingDocument ) ;
2017-09-08 08:39:07 +00:00
me . _state . openDlg . show ( ) ;
2016-09-29 13:06:22 +00:00
}
} ,
2017-03-01 16:19:42 +00:00
requestPlugins : function ( pluginsPath ) { // request plugins
if ( ! pluginsPath ) return ;
var _createXMLHTTPObject = function ( ) {
var xmlhttp ;
try {
xmlhttp = new ActiveXObject ( "Msxml2.XMLHTTP" ) ;
}
catch ( e ) {
try {
xmlhttp = new ActiveXObject ( "Microsoft.XMLHTTP" ) ;
}
catch ( E ) {
xmlhttp = false ;
}
}
if ( ! xmlhttp && typeof XMLHttpRequest != 'undefined' ) {
xmlhttp = new XMLHttpRequest ( ) ;
}
return xmlhttp ;
} ;
var _getPluginJson = function ( plugin ) {
if ( ! plugin ) return '' ;
try {
var xhrObj = _createXMLHTTPObject ( ) ;
if ( xhrObj && plugin ) {
xhrObj . open ( 'GET' , plugin , false ) ;
xhrObj . send ( '' ) ;
var pluginJson = eval ( "(" + xhrObj . responseText + ")" ) ;
return pluginJson ;
}
}
catch ( e ) { }
return null ;
} ;
var value = _getPluginJson ( pluginsPath ) ;
if ( value )
this . updatePlugins ( value , false ) ;
} ,
2016-11-16 09:38:16 +00:00
updatePlugins : function ( plugins , uiCustomize ) { // plugins from config
if ( ! plugins ) return ;
var pluginsData = ( uiCustomize ) ? plugins . UIpluginsData : plugins . pluginsData ;
if ( ! pluginsData || pluginsData . length < 1 ) return ;
2016-09-05 14:43:29 +00:00
var _createXMLHTTPObject = function ( ) {
var xmlhttp ;
try {
xmlhttp = new ActiveXObject ( "Msxml2.XMLHTTP" ) ;
}
catch ( e ) {
try {
xmlhttp = new ActiveXObject ( "Microsoft.XMLHTTP" ) ;
}
catch ( E ) {
xmlhttp = false ;
}
}
if ( ! xmlhttp && typeof XMLHttpRequest != 'undefined' ) {
xmlhttp = new XMLHttpRequest ( ) ;
}
return xmlhttp ;
} ;
var _getPluginJson = function ( plugin ) {
if ( ! plugin ) return '' ;
try {
var xhrObj = _createXMLHTTPObject ( ) ;
if ( xhrObj && plugin ) {
xhrObj . open ( 'GET' , plugin , false ) ;
xhrObj . send ( '' ) ;
var pluginJson = eval ( "(" + xhrObj . responseText + ")" ) ;
return pluginJson ;
}
}
catch ( e ) { }
return null ;
} ;
2017-04-11 11:05:56 +00:00
var arr = [ ] ,
baseUrl = _ . isEmpty ( plugins . url ) ? "" : plugins . url ;
if ( baseUrl !== "" )
console . log ( "Obsolete: The url parameter is deprecated. Please check the documentation for new plugin connection configuration." ) ;
2016-11-16 09:38:16 +00:00
pluginsData . forEach ( function ( item ) {
2017-04-11 11:05:56 +00:00
item = baseUrl + item ; // for compatibility with previouse version of server, where plugins.url is used.
2017-03-01 16:19:42 +00:00
var value = _getPluginJson ( item ) ;
if ( value ) {
value . baseUrl = item . substring ( 0 , item . lastIndexOf ( "config.json" ) ) ;
2017-04-11 11:05:56 +00:00
value . oldVersion = ( baseUrl !== "" ) ;
2017-03-01 16:19:42 +00:00
arr . push ( value ) ;
}
2016-09-05 14:43:29 +00:00
} ) ;
if ( arr . length > 0 )
this . updatePluginsList ( {
2016-10-21 14:09:58 +00:00
autoStartGuid : plugins . autoStartGuid ,
2016-09-05 14:43:29 +00:00
pluginsData : arr
2016-11-16 09:38:16 +00:00
} , ! ! uiCustomize ) ;
2016-09-05 14:43:29 +00:00
} ,
2016-11-16 09:38:16 +00:00
updatePluginsList : function ( plugins , uiCustomize ) {
2016-07-26 11:45:41 +00:00
var pluginStore = this . getApplication ( ) . getCollection ( 'Common.Collections.Plugins' ) ,
isEdit = this . appOptions . isEdit ;
2016-11-16 09:38:16 +00:00
if ( plugins ) {
var arr = [ ] , arrUI = [ ] ;
2016-07-26 11:45:41 +00:00
plugins . pluginsData . forEach ( function ( item ) {
2017-04-11 11:05:56 +00:00
if ( uiCustomize !== undefined && ( pluginStore . findWhere ( { baseUrl : item . baseUrl } ) || pluginStore . findWhere ( { guid : item . guid } ) ) ) return ;
2016-07-26 11:45:41 +00:00
var variations = item . variations ,
variationsArr = [ ] ;
variations . forEach ( function ( itemVar ) {
var isSupported = false ;
for ( var i = 0 ; i < itemVar . EditorsSupport . length ; i ++ ) {
2016-08-08 13:06:04 +00:00
if ( itemVar . EditorsSupport [ i ] == 'slide' ) {
2016-07-26 11:45:41 +00:00
isSupported = true ; break ;
}
}
2016-11-16 09:38:16 +00:00
if ( isSupported && ( isEdit || itemVar . isViewer ) ) {
2017-04-11 11:05:56 +00:00
var icons = itemVar . icons ;
if ( item . oldVersion ) { // for compatibility with previouse version of server, where plugins.url is used.
icons = [ ] ;
itemVar . icons . forEach ( function ( icon ) {
icons . push ( icon . substring ( icon . lastIndexOf ( "\/" ) + 1 ) ) ;
} ) ;
}
2017-03-01 16:19:42 +00:00
item . isUICustomizer ? arrUI . push ( item . baseUrl + itemVar . url ) :
2016-07-26 11:45:41 +00:00
variationsArr . push ( new Common . Models . PluginVariation ( {
description : itemVar . description ,
index : variationsArr . length ,
2017-04-11 11:05:56 +00:00
url : ( item . oldVersion ) ? ( itemVar . url . substring ( itemVar . url . lastIndexOf ( "\/" ) + 1 ) ) : itemVar . url ,
icons : icons ,
2016-07-26 11:45:41 +00:00
isViewer : itemVar . isViewer ,
EditorsSupport : itemVar . EditorsSupport ,
isVisual : itemVar . isVisual ,
2017-06-23 11:54:36 +00:00
isCustomWindow : itemVar . isCustomWindow ,
2016-07-26 11:45:41 +00:00
isModal : itemVar . isModal ,
isInsideMode : itemVar . isInsideMode ,
initDataType : itemVar . initDataType ,
initData : itemVar . initData ,
isUpdateOleOnResize : itemVar . isUpdateOleOnResize ,
2016-08-02 10:55:45 +00:00
buttons : itemVar . buttons ,
2016-08-08 13:27:00 +00:00
size : itemVar . size ,
2017-03-01 16:19:42 +00:00
initOnSelectionChanged : itemVar . initOnSelectionChanged
2016-07-26 11:45:41 +00:00
} ) ) ;
2016-11-16 09:38:16 +00:00
}
2016-07-26 11:45:41 +00:00
} ) ;
2016-11-16 09:38:16 +00:00
if ( variationsArr . length > 0 && ! item . isUICustomizer )
2016-07-26 11:45:41 +00:00
arr . push ( new Common . Models . Plugin ( {
name : item . name ,
guid : item . guid ,
baseUrl : item . baseUrl ,
variations : variationsArr ,
currentVariation : 0
} ) ) ;
} ) ;
2016-11-16 09:38:16 +00:00
if ( uiCustomize !== false ) // from ui customizer in editor config or desktop event
this . UICustomizePlugins = arrUI ;
2016-07-26 11:45:41 +00:00
2017-03-01 16:19:42 +00:00
if ( uiCustomize === undefined ) { // for desktop
2016-11-16 09:38:16 +00:00
if ( pluginStore ) pluginStore . reset ( arr ) ;
2017-03-01 16:19:42 +00:00
this . appOptions . canPlugins = ( pluginStore . length > 0 ) ;
} else if ( ! uiCustomize ) {
if ( pluginStore ) pluginStore . add ( arr ) ;
this . appOptions . canPlugins = ( pluginStore . length > 0 ) ;
2016-11-16 09:38:16 +00:00
}
} else if ( ! uiCustomize ) {
2016-07-26 11:45:41 +00:00
this . appOptions . canPlugins = false ;
}
2016-10-21 14:09:58 +00:00
if ( this . appOptions . canPlugins ) {
2016-07-26 11:45:41 +00:00
this . getApplication ( ) . getController ( 'Common.Controllers.Plugins' ) . setMode ( this . appOptions ) ;
2016-10-21 14:09:58 +00:00
if ( plugins . autoStartGuid )
this . api . asc _pluginRun ( plugins . autoStartGuid , 0 , '' ) ;
}
2016-11-16 09:38:16 +00:00
if ( ! uiCustomize ) this . getApplication ( ) . getController ( 'LeftMenu' ) . enablePlugins ( ) ;
2016-07-26 11:45:41 +00:00
} ,
2016-03-11 00:48:53 +00:00
// Translation
leavePageText : 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.' ,
defaultTitleText : 'ONLYOFFICE Presentation Editor' ,
criticalErrorTitle : 'Error' ,
notcriticalErrorTitle : 'Warning' ,
errorDefaultMessage : 'Error code: %1' ,
criticalErrorExtText : 'Press "Ok" to to back to document list.' ,
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...' ,
uploadImageSizeMessage : 'Maximium image size limit exceeded.' ,
uploadImageExtMessage : 'Unknown image format.' ,
uploadImageFileCountMessage : 'No images uploaded.' ,
reloadButtonText : 'Reload Page' ,
unknownErrorText : 'Unknown error.' ,
convertationTimeoutText : 'Convertation timeout exceeded.' ,
downloadErrorText : 'Download failed.' ,
unsupportedBrowserErrorText : 'Your browser is not supported.' ,
splitMaxRowsErrorText : 'The number of rows must be less than %1' ,
splitMaxColsErrorText : 'The number of columns must be less than %1' ,
splitDividerErrorText : 'The number of rows must be a divisor of %1' ,
requestEditFailedTitleText : 'Access denied' ,
requestEditFailedMessageText : 'Someone is editing this document right now. Please try again later.' ,
txtSldLtTBlank : 'Blank' ,
txtSldLtTChart : 'Chart' ,
txtSldLtTChartAndTx : 'Chart and Text' ,
txtSldLtTClipArtAndTx : 'Clip Art and Text' ,
txtSldLtTClipArtAndVertTx : 'Clip Art and Vertical Text' ,
txtSldLtTCust : 'Custom' ,
txtSldLtTDgm : 'Diagram' ,
txtSldLtTFourObj : 'Four Objects' ,
txtSldLtTMediaAndTx : 'Media and Text' ,
txtSldLtTObj : 'Title and Object' ,
txtSldLtTObjAndTwoObj : 'Object and Two Object' ,
txtSldLtTObjAndTx : 'Object and Text' ,
txtSldLtTObjOnly : 'Object' ,
txtSldLtTObjOverTx : 'Object over Text' ,
txtSldLtTObjTx : 'Title, Object, and Caption' ,
txtSldLtTPicTx : 'Picture and Caption' ,
txtSldLtTSecHead : 'Section Header' ,
txtSldLtTTbl : 'Table' ,
txtSldLtTTitle : 'Title' ,
txtSldLtTTitleOnly : 'Title Only' ,
txtSldLtTTwoColTx : 'Two Column Text' ,
txtSldLtTTwoObj : 'Two Objects' ,
txtSldLtTTwoObjAndObj : 'Two Objects and Object' ,
txtSldLtTTwoObjAndTx : 'Two Objects and Text' ,
txtSldLtTTwoObjOverTx : 'Two Objects over Text' ,
txtSldLtTTwoTxTwoObj : 'Two Text and Two Objects' ,
txtSldLtTTx : 'Text' ,
txtSldLtTTxAndChart : 'Text and Chart' ,
txtSldLtTTxAndClipArt : 'Text and Clip Art' ,
txtSldLtTTxAndMedia : 'Text and Media' ,
txtSldLtTTxAndObj : 'Text and Object' ,
txtSldLtTTxAndTwoObj : 'Text and Two Objects' ,
txtSldLtTTxOverObj : 'Text over Object' ,
txtSldLtTVertTitleAndTx : 'Vertical Title and Text' ,
txtSldLtTVertTitleAndTxOverChart : 'Vertical Title and Text Over Chart' ,
txtSldLtTVertTx : 'Vertical Text' ,
2016-07-04 14:41:11 +00:00
textLoadingDocument : 'Loading presentation' ,
2016-03-11 00:48:53 +00:00
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' ,
loadThemeTitleText : 'Loading Theme' ,
loadThemeTextText : 'Loading theme...' ,
txtBasicShapes : 'Basic Shapes' ,
txtFiguredArrows : 'Figured Arrows' ,
txtMath : 'Math' ,
txtCharts : 'Charts' ,
txtStarsRibbons : 'Stars & Ribbons' ,
txtCallouts : 'Callouts' ,
txtButtons : 'Buttons' ,
txtRectangles : 'Rectangles' ,
txtLines : 'Lines' ,
errorKeyEncrypt : 'Unknown key descriptor' ,
errorKeyExpire : 'Key descriptor expired' ,
errorUsersExceed : 'Count of users was exceed' ,
txtEditingMode : 'Set editing mode...' ,
errorCoAuthoringDisconnect : 'Server connection lost. You can\'t edit anymore.' ,
errorFilePassProtect : 'The document is password protected.' ,
textAnonymous : 'Anonymous' ,
txtNeedSynchronize : 'You have an updates' ,
applyChangesTitleText : 'Loading Data' ,
applyChangesTextText : 'Loading data...' ,
savePreparingText : 'Preparing to save' ,
savePreparingTitle : 'Preparing to save. Please wait...' ,
2016-07-04 14:41:11 +00:00
loadingDocumentTitleText : 'Loading presentation' ,
loadingDocumentTextText : 'Loading presentation...' ,
2016-03-11 00:48:53 +00:00
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.' ,
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' ,
txtArt : 'Your text here' ,
errorConnectToServer : ' The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.<br><br>' +
'Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>' ,
textTryUndoRedo : 'The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the \'Strict mode\' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.' ,
textStrict : 'Strict mode' ,
2016-06-23 06:45:41 +00:00
textBuyNow : 'Visit website' ,
textNoLicenseTitle : 'ONLYOFFICE open source version' ,
warnNoLicense : 'You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.' ,
2016-07-25 07:56:39 +00:00
textContactUs : 'Contact sales' ,
2016-10-12 13:32:48 +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.' ,
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:05:56 +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' ,
errorServerVersion : 'The editor version has been updated. The page will be reloaded to apply the changes.' ,
2017-06-23 13:49:29 +00:00
errorBadImageUrl : 'Image url is incorrect' ,
txtSlideText : 'Slide text' ,
txtClipArt : 'Clip Art' ,
2017-06-27 10:49:39 +00:00
txtDiagram : 'SmartArt' ,
2017-06-23 13:49:29 +00:00
txtDateTime : 'Date and time' ,
txtFooter : 'Footer' ,
txtHeader : 'Header' ,
txtMedia : 'Media' ,
txtPicture : 'Picture' ,
txtImage : 'Image' ,
txtSlideNumber : 'Slide number' ,
txtSlideSubtitle : 'Slide subtitle' ,
2017-08-10 12:25:46 +00:00
txtSlideTitle : 'Slide title' ,
textChangesSaved : 'All changes saved' ,
saveTitleText : 'Saving Document' ,
2017-08-11 07:26:21 +00:00
saveTextText : 'Saving document...' ,
txtLoading : 'Loading...'
2016-03-11 00:48:53 +00:00
}
} ) ( ) , PE . Controllers . Main || { } ) )
} ) ;