2016-04-01 13:17:09 +00:00
/ *
*
2019-01-17 13:05:03 +00:00
* ( c ) Copyright Ascensio System SIA 2010 - 2019
2016-04-01 13:17:09 +00:00
*
* This program is a free software product . You can redistribute it and / or
* modify it under the terms of the GNU Affero General Public License ( AGPL )
* version 3 as published by the Free Software Foundation . In accordance with
* Section 7 ( a ) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non - infringement
* of any third - party rights .
*
* This program is distributed WITHOUT ANY WARRANTY ; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . For
* details , see the GNU AGPL at : http : //www.gnu.org/licenses/agpl-3.0.html
*
2019-01-17 13:00:34 +00:00
* You can contact Ascensio System SIA at 20 A - 12 Ernesta Birznieka - Upisha
* street , Riga , Latvia , EU , LV - 1050.
2016-04-01 13:17:09 +00:00
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices , as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7 ( b ) of the License you must retain the original Product
* logo when distributing the program . Pursuant to Section 7 ( e ) we decline to
* grant you any rights under trademark law for use of our trademarks .
*
* All the Product ' s GUI elements , including illustrations and icon sets , as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution - ShareAlike 4.0 International . See the License
* terms at http : //creativecommons.org/licenses/by-sa/4.0/legalcode
*
* /
2019-05-14 12:18:18 +00:00
SSE . ApplicationController = new ( function ( ) {
2016-03-11 00:48:53 +00:00
var me ,
api ,
config = { } ,
docConfig = { } ,
embedConfig = { } ,
permissions = { } ,
maxPages = 0 ,
created = false ,
iframePrint = null ;
2016-11-02 10:44:35 +00:00
var $ttEl ,
$tooltip ,
ttOffset = [ 6 , - 15 ] ;
2016-03-11 00:48:53 +00:00
// Initialize analytics
// -------------------------
2019-02-22 12:28:39 +00:00
// Common.Analytics.initialize('UA-12442749-13', 'Embedded Spreadsheet Editor');
2016-03-11 00:48:53 +00:00
// Check browser
// -------------------------
if ( typeof isBrowserSupported !== 'undefined' && ! isBrowserSupported ( ) ) {
2019-05-14 12:18:18 +00:00
Common . Gateway . reportError ( undefined , this . unsupportedBrowserErrorText ) ;
2016-03-11 00:48:53 +00:00
return ;
}
// Handlers
// -------------------------
function loadConfig ( data ) {
config = $ . extend ( config , data . config ) ;
embedConfig = $ . extend ( embedConfig , data . config . embedded ) ;
2016-11-02 10:44:35 +00:00
common . controller . modals . init ( embedConfig ) ;
2016-03-11 00:48:53 +00:00
2019-11-27 07:22:25 +00:00
if ( config . canBackToFolder === false || ! ( config . customization && config . customization . goback && ( config . customization . goback . url || config . customization . goback . requestClose && config . canRequestClose ) ) )
2016-03-11 00:48:53 +00:00
$ ( '#id-btn-close' ) . hide ( ) ;
// Docked toolbar
2017-04-11 11:05:56 +00:00
if ( embedConfig . toolbarDocked === 'bottom' ) {
2016-03-11 00:48:53 +00:00
$ ( '#toolbar' ) . addClass ( 'bottom' ) ;
$ ( '.viewer' ) . addClass ( 'bottom' ) ;
2016-11-02 10:44:35 +00:00
$ ( '#box-tools' ) . removeClass ( 'dropdown' ) . addClass ( 'dropup' ) ;
ttOffset [ 1 ] = - 40 ;
2017-04-11 11:05:56 +00:00
} else {
$ ( '#toolbar' ) . addClass ( 'top' ) ;
$ ( '.viewer' ) . addClass ( 'top' ) ;
2016-03-11 00:48:53 +00:00
}
}
function loadDocument ( data ) {
docConfig = data . doc ;
if ( docConfig ) {
permissions = $ . extend ( permissions , docConfig . permissions ) ;
2017-10-30 11:50:59 +00:00
var _permissions = $ . extend ( { } , docConfig . permissions ) ,
2020-10-31 16:53:35 +00:00
docInfo = new Asc . asc _CDocInfo ( ) ,
_user = new Asc . asc _CUserInfo ( ) ;
_user . put _Id ( config . user && config . user . id ? config . user . id : ( 'uid-' + Date . now ( ) ) ) ;
2016-03-11 00:48:53 +00:00
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 ) ;
2020-10-31 16:53:35 +00:00
docInfo . put _UserInfo ( _user ) ;
2016-11-24 13:44:54 +00:00
docInfo . put _Token ( docConfig . token ) ;
2017-10-30 11:50:59 +00:00
docInfo . put _Permissions ( _permissions ) ;
2020-05-22 15:40:38 +00:00
docInfo . put _EncryptedInfo ( config . encryptionKeys ) ;
2016-03-11 00:48:53 +00:00
2020-05-22 15:34:00 +00:00
var enable = ! config . customization || ( config . customization . macros !== false ) ;
docInfo . asc _putIsEnabledMacroses ( ! ! enable ) ;
enable = ! config . customization || ( config . customization . plugins !== false ) ;
docInfo . asc _putIsEnabledPlugins ( ! ! enable ) ;
2016-03-11 00:48:53 +00:00
if ( api ) {
api . asc _registerCallback ( 'asc_onGetEditorPermissions' , onEditorPermissions ) ;
2020-05-22 15:34:00 +00:00
api . asc _registerCallback ( 'asc_onRunAutostartMacroses' , onRunAutostartMacroses ) ;
2016-03-11 00:48:53 +00:00
api . asc _setDocInfo ( docInfo ) ;
api . asc _getEditorPermissions ( config . licenseUrl , config . customerId ) ;
api . asc _enableKeyEvents ( true ) ;
Common . Analytics . trackEvent ( 'Load' , 'Start' ) ;
}
2016-11-18 15:00:46 +00:00
embedConfig . docTitle = docConfig . title ;
2016-03-11 00:48:53 +00:00
}
}
2016-11-02 10:44:35 +00:00
function setActiveWorkSheet ( index ) {
var $box = $ ( '#worksheets' ) ;
$box . find ( '> li' ) . removeClass ( 'active' ) ;
$box . find ( '#worksheet' + index ) . addClass ( 'active' ) ;
api . asc _showWorksheet ( index ) ;
}
2016-03-11 00:48:53 +00:00
function onSheetsChanged ( ) {
2016-11-02 10:44:35 +00:00
maxPages = api . asc _getWorksheetsCount ( ) ;
2016-03-11 00:48:53 +00:00
var handleWorksheet = function ( e ) {
var $worksheet = $ ( this ) ;
2016-11-02 10:44:35 +00:00
var index = $worksheet . attr ( 'id' ) . match ( /\d+$/ ) ;
2016-03-11 00:48:53 +00:00
if ( index . length > 0 ) {
index = parseInt ( index [ 0 ] ) ;
if ( index > - 1 && index < maxPages )
setActiveWorkSheet ( index ) ;
}
} ;
2016-11-02 10:44:35 +00:00
var $box = $ ( '#worksheets' ) ;
$box . find ( 'li' ) . off ( ) ;
$box . empty ( ) ;
2016-03-11 00:48:53 +00:00
2016-11-02 10:44:35 +00:00
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 ) ;
2016-03-11 00:48:53 +00:00
}
2016-11-02 10:44:35 +00:00
setActiveWorkSheet ( api . asc _getActiveWorksheetIndex ( ) ) ;
2016-03-11 00:48:53 +00:00
}
function onDownloadUrl ( url ) {
Common . Gateway . downloadAs ( url ) ;
}
function onPrint ( ) {
2016-11-02 10:44:35 +00:00
if ( permissions . print !== false )
2019-07-24 13:07:16 +00:00
api . asc _Print ( new Asc . asc _CDownloadOptions ( null , $ . browser . chrome || $ . browser . safari || $ . browser . opera ) ) ;
2016-03-11 00:48:53 +00:00
}
function onPrintUrl ( url ) {
2019-07-23 12:07:51 +00:00
common . utils . dialogPrint ( url , api ) ;
2016-03-11 00:48:53 +00:00
}
function hidePreloader ( ) {
$ ( '#loading-mask' ) . fadeOut ( 'slow' ) ;
}
function onDocumentContentReady ( ) {
hidePreloader ( ) ;
2020-09-08 17:40:18 +00:00
if ( permissions . print === false )
$ ( '#idt-print' ) . hide ( ) ;
2019-11-12 08:05:59 +00:00
if ( ! embedConfig . saveUrl && permissions . print === false )
$ ( '#idt-download' ) . hide ( ) ;
2016-11-02 10:44:35 +00:00
if ( ! embedConfig . shareUrl )
$ ( '#idt-share' ) . hide ( ) ;
if ( ! embedConfig . embedUrl )
$ ( '#idt-embed' ) . hide ( ) ;
if ( ! embedConfig . fullscreenUrl )
2016-11-17 13:01:54 +00:00
$ ( '#idt-fullscreen' ) . hide ( ) ;
2016-11-02 10:44:35 +00:00
2019-11-12 08:05:59 +00:00
if ( ! embedConfig . saveUrl && permissions . print === false && ! embedConfig . shareUrl && ! embedConfig . embedUrl && ! embedConfig . fullscreenUrl )
$ ( '#box-tools' ) . addClass ( 'hidden' ) ;
2016-11-02 10:44:35 +00:00
common . controller . modals . attach ( {
share : '#idt-share' ,
embed : '#idt-embed'
} ) ;
api . asc _registerCallback ( 'asc_onMouseMove' , onApiMouseMove ) ;
api . asc _registerCallback ( 'asc_onHyperlinkClick' , common . utils . openLink ) ;
api . asc _registerCallback ( 'asc_onDownloadUrl' , onDownloadUrl ) ;
api . asc _registerCallback ( 'asc_onPrint' , onPrint ) ;
api . asc _registerCallback ( 'asc_onPrintUrl' , onPrintUrl ) ;
Common . Gateway . on ( 'processmouse' , onProcessMouse ) ;
Common . Gateway . on ( 'downloadas' , onDownloadAs ) ;
2019-05-14 12:18:18 +00:00
SSE . ApplicationView . tools . get ( '#idt-fullscreen' )
2016-11-02 10:44:35 +00:00
. on ( 'click' , function ( ) {
common . utils . openLink ( embedConfig . fullscreenUrl ) ;
} ) ;
2019-05-14 12:18:18 +00:00
SSE . ApplicationView . tools . get ( '#idt-download' )
2016-11-02 10:44:35 +00:00
. on ( 'click' , function ( ) {
if ( ! ! embedConfig . saveUrl ) {
common . utils . openLink ( embedConfig . saveUrl ) ;
} else
if ( permissions . print !== false ) {
2019-07-24 13:07:16 +00:00
api . asc _Print ( new Asc . asc _CDownloadOptions ( null , $ . browser . chrome || $ . browser . safari || $ . browser . opera ) ) ;
2016-11-02 10:44:35 +00:00
}
Common . Analytics . trackEvent ( 'Save' ) ;
} ) ;
2020-09-08 17:40:18 +00:00
SSE . ApplicationView . tools . get ( '#idt-print' )
. on ( 'click' , function ( ) {
api . asc _Print ( new Asc . asc _CDownloadOptions ( null , $ . browser . chrome || $ . browser . safari || $ . browser . opera ) ) ;
Common . Analytics . trackEvent ( 'Print' ) ;
} ) ;
2016-11-02 10:44:35 +00:00
$ ( '#id-btn-close' ) . on ( 'click' , function ( ) {
2019-11-27 07:22:25 +00:00
if ( config . customization && config . customization . goback ) {
if ( config . customization . goback . requestClose && config . canRequestClose )
Common . Gateway . requestClose ( ) ;
else if ( config . customization . goback . url )
window . parent . location . href = config . customization . goback . url ;
}
2016-11-02 10:44:35 +00:00
} ) ;
$ ( '#id-btn-zoom-in' ) . on ( 'click' , function ( ) {
if ( api ) {
var f = Math . floor ( api . asc _getZoom ( ) * 10 ) / 10 ;
f += . 1 ;
f > 0 && ! ( f > 2. ) && api . asc _setZoom ( f ) ;
}
} ) ;
$ ( '#id-btn-zoom-out' ) . on ( 'click' , function ( ) {
if ( api ) {
var f = Math . ceil ( api . asc _getZoom ( ) * 10 ) / 10 ;
f -= . 1 ;
! ( f < . 5 ) && api . asc _setZoom ( f ) ;
}
} ) ;
var documentMoveTimer ;
var ismoved = false ;
$ ( document ) . mousemove ( function ( event ) {
$ ( '#id-btn-zoom-in' ) . fadeIn ( ) ;
$ ( '#id-btn-zoom-out' ) . fadeIn ( ) ;
ismoved = true ;
if ( ! documentMoveTimer ) {
documentMoveTimer = setInterval ( function ( ) {
if ( ! ismoved ) {
$ ( '#id-btn-zoom-in' ) . fadeOut ( ) ;
$ ( '#id-btn-zoom-out' ) . fadeOut ( ) ;
clearInterval ( documentMoveTimer ) ;
documentMoveTimer = undefined ;
}
ismoved = false ;
} , 2000 ) ;
}
} ) ;
var ismodalshown = false ;
$ ( document . body ) . on ( 'show.bs.modal' , '.modal' ,
function ( e ) {
ismodalshown = true ;
api . asc _enableKeyEvents ( false ) ;
}
) . on ( 'hidden.bs.modal' , '.modal' ,
function ( e ) {
ismodalshown = false ;
api . asc _enableKeyEvents ( true ) ;
}
) . on ( 'hidden.bs.dropdown' , '.dropdown' ,
function ( e ) {
if ( ! ismodalshown )
api . asc _enableKeyEvents ( true ) ;
}
) . on ( 'blur' , 'input, textarea' ,
function ( e ) {
if ( ! ismodalshown ) {
if ( ! /area_id/ . test ( e . target . id ) ) {
api . asc _enableKeyEvents ( true ) ;
}
}
}
) ;
$ ( '#editor_sdk' ) . on ( 'click' , function ( e ) {
if ( e . target . localName == 'canvas' ) {
e . currentTarget . focus ( ) ;
}
} ) ;
2016-11-22 12:27:23 +00:00
$ ( document ) . on ( 'mousewheel' , function ( e ) {
if ( ( e . ctrlKey || e . metaKey ) && ! e . altKey ) {
e . preventDefault ( ) ;
e . stopPropagation ( ) ;
}
} ) ;
2019-01-10 08:20:53 +00:00
Common . Gateway . documentReady ( ) ;
2016-03-11 00:48:53 +00:00
Common . Analytics . trackEvent ( 'Load' , 'Complete' ) ;
}
function onEditorPermissions ( params ) {
2017-06-16 07:52:31 +00:00
if ( ( params . asc _getLicenseType ( ) === Asc . c _oLicenseResult . Success ) && ( typeof config . customization == 'object' ) &&
2016-03-11 00:48:53 +00:00
config . customization && config . customization . logo ) {
var logo = $ ( '#header-logo' ) ;
if ( config . customization . logo . imageEmbedded ) {
logo . html ( '<img src="' + config . customization . logo . imageEmbedded + '" style="max-width:124px; max-height:20px;"/>' ) ;
logo . css ( { 'background-image' : 'none' , width : 'auto' , height : 'auto' } ) ;
}
if ( config . customization . logo . url ) {
logo . attr ( 'href' , config . customization . logo . url ) ;
}
}
api . asc _setViewMode ( true ) ;
api . asc _LoadDocument ( ) ;
}
function showMask ( ) {
$ ( '#id-loadmask' ) . modal ( {
backdrop : 'static' ,
keyboard : false
} ) ;
}
function hideMask ( ) {
$ ( '#id-loadmask' ) . modal ( 'hide' ) ;
}
function onOpenDocument ( progress ) {
var proc = ( progress . asc _getCurrentFont ( ) + progress . asc _getCurrentImage ( ) ) / ( progress . asc _getFontsCount ( ) + progress . asc _getImagesCount ( ) ) ;
2019-05-14 12:18:18 +00:00
$ ( '#loadmask-text' ) . html ( me . textLoadingDocument + ': ' + Math . min ( Math . round ( proc * 100 ) , 100 ) + '%' ) ;
2016-03-11 00:48:53 +00:00
}
function onLongActionBegin ( type , id ) {
var text = '' ;
switch ( id )
{
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction [ 'Print' ] :
2019-05-14 12:18:18 +00:00
text = me . downloadTextText ;
2016-03-11 00:48:53 +00:00
break ;
default :
2019-05-14 12:18:18 +00:00
text = me . waitText ;
2016-03-11 00:48:53 +00:00
break ;
}
2016-04-05 11:52:34 +00:00
if ( type == Asc . c _oAscAsyncActionType [ 'BlockInteraction' ] ) {
2016-03-11 00:48:53 +00:00
$ ( '#id-loadmask .cmd-loader-title' ) . html ( text ) ;
showMask ( ) ;
}
}
function onLongActionEnd ( type , id ) {
2016-04-05 11:52:34 +00:00
if ( type === Asc . c _oAscAsyncActionType . BlockInteraction ) {
2016-03-11 00:48:53 +00:00
switch ( id ) {
2016-04-05 11:52:34 +00:00
case Asc . c _oAscAsyncAction . Open :
2016-03-11 00:48:53 +00:00
if ( api ) {
api . asc _Resize ( ) ;
2018-04-04 09:19:20 +00:00
var zf = ( config . customization && config . customization . zoom ? parseInt ( config . customization . zoom ) / 100 : 1 ) ;
api . asc _setZoom ( zf > 0 ? zf : 1 ) ;
2016-03-11 00:48:53 +00:00
}
onDocumentContentReady ( ) ;
onSheetsChanged ( ) ;
break ;
}
hideMask ( ) ;
}
}
function onError ( id , level , errData ) {
2018-10-08 14:06:37 +00:00
if ( id == Asc . c _oAscError . ID . LoadingScriptError ) {
$ ( '#id-critical-error-title' ) . text ( me . criticalErrorTitle ) ;
$ ( '#id-critical-error-message' ) . text ( me . scriptLoadError ) ;
2019-05-14 12:18:18 +00:00
$ ( '#id-critical-error-close' ) . text ( me . txtClose ) . off ( ) . on ( 'click' , function ( ) {
2018-10-08 14:06:37 +00:00
window . location . reload ( ) ;
} ) ;
$ ( '#id-critical-error-dialog' ) . css ( 'z-index' , 20002 ) . modal ( 'show' ) ;
return ;
}
2016-03-11 00:48:53 +00:00
hidePreloader ( ) ;
var message ;
switch ( id )
{
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . Unknown :
2016-03-11 00:48:53 +00:00
message = me . unknownErrorText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . ConvertationTimeout :
2016-03-11 00:48:53 +00:00
message = me . convertationTimeoutText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . ConvertationError :
2016-03-11 00:48:53 +00:00
message = me . convertationErrorText ;
break ;
2016-04-05 11:52:34 +00:00
case Asc . c _oAscError . ID . DownloadError :
2016-03-11 00:48:53 +00:00
message = me . downloadErrorText ;
break ;
2018-10-09 11:32:18 +00:00
case Asc . c _oAscError . ID . ConvertationPassword :
message = me . errorFilePassProtect ;
break ;
2019-03-29 09:21:43 +00:00
case Asc . c _oAscError . ID . UserDrop :
message = me . errorUserDrop ;
break ;
2019-08-28 14:29:39 +00:00
case Asc . c _oAscError . ID . ConvertationOpenLimitError :
message = me . errorFileSizeExceed ;
break ;
2019-11-13 11:14:41 +00:00
case Asc . c _oAscError . ID . UpdateVersion :
message = me . errorUpdateVersionOnDisconnect ;
break ;
2020-04-07 09:26:19 +00:00
case Asc . c _oAscError . ID . AccessDeny :
message = me . errorAccessDeny ;
break ;
2016-03-11 00:48:53 +00:00
default :
message = me . 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 , message ) ;
$ ( '#id-critical-error-title' ) . text ( me . criticalErrorTitle ) ;
2019-08-28 14:29:39 +00:00
$ ( '#id-critical-error-message' ) . html ( message ) ;
2019-05-14 12:18:18 +00:00
$ ( '#id-critical-error-close' ) . text ( me . txtClose ) . off ( ) . on ( 'click' , function ( ) {
2016-03-11 00:48:53 +00:00
window . location . reload ( ) ;
} ) ;
}
else {
2017-10-07 09:20:39 +00:00
Common . Gateway . reportWarning ( id , message ) ;
2016-03-11 00:48:53 +00:00
$ ( '#id-critical-error-title' ) . text ( me . notcriticalErrorTitle ) ;
2019-08-28 14:29:39 +00:00
$ ( '#id-critical-error-message' ) . html ( message ) ;
2019-05-14 12:18:18 +00:00
$ ( '#id-critical-error-close' ) . text ( me . txtClose ) . off ( ) . on ( 'click' , function ( ) {
2016-03-11 00:48:53 +00:00
$ ( '#id-critical-error-dialog' ) . modal ( 'hide' ) ;
} ) ;
}
$ ( '#id-critical-error-dialog' ) . modal ( 'show' ) ;
Common . Analytics . trackEvent ( 'Internal Error' , id . toString ( ) ) ;
}
2017-05-16 07:46:04 +00:00
function onExternalMessage ( error ) {
2016-03-11 00:48:53 +00:00
if ( error ) {
hidePreloader ( ) ;
2019-05-14 12:18:18 +00:00
$ ( '#id-error-mask-title' ) . text ( me . criticalErrorTitle ) ;
2016-03-11 00:48:53 +00:00
$ ( '#id-error-mask-text' ) . text ( error . msg ) ;
$ ( '#id-error-mask' ) . css ( 'display' , 'block' ) ;
2017-05-16 07:46:04 +00:00
Common . Analytics . trackEvent ( 'External Error' ) ;
2016-03-11 00:48:53 +00:00
}
}
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 onDownloadAs ( ) {
2019-01-10 14:20:59 +00:00
if ( permissions . download === false ) {
Common . Gateway . reportError ( Asc . c _oAscError . ID . AccessDeny , me . errorAccessDeny ) ;
return ;
}
2019-07-24 08:36:13 +00:00
api . asc _DownloadAs ( new Asc . asc _CDownloadOptions ( Asc . c _oAscFileType . XLSX , true ) ) ;
2016-03-11 00:48:53 +00:00
}
2016-11-02 10:44:35 +00:00
function onApiMouseMove ( array ) {
if ( array . length ) {
var ttdata ;
for ( var i = array . length ; i > 0 ; i -- ) {
if ( array [ i - 1 ] . asc _getType ( ) == Asc . c _oAscMouseMoveType . Hyperlink ) {
ttdata = array [ i - 1 ] ;
break ;
}
2016-03-11 00:48:53 +00:00
}
2016-11-02 10:44:35 +00:00
if ( ttdata ) {
if ( ! $ttEl ) {
$ttEl = $ ( '.hyperlink-tooltip' ) ;
$ttEl . tooltip ( { 'container' : 'body' , 'trigger' : 'manual' } ) ;
$ttEl . on ( 'shown.bs.tooltip' , function ( e ) {
$tooltip = $ttEl . data ( 'bs.tooltip' ) . tip ( ) ;
2016-03-11 00:48:53 +00:00
2016-11-02 10:44:35 +00:00
$tooltip . css ( {
left : $ttEl . ttpos [ 0 ] + ttOffset [ 0 ] ,
top : $ttEl . ttpos [ 1 ] + ttOffset [ 1 ]
} ) ;
2016-03-11 00:48:53 +00:00
2016-11-02 10:44:35 +00:00
$tooltip . find ( '.tooltip-arrow' ) . css ( { left : 10 } ) ;
} ) ;
2016-03-11 00:48:53 +00:00
}
2016-11-02 10:44:35 +00:00
if ( ! $tooltip ) {
$ttEl . ttpos = [ ttdata . asc _getX ( ) , ttdata . asc _getY ( ) ] ;
$ttEl . tooltip ( 'show' ) ;
} else {
$tooltip . css ( {
left : ttdata . asc _getX ( ) + ttOffset [ 0 ] ,
top : ttdata . asc _getY ( ) + ttOffset [ 1 ]
} ) ;
}
} else {
if ( $tooltip ) {
$tooltip . tooltip ( 'hide' ) ;
$tooltip = false ;
}
2016-03-11 00:48:53 +00:00
}
}
}
2020-05-22 15:34:00 +00:00
function onRunAutostartMacroses ( ) {
if ( ! config . customization || ( config . customization . macros !== false ) )
if ( api ) api . asc _runAutostartMacroses ( ) ;
}
2016-11-02 10:44:35 +00:00
// Helpers
// -------------------------
2016-03-11 00:48:53 +00:00
2016-11-02 10:44:35 +00:00
function onDocumentResize ( ) {
if ( api ) api . asc _Resize ( ) ;
2016-03-11 00:48:53 +00:00
}
function createController ( ) {
if ( created )
return me ;
me = this ;
created = true ;
// popover ui handlers
$ ( window ) . resize ( function ( ) {
onDocumentResize ( ) ;
} ) ;
2016-05-13 08:37:54 +00:00
api = new Asc . spreadsheet _api ( {
2019-10-30 11:48:09 +00:00
'id-view' : 'editor_sdk' ,
'embedded' : true
2016-05-13 08:37:54 +00:00
} ) ;
2016-03-11 00:48:53 +00:00
if ( api ) {
api . asc _registerCallback ( 'asc_onStartAction' , onLongActionBegin ) ;
api . asc _registerCallback ( 'asc_onEndAction' , onLongActionEnd ) ;
api . asc _registerCallback ( 'asc_onError' , onError ) ;
api . asc _registerCallback ( 'asc_onOpenDocumentProgress' , onOpenDocument ) ;
api . asc _registerCallback ( 'asc_onSheetsChanged' , onSheetsChanged ) ;
2016-11-02 10:44:35 +00:00
api . asc _registerCallback ( 'asc_onActiveSheetChanged' , setActiveWorkSheet ) ;
2016-03-11 00:48:53 +00:00
// Initialize api gateway
Common . Gateway . on ( 'init' , loadConfig ) ;
Common . Gateway . on ( 'opendocument' , loadDocument ) ;
2017-05-16 07:46:04 +00:00
Common . Gateway . on ( 'showmessage' , onExternalMessage ) ;
2017-09-20 11:32:18 +00:00
Common . Gateway . appReady ( ) ;
2016-03-11 00:48:53 +00:00
}
return me ;
}
return {
create : createController ,
errorDefaultMessage : 'Error code: %1' ,
unknownErrorText : 'Unknown error.' ,
2019-05-14 13:55:52 +00:00
convertationTimeoutText : 'Conversion timeout exceeded.' ,
convertationErrorText : 'Conversion failed.' ,
2016-03-11 00:48:53 +00:00
downloadErrorText : 'Download failed.' ,
criticalErrorTitle : 'Error' ,
2018-10-08 14:06:37 +00:00
notcriticalErrorTitle : 'Warning' ,
2018-10-09 11:32:18 +00:00
scriptLoadError : 'The connection is too slow, some of the components could not be loaded. Please reload the page.' ,
2019-01-10 14:20:59 +00:00
errorFilePassProtect : 'The file is password protected and cannot be opened.' ,
2019-03-29 09:21:43 +00:00
errorAccessDeny : 'You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.' ,
2019-05-14 12:18:18 +00:00
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' ,
2019-08-28 14:29:39 +00:00
txtClose : 'Close' ,
2019-11-13 11:14:41 +00:00
errorFileSizeExceed : 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.' ,
2019-11-15 14:11:59 +00:00
errorUpdateVersionOnDisconnect : 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.'
2016-03-11 00:48:53 +00:00
}
} ) ( ) ;