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. 125a-25, Riga, Latvia,
|
|
|
|
* EU, LV-1021.
|
|
|
|
*
|
|
|
|
* The interactive user interfaces in modified source and object code versions
|
|
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
|
|
* Section 5 of the GNU AGPL version 3.
|
|
|
|
*
|
|
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
|
|
*
|
|
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
|
|
* well as technical writing content are licensed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
|
|
*
|
|
|
|
*/
|
2016-03-11 00:48:53 +00:00
|
|
|
var ApplicationController = new(function(){
|
|
|
|
var me,
|
|
|
|
api,
|
|
|
|
config = {},
|
|
|
|
docConfig = {},
|
|
|
|
embedConfig = {},
|
|
|
|
permissions = {},
|
|
|
|
maxPages = 0,
|
|
|
|
created = false,
|
|
|
|
currentPage = 0,
|
2016-11-03 15:22:26 +00:00
|
|
|
ttOffset = [0, -10];
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
// Initialize analytics
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
// Common.Analytics.initialize('UA-12442749-13', 'Embedded ONLYOFFICE Presentation');
|
|
|
|
|
|
|
|
|
|
|
|
// Check browser
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
if (typeof isBrowserSupported !== 'undefined' && !isBrowserSupported()){
|
|
|
|
Common.Gateway.reportError(undefined, 'Your browser is not supported.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handlers
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
function loadConfig(data) {
|
|
|
|
config = $.extend(config, data.config);
|
|
|
|
embedConfig = $.extend(embedConfig, data.config.embedded);
|
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
common.controller.modals.init(embedConfig);
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
// 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');
|
|
|
|
$('#editor_sdk').addClass('bottom');
|
2016-11-03 15:22:26 +00:00
|
|
|
$('#box-tools').removeClass('dropdown').addClass('dropup');
|
|
|
|
ttOffset[1] = -40;
|
2017-04-11 11:05:56 +00:00
|
|
|
} else {
|
|
|
|
$('#toolbar').addClass('top');
|
|
|
|
$('#editor_sdk').addClass('top');
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
if (config.canBackToFolder === false || !(config.customization && config.customization.goback && config.customization.goback.url)) {
|
|
|
|
$('#id-btn-close').hide();
|
|
|
|
|
|
|
|
// Hide last separator
|
2016-03-11 00:48:53 +00:00
|
|
|
$('#toolbar .right .separator').hide();
|
|
|
|
$('#pages').css('margin-right', '12px');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadDocument(data) {
|
|
|
|
docConfig = data.doc;
|
|
|
|
|
|
|
|
if (docConfig) {
|
|
|
|
permissions = $.extend(permissions, docConfig.permissions);
|
|
|
|
|
2016-04-18 12:21:15 +00:00
|
|
|
var docInfo = new Asc.asc_CDocInfo();
|
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);
|
2016-11-24 13:44:54 +00:00
|
|
|
docInfo.put_Token(docConfig.token);
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
if (api) {
|
|
|
|
api.asc_registerCallback('asc_onGetEditorPermissions', onEditorPermissions);
|
|
|
|
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-11-03 15:22:26 +00:00
|
|
|
if (!embedConfig.saveUrl && permissions.print === false)
|
|
|
|
$('#idt-copy').hide();
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onCountPages(count) {
|
|
|
|
maxPages = count;
|
|
|
|
$('#pages').text('of ' + count);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onCurrentPage(number) {
|
|
|
|
$('#page-number').val(number + 1);
|
|
|
|
currentPage = number;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onLongActionBegin(type, id) {
|
|
|
|
var text = '';
|
|
|
|
switch (id)
|
|
|
|
{
|
2016-04-05 11:52:34 +00:00
|
|
|
case Asc.c_oAscAsyncAction['Print']:
|
2016-03-11 00:48:53 +00:00
|
|
|
text = 'Downloading document...';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
text = 'Please wait...';
|
|
|
|
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(){
|
|
|
|
hideMask();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDocMouseMoveStart() {
|
|
|
|
me.isHideBodyTip = true;
|
|
|
|
}
|
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
var $ttEl, $tooltip;
|
2016-03-11 00:48:53 +00:00
|
|
|
function onDocMouseMoveEnd() {
|
|
|
|
if (me.isHideBodyTip) {
|
2016-11-03 15:22:26 +00:00
|
|
|
if ( $tooltip ) {
|
|
|
|
$tooltip.tooltip('hide');
|
|
|
|
$tooltip = false;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDocMouseMove(data) {
|
|
|
|
if (data) {
|
|
|
|
if (data.get_Type() == 1) { // hyperlink
|
|
|
|
me.isHideBodyTip = false;
|
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
if ( !$ttEl ) {
|
|
|
|
$ttEl = $('.hyperlink-tooltip');
|
|
|
|
$ttEl.tooltip({'container':'body', 'trigger':'manual'});
|
|
|
|
$ttEl.on('shown.bs.tooltip', function(e) {
|
|
|
|
$tooltip = $ttEl.data('bs.tooltip').tip();
|
|
|
|
|
|
|
|
$tooltip.css({
|
|
|
|
left: $ttEl.ttpos[0] + ttOffset[0],
|
|
|
|
top: $ttEl.ttpos[1] + ttOffset[1]
|
|
|
|
});
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
$tooltip.find('.tooltip-arrow').css({left: 10});
|
|
|
|
});
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
if ( !$tooltip ) {
|
|
|
|
$ttEl.ttpos = [data.get_X(), data.get_Y()];
|
|
|
|
$ttEl.tooltip('show');
|
|
|
|
} else {
|
|
|
|
$tooltip.css({
|
|
|
|
left:data.get_X() + ttOffset[0],
|
|
|
|
top:data.get_Y() + ttOffset[1]
|
|
|
|
});
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDownloadUrl(url) {
|
|
|
|
Common.Gateway.downloadAs(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPrint() {
|
2016-11-03 15:22:26 +00:00
|
|
|
if (permissions.print!==false)
|
2016-03-11 00:48:53 +00:00
|
|
|
api.asc_Print($.browser.chrome || $.browser.safari || $.browser.opera);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPrintUrl(url) {
|
2016-11-03 15:22:26 +00:00
|
|
|
common.utils.dialogPrint(url);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function hidePreloader() {
|
|
|
|
$('#loading-mask').fadeOut('slow');
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDocumentContentReady() {
|
2016-11-03 15:22:26 +00:00
|
|
|
api.ShowThumbnails(false);
|
|
|
|
api.asc_DeleteVerticalScroll();
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2016-11-14 11:38:41 +00:00
|
|
|
if (!embedConfig.autostart || embedConfig.autostart == 'player') {
|
|
|
|
api.SetDemonstrationModeOnly();
|
|
|
|
onPlayStart();
|
|
|
|
}
|
2016-11-03 15:22:26 +00:00
|
|
|
hidePreloader();
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
if ( !embedConfig.shareUrl )
|
|
|
|
$('#idt-share').hide();
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
if ( !embedConfig.embedUrl )
|
|
|
|
$('#idt-embed').hide();
|
|
|
|
|
|
|
|
if ( !embedConfig.fullscreenUrl )
|
2016-11-17 13:01:54 +00:00
|
|
|
$('#idt-fullscreen').hide();
|
2016-11-03 15:22:26 +00:00
|
|
|
|
|
|
|
common.controller.modals.attach({
|
|
|
|
share: '#idt-share',
|
|
|
|
embed: '#idt-embed'
|
|
|
|
});
|
|
|
|
|
|
|
|
api.asc_registerCallback('asc_onMouseMoveStart', onDocMouseMoveStart);
|
|
|
|
api.asc_registerCallback('asc_onMouseMoveEnd', onDocMouseMoveEnd);
|
|
|
|
api.asc_registerCallback('asc_onMouseMove', onDocMouseMove);
|
|
|
|
|
|
|
|
api.asc_registerCallback('asc_onDownloadUrl', onDownloadUrl);
|
|
|
|
api.asc_registerCallback('asc_onPrint', onPrint);
|
|
|
|
api.asc_registerCallback('asc_onPrintUrl', onPrintUrl);
|
|
|
|
api.asc_registerCallback('asc_onHyperlinkClick', common.utils.openLink);
|
|
|
|
api.asc_registerCallback('asc_onStartAction', onLongActionBegin);
|
|
|
|
api.asc_registerCallback('asc_onEndAction', onLongActionEnd);
|
|
|
|
|
|
|
|
api.asc_registerCallback('asc_onEndDemonstration', onPlayStop);
|
|
|
|
api.asc_registerCallback('asc_onDemonstrationSlideChanged', onPlaySlideChanged);
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
Common.Gateway.on('processmouse', onProcessMouse);
|
|
|
|
Common.Gateway.on('downloadas', onDownloadAs);
|
|
|
|
|
|
|
|
ApplicationView.tools.get('#idt-fullscreen')
|
|
|
|
.on('click', function(){
|
|
|
|
common.utils.openLink(embedConfig.fullscreenUrl);
|
|
|
|
});
|
|
|
|
|
|
|
|
ApplicationView.tools.get('#idt-download')
|
|
|
|
.on('click', function(){
|
|
|
|
if ( !!embedConfig.saveUrl ){
|
|
|
|
common.utils.openLink(embedConfig.saveUrl);
|
|
|
|
} else
|
|
|
|
if (api && permissions.print!==false){
|
|
|
|
api.asc_Print($.browser.chrome || $.browser.safari || $.browser.opera);
|
|
|
|
}
|
|
|
|
|
|
|
|
Common.Analytics.trackEvent('Save');
|
|
|
|
});
|
|
|
|
|
|
|
|
var $pagenum = $('#page-number');
|
|
|
|
$pagenum.on({
|
|
|
|
'keyup': function(e){
|
|
|
|
if ( e.keyCode == 13 ){
|
|
|
|
var newPage = parseInt($('#page-number').val());
|
|
|
|
|
2017-04-11 11:05:56 +00:00
|
|
|
if ( isNaN(newPage) ) {
|
|
|
|
$('#page-number').val(currentPage + 1);
|
|
|
|
} else {
|
|
|
|
if ( newPage > maxPages ) newPage = maxPages; else
|
|
|
|
if ( newPage < 2 ) newPage = 1;
|
|
|
|
|
|
|
|
if ( newPage == currentPage + 1 ) {
|
|
|
|
$('#page-number').val( newPage );
|
|
|
|
} else
|
|
|
|
if (isplaymode) {
|
|
|
|
currentPage = newPage - 1;
|
|
|
|
api.DemonstrationGoToSlide(newPage - 1);
|
|
|
|
} else api.goToPage(newPage - 1);
|
|
|
|
}
|
2016-11-03 15:22:26 +00:00
|
|
|
|
|
|
|
$pagenum.blur();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
, 'focusin' : function(e) {
|
|
|
|
$pagenum.removeClass('masked');
|
|
|
|
}
|
|
|
|
, 'focusout': function(e){
|
|
|
|
!$pagenum.hasClass('masked') && $pagenum.addClass('masked');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#pages').on('click', function(e) {
|
|
|
|
$pagenum.focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#id-btn-close').on('click', function(){
|
|
|
|
if (config.customization && config.customization.goback && config.customization.goback.url)
|
|
|
|
window.parent.location.href = config.customization.goback.url;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#btn-left').on('click', function(){
|
|
|
|
if ( isplaymode ) {
|
|
|
|
api.DemonstrationPrevSlide();
|
|
|
|
} else
|
|
|
|
if (currentPage > 0) {
|
|
|
|
api.goToPage(currentPage - 1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#btn-right').on('click', function(){
|
|
|
|
if ( isplaymode ) {
|
|
|
|
api.DemonstrationNextSlide();
|
|
|
|
} else
|
|
|
|
if (currentPage < maxPages - 1) {
|
|
|
|
api.goToPage(currentPage + 1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var documentMoveTimer;
|
|
|
|
var ismoved = false;
|
|
|
|
$(document).on({
|
|
|
|
'click': function(e) {
|
|
|
|
clearTimeout(documentMoveTimer);
|
|
|
|
documentMoveTimer = undefined;
|
|
|
|
},
|
|
|
|
'mousemove': function (e) {
|
|
|
|
$('#btn-left').fadeIn();
|
|
|
|
$('#btn-right').fadeIn();
|
|
|
|
|
|
|
|
ismoved = true;
|
|
|
|
if ( !documentMoveTimer ) {
|
|
|
|
documentMoveTimer = setInterval(function(){
|
|
|
|
if ( !ismoved ) {
|
|
|
|
// $('#btn-left').fadeOut();
|
|
|
|
// $('#btn-right').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();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#btn-play').on('click', onPlayStart);
|
2016-03-11 00:48:53 +00:00
|
|
|
Common.Analytics.trackEvent('Load', 'Complete');
|
|
|
|
}
|
|
|
|
|
|
|
|
function onEditorPermissions(params) {
|
|
|
|
if ( params.asc_getCanBranding() && (typeof config.customization == 'object') &&
|
|
|
|
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();
|
|
|
|
api.Resize();
|
|
|
|
api.zoomFitToPage();
|
|
|
|
}
|
|
|
|
|
2016-11-03 15:22:26 +00:00
|
|
|
function onOpenDocument(progress) {
|
|
|
|
var proc = (progress.asc_getCurrentFont() + progress.asc_getCurrentImage())/(progress.asc_getFontsCount() + progress.asc_getImagesCount());
|
|
|
|
$('#loadmask-text').html('Loading document: ' + Math.min(Math.round(proc * 100), 100) + '%');
|
|
|
|
}
|
|
|
|
|
|
|
|
var isplaymode;
|
|
|
|
function onPlayStart(e) {
|
|
|
|
if ( !isplaymode ) {
|
2016-11-21 16:28:16 +00:00
|
|
|
$('#box-preview').show();
|
|
|
|
api.StartDemonstration('id-preview', currentPage);
|
2016-11-03 15:22:26 +00:00
|
|
|
} else {
|
2016-11-21 16:28:16 +00:00
|
|
|
isplaymode == 'play' ?
|
|
|
|
api.DemonstrationPause() : api.DemonstrationPlay();
|
2016-11-03 15:22:26 +00:00
|
|
|
}
|
2016-11-21 16:28:16 +00:00
|
|
|
|
|
|
|
isplaymode != 'play' ? ($('#btn-play button').addClass('pause'), isplaymode = 'play') :
|
|
|
|
($('#btn-play button').removeClass('pause'), isplaymode = 'pause');
|
2016-11-03 15:22:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function onPlayStop() {
|
|
|
|
isplaymode = undefined;
|
|
|
|
$('#page-number').val(currentPage + 1);
|
|
|
|
$('#btn-play button').removeClass('pause');
|
|
|
|
$('#box-preview').hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPlaySlideChanged(number) {
|
|
|
|
if ( number++ < maxPages)
|
|
|
|
$('#page-number').val(number);
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
function showMask() {
|
|
|
|
$('#id-loadmask').modal({
|
|
|
|
backdrop: 'static',
|
|
|
|
keyboard: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function hideMask() {
|
|
|
|
$('#id-loadmask').modal('hide');
|
|
|
|
}
|
|
|
|
|
|
|
|
function onError(id, level, errData) {
|
|
|
|
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;
|
|
|
|
|
|
|
|
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);
|
|
|
|
$('#id-critical-error-message').text(message);
|
|
|
|
$('#id-critical-error-close').off();
|
|
|
|
$('#id-critical-error-close').on('click', function(){
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
|
|
|
$('#id-critical-error-message').text(message);
|
|
|
|
$('#id-critical-error-close').off();
|
|
|
|
$('#id-critical-error-close').on('click', function(){
|
|
|
|
$('#id-critical-error-dialog').modal('hide');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#id-critical-error-dialog').modal('show');
|
|
|
|
|
|
|
|
Common.Analytics.trackEvent('Internal Error', id.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
function onExternalError(error) {
|
|
|
|
if (error) {
|
|
|
|
hidePreloader();
|
|
|
|
$('#id-error-mask-title').text(error.title);
|
|
|
|
$('#id-error-mask-text').text(error.msg);
|
|
|
|
$('#id-error-mask').css('display', 'block');
|
|
|
|
|
|
|
|
Common.Analytics.trackEvent('External Error', error.title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onProcessMouse(data) {
|
|
|
|
if (data.type == 'mouseup') {
|
|
|
|
var e = document.getElementById('editor_sdk');
|
|
|
|
if (e) {
|
|
|
|
var r = e.getBoundingClientRect();
|
|
|
|
api.OnMouseUp(
|
|
|
|
data.x - r.left,
|
|
|
|
data.y - r.top
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDownloadAs() {
|
2016-04-05 11:52:34 +00:00
|
|
|
if (api) api.asc_DownloadAs(Asc.c_oAscFileType.PPTX, true);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
// Helpers
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
function onDocumentResize() {
|
|
|
|
if (api) {
|
|
|
|
api.Resize();
|
|
|
|
api.zoomFitToPage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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.asc_docs_api({
|
2016-11-14 11:38:41 +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){
|
2016-03-25 13:38:31 +00:00
|
|
|
api.SetThemesPath("../../../../sdkjs/slide/themes/");
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
api.asc_registerCallback('asc_onError', onError);
|
|
|
|
api.asc_registerCallback('asc_onDocumentContentReady', onDocumentContentReady);
|
|
|
|
api.asc_registerCallback('asc_onOpenDocumentProgress', onOpenDocument);
|
|
|
|
api.asc_registerCallback('asc_onCountPages', onCountPages);
|
|
|
|
api.asc_registerCallback('asc_onCurrentPage', onCurrentPage);
|
|
|
|
|
|
|
|
// Initialize api gateway
|
|
|
|
Common.Gateway.on('init', loadConfig);
|
|
|
|
Common.Gateway.on('opendocument', loadDocument);
|
|
|
|
Common.Gateway.on('showerror', onExternalError);
|
|
|
|
Common.Gateway.ready();
|
|
|
|
}
|
|
|
|
|
|
|
|
return me;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
create : createController,
|
|
|
|
errorDefaultMessage : 'Error code: %1',
|
|
|
|
unknownErrorText : 'Unknown error.',
|
|
|
|
convertationTimeoutText : 'Convertation timeout exceeded.',
|
|
|
|
convertationErrorText : 'Convertation failed.',
|
|
|
|
downloadErrorText : 'Download failed.',
|
|
|
|
criticalErrorTitle : 'Error',
|
|
|
|
notcriticalErrorTitle : 'Warning'
|
|
|
|
}
|
|
|
|
})();
|