2021-09-05 21:20:13 +00:00
/ *
*
* ( c ) Copyright Ascensio System SIA 2010 - 2019
*
* This program is a free software product . You can redistribute it and / or
* modify it under the terms of the GNU Affero General Public License ( AGPL )
* version 3 as published by the Free Software Foundation . In accordance with
* Section 7 ( a ) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non - infringement
* of any third - party rights .
*
* This program is distributed WITHOUT ANY WARRANTY ; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . For
* details , see the GNU AGPL at : http : //www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20 A - 12 Ernesta Birznieka - Upisha
* street , Riga , Latvia , EU , LV - 1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices , as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7 ( b ) of the License you must retain the original Product
* logo when distributing the program . Pursuant to Section 7 ( e ) we decline to
* grant you any rights under trademark law for use of our trademarks .
*
* All the Product ' s GUI elements , including illustrations and icon sets , as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution - ShareAlike 4.0 International . See the License
* terms at http : //creativecommons.org/licenses/by-sa/4.0/legalcode
*
* /
SSE . ApplicationController = new ( function ( ) {
var me ,
api ,
config = { } ,
docConfig = { } ,
permissions = { } ,
maxPages = 0 ,
2021-09-13 17:10:12 +00:00
created = false ;
2021-09-05 21:20:13 +00:00
var LoadingDocument = - 256 ;
// Initialize analytics
// -------------------------
// Common.Analytics.initialize('UA-12442749-13', 'Embedded Spreadsheet Editor');
// Check browser
// -------------------------
if ( typeof isBrowserSupported !== 'undefined' && ! isBrowserSupported ( ) ) {
2021-09-13 01:38:49 +00:00
console . error ( this . unsupportedBrowserErrorText ) ;
2021-09-05 21:20:13 +00:00
return ;
}
common . localStorage . setId ( 'text' ) ;
common . localStorage . setKeysFilter ( 'sse-,asc.table' ) ;
common . localStorage . sync ( ) ;
// Handlers
// -------------------------
function loadConfig ( data ) {
config = $ . extend ( config , data . config ) ;
2021-09-15 21:32:19 +00:00
/ * c o n f i g . c a n B a c k T o F o l d e r = ( c o n f i g . c a n B a c k T o F o l d e r ! = = f a l s e ) & & c o n f i g . c u s t o m i z a t i o n & & c o n f i g . c u s t o m i z a t i o n . g o b a c k & &
( config . customization . goback . url || config . customization . goback . requestClose && config . canRequestClose ) ; * /
2021-09-05 21:20:13 +00:00
}
function loadDocument ( data ) {
docConfig = data . doc ;
if ( docConfig ) {
permissions = $ . extend ( permissions , docConfig . permissions ) ;
var _permissions = $ . extend ( { } , docConfig . permissions ) ,
docInfo = new Asc . asc _CDocInfo ( ) ,
_user = new Asc . asc _CUserInfo ( ) ;
var canRenameAnonymous = ! ( ( typeof ( config . customization ) == 'object' ) && ( typeof ( config . customization . anonymous ) == 'object' ) && ( config . customization . anonymous . request === false ) ) ,
guestName = ( typeof ( config . customization ) == 'object' ) && ( typeof ( config . customization . anonymous ) == 'object' ) &&
( typeof ( config . customization . anonymous . label ) == 'string' ) && config . customization . anonymous . label . trim ( ) !== '' ?
common . utils . htmlEncode ( config . customization . anonymous . label ) : me . textGuest ,
value = canRenameAnonymous ? common . localStorage . getItem ( "guest-username" ) : null ,
user = common . utils . fillUserInfo ( config . user , config . lang , value ? ( value + ' (' + guestName + ')' ) : me . textAnonymous ,
common . localStorage . getItem ( "guest-id" ) || ( 'uid-' + Date . now ( ) ) ) ;
user . anonymous && common . localStorage . setItem ( "guest-id" , user . id ) ;
_user . put _Id ( user . id ) ;
_user . put _FullName ( user . fullname ) ;
_user . put _IsAnonymousUser ( user . anonymous ) ;
docInfo . put _Id ( docConfig . key ) ;
docInfo . put _Url ( docConfig . url ) ;
docInfo . put _Title ( docConfig . title ) ;
docInfo . put _Format ( docConfig . fileType ) ;
docInfo . put _VKey ( docConfig . vkey ) ;
docInfo . put _UserInfo ( _user ) ;
docInfo . put _Token ( docConfig . token ) ;
docInfo . put _Permissions ( _permissions ) ;
docInfo . put _EncryptedInfo ( config . encryptionKeys ) ;
docInfo . put _Lang ( config . lang ) ;
docInfo . put _Mode ( config . mode ) ;
if ( api ) {
api . asc _registerCallback ( 'asc_onGetEditorPermissions' , onEditorPermissions ) ;
api . asc _setDocInfo ( docInfo ) ;
api . asc _getEditorPermissions ( config . licenseUrl , config . customerId ) ;
2021-09-06 08:55:05 +00:00
api . asc _enableKeyEvents ( false ) ;
2021-09-05 21:20:13 +00:00
}
}
}
function setActiveWorkSheet ( index ) {
var $box = $ ( '#worksheets' ) ;
$box . find ( '> li' ) . removeClass ( 'active' ) ;
$box . find ( '#worksheet' + index ) . addClass ( 'active' ) ;
api . asc _showWorksheet ( index ) ;
}
function onSheetsChanged ( ) {
maxPages = api . asc _getWorksheetsCount ( ) ;
var handleWorksheet = function ( e ) {
var $worksheet = $ ( this ) ;
var index = $worksheet . attr ( 'id' ) . match ( /\d+$/ ) ;
if ( index . length > 0 ) {
index = parseInt ( index [ 0 ] ) ;
if ( index > - 1 && index < maxPages )
setActiveWorkSheet ( index ) ;
}
} ;
var $box = $ ( '#worksheets' ) ;
$box . find ( 'li' ) . off ( ) ;
$box . empty ( ) ;
var tpl = '<li id="worksheet{index}">{title}</li>' ;
for ( var i = 0 ; i < maxPages ; i ++ ) {
var item = tpl . replace ( /\{index}/ , i ) . replace ( /\{title}/ , api . asc _getWorksheetName ( i ) . replace ( /\s/g , ' ' ) ) ;
$ ( item ) . appendTo ( $box ) . on ( 'click' , handleWorksheet ) ;
}
setActiveWorkSheet ( api . asc _getActiveWorksheetIndex ( ) ) ;
}
function onDocumentContentReady ( ) {
onLongActionEnd ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
api . asc _registerCallback ( 'asc_onStartAction' , onLongActionBegin ) ;
2021-09-15 21:32:19 +00:00
//Common.Gateway.on('processmouse', onProcessMouse);
//Common.Gateway.on('downloadas', onDownloadAs);
2021-09-05 21:20:13 +00:00
Common . Gateway . on ( 'requestclose' , onRequestClose ) ;
2021-09-06 08:55:05 +00:00
2021-09-05 21:20:13 +00:00
$ ( '#editor_sdk' ) . on ( 'click' , function ( e ) {
if ( e . target . localName == 'canvas' ) {
e . currentTarget . focus ( ) ;
}
} ) ;
$ ( document ) . on ( 'mousewheel' , function ( e ) {
if ( ( e . ctrlKey || e . metaKey ) && ! e . altKey ) {
e . preventDefault ( ) ;
e . stopPropagation ( ) ;
}
} ) ;
Common . Gateway . documentReady ( ) ;
}
function onEditorPermissions ( params ) {
2021-09-15 21:32:19 +00:00
api . asc _SetFastCollaborative ( true ) ;
2021-09-09 02:55:43 +00:00
api . asc _setAutoSaveGap ( 1 ) ;
2021-09-05 21:20:13 +00:00
onLongActionBegin ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
api . asc _LoadDocument ( ) ;
}
function onLongActionBegin ( type , id ) {
if ( type == Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] ) {
2021-09-15 21:32:19 +00:00
console . log ( 'Action begin' ) ;
2021-09-05 21:20:13 +00:00
}
}
function onLongActionEnd ( type , id ) {
if ( type === Asc . c _oAscAsyncActionType . BlockInteraction ) {
switch ( id ) {
case Asc . c _oAscAsyncAction . Open :
if ( api ) {
api . asc _Resize ( ) ;
var zf = ( config . customization && config . customization . zoom ? parseInt ( config . customization . zoom ) / 100 : 1 ) ;
api . asc _setZoom ( zf > 0 ? zf : 1 ) ;
}
onDocumentContentReady ( ) ;
onSheetsChanged ( ) ;
break ;
}
2021-09-15 21:32:19 +00:00
console . log ( 'Action end' ) ;
2021-09-05 21:20:13 +00:00
}
}
function onError ( id , level , errData ) {
if ( id == Asc . c _oAscError . ID . LoadingScriptError ) {
2021-09-15 21:32:19 +00:00
console . error ( id , me . scriptLoadError ) ;
2021-09-05 21:20:13 +00:00
return ;
}
onLongActionEnd ( Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] , LoadingDocument ) ;
var message ;
switch ( id )
{
case Asc . c _oAscError . ID . Unknown :
message = me . unknownErrorText ;
break ;
case Asc . c _oAscError . ID . ConvertationTimeout :
message = me . convertationTimeoutText ;
break ;
case Asc . c _oAscError . ID . ConvertationError :
message = me . convertationErrorText ;
break ;
case Asc . c _oAscError . ID . DownloadError :
message = me . downloadErrorText ;
break ;
case Asc . c _oAscError . ID . ConvertationPassword :
message = me . errorFilePassProtect ;
break ;
case Asc . c _oAscError . ID . UserDrop :
message = me . errorUserDrop ;
break ;
case Asc . c _oAscError . ID . ConvertationOpenLimitError :
message = me . errorFileSizeExceed ;
break ;
case Asc . c _oAscError . ID . UpdateVersion :
message = me . errorUpdateVersionOnDisconnect ;
break ;
case Asc . c _oAscError . ID . AccessDeny :
message = me . errorAccessDeny ;
break ;
case Asc . c _oAscError . ID . ForceSaveButton :
case Asc . c _oAscError . ID . ForceSaveTimeout :
message = me . errorForceSave ;
break ;
case Asc . c _oAscError . ID . LoadingFontError :
message = me . errorLoadingFont ;
break ;
default :
message = me . errorDefaultMessage . replace ( '%1' , id ) ;
break ;
}
if ( level == Asc . c _oAscError . Level . Critical ) {
2021-09-10 06:42:09 +00:00
console . error ( id , message ) ;
2021-09-05 21:20:13 +00:00
}
else {
2021-09-10 06:42:09 +00:00
console . warn ( id , message ) ;
2021-09-05 21:20:13 +00:00
}
}
function onExternalMessage ( error ) {
if ( error ) {
$ ( '#id-error-mask-title' ) . text ( me . criticalErrorTitle ) ;
$ ( '#id-error-mask-text' ) . text ( error . msg ) ;
$ ( '#id-error-mask' ) . css ( 'display' , 'block' ) ;
}
}
function onProcessMouse ( data ) {
if ( data . type == 'mouseup' ) {
var editor = document . getElementById ( 'editor_sdk' ) ;
if ( editor ) {
var rect = editor . getBoundingClientRect ( ) ;
var event = window . event || arguments . callee . caller . arguments [ 0 ] ;
api . asc _onMouseUp ( event , data . x - rect . left , data . y - rect . top ) ;
}
}
}
function onRequestClose ( ) {
Common . Gateway . requestClose ( ) ;
}
function onBeforeUnload ( ) {
common . localStorage . save ( ) ;
}
function onDocumentResize ( ) {
if ( api ) api . asc _Resize ( ) ;
}
function createController ( ) {
if ( created )
return me ;
me = this ;
created = true ;
// popover ui handlers
$ ( window ) . resize ( function ( ) {
onDocumentResize ( ) ;
} ) ;
window . onbeforeunload = onBeforeUnload ;
api = new Asc . spreadsheet _api ( {
'id-view' : 'editor_sdk' ,
2021-09-08 11:10:59 +00:00
'id-input' : 'ce-cell-content' ,
2021-09-05 21:20:13 +00:00
'embedded' : true
} ) ;
if ( api ) {
api . asc _registerCallback ( 'asc_onEndAction' , onLongActionEnd ) ;
api . asc _registerCallback ( 'asc_onError' , onError ) ;
api . asc _registerCallback ( 'asc_onSheetsChanged' , onSheetsChanged ) ;
api . asc _registerCallback ( 'asc_onActiveSheetChanged' , setActiveWorkSheet ) ;
2021-09-15 21:32:19 +00:00
if ( SSE . CellEditorController ) {
SSE . CellEditorController . create ( ) ;
SSE . CellEditorController . setApi ( api ) ;
2021-09-09 02:55:43 +00:00
}
2021-09-05 21:20:13 +00:00
// Initialize api gateway
Common . Gateway . on ( 'init' , loadConfig ) ;
Common . Gateway . on ( 'opendocument' , loadDocument ) ;
Common . Gateway . on ( 'showmessage' , onExternalMessage ) ;
Common . Gateway . appReady ( ) ;
}
2021-09-15 21:32:19 +00:00
api . asc _enableKeyEvents ( true ) ;
var ismodalshown = false ;
$ ( document . body ) . on ( 'blur' , 'input, textarea' ,
function ( e ) {
if ( ! ismodalshown ) {
if ( ! /area_id/ . test ( e . target . id ) ) {
api . asc _enableKeyEvents ( true ) ;
}
}
}
) ;
2021-09-05 21:20:13 +00:00
return me ;
}
return {
create : createController ,
errorDefaultMessage : 'Error code: %1' ,
unknownErrorText : 'Unknown error.' ,
convertationTimeoutText : 'Conversion timeout exceeded.' ,
convertationErrorText : 'Conversion failed.' ,
downloadErrorText : 'Download failed.' ,
criticalErrorTitle : 'Error' ,
notcriticalErrorTitle : 'Warning' ,
scriptLoadError : 'The connection is too slow, some of the components could not be loaded. Please reload the page.' ,
errorFilePassProtect : 'The file is password protected and cannot be opened.' ,
errorAccessDeny : 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.' ,
errorUserDrop : 'The file cannot be accessed right now.' ,
unsupportedBrowserErrorText : 'Your browser is not supported.' ,
textOf : 'of' ,
downloadTextText : 'Downloading spreadsheet...' ,
waitText : 'Please, wait...' ,
textLoadingDocument : 'Loading spreadsheet' ,
txtClose : 'Close' ,
errorFileSizeExceed : 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.' ,
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.' ,
textGuest : 'Guest' ,
textAnonymous : 'Anonymous' ,
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." ,
errorLoadingFont : 'Fonts are not loaded.<br>Please contact your Document Server administrator.'
}
} ) ( ) ;