[DE forms] Add app scripts
This commit is contained in:
parent
4a1fd64001
commit
49263c3e55
165
apps/documenteditor/forms/app.js
Normal file
165
apps/documenteditor/forms/app.js
Normal file
|
@ -0,0 +1,165 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* (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 20A-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
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
var reqerr;
|
||||||
|
require.config({
|
||||||
|
// The shim config allows us to configure dependencies for
|
||||||
|
// scripts that do not call define() to register a module
|
||||||
|
baseUrl: '../../',
|
||||||
|
paths: {
|
||||||
|
jquery : '../vendor/jquery/jquery',
|
||||||
|
underscore : '../vendor/underscore/underscore',
|
||||||
|
backbone : '../vendor/backbone/backbone',
|
||||||
|
bootstrap : '../vendor/bootstrap/dist/js/bootstrap',
|
||||||
|
text : '../vendor/requirejs-text/text',
|
||||||
|
perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar',
|
||||||
|
jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel',
|
||||||
|
xregexp : '../vendor/xregexp/xregexp-all-min',
|
||||||
|
sockjs : '../vendor/sockjs/sockjs.min',
|
||||||
|
jszip : '../vendor/jszip/jszip.min',
|
||||||
|
jsziputils : '../vendor/jszip-utils/jszip-utils.min',
|
||||||
|
allfonts : '../../sdkjs/common/AllFonts',
|
||||||
|
sdk : '../../sdkjs/word/sdk-all-min',
|
||||||
|
api : 'api/documents/api',
|
||||||
|
core : 'common/main/lib/core/application',
|
||||||
|
notification : 'common/main/lib/core/NotificationCenter',
|
||||||
|
keymaster : 'common/main/lib/core/keymaster',
|
||||||
|
tip : 'common/main/lib/util/Tip',
|
||||||
|
localstorage : 'common/main/lib/util/LocalStorage',
|
||||||
|
analytics : 'common/Analytics',
|
||||||
|
gateway : 'common/Gateway',
|
||||||
|
locale : 'common/locale',
|
||||||
|
irregularstack : 'common/IrregularStack'
|
||||||
|
},
|
||||||
|
|
||||||
|
shim: {
|
||||||
|
underscore: {
|
||||||
|
exports: '_'
|
||||||
|
},
|
||||||
|
backbone: {
|
||||||
|
deps: [
|
||||||
|
'underscore',
|
||||||
|
'jquery'
|
||||||
|
],
|
||||||
|
exports: 'Backbone'
|
||||||
|
},
|
||||||
|
bootstrap: {
|
||||||
|
deps: [
|
||||||
|
'jquery'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
perfectscrollbar: {
|
||||||
|
deps: [
|
||||||
|
'jmousewheel'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
notification: {
|
||||||
|
deps: [
|
||||||
|
'backbone'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
core: {
|
||||||
|
deps: [
|
||||||
|
'backbone',
|
||||||
|
'notification',
|
||||||
|
'irregularstack'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
sdk: {
|
||||||
|
deps: [
|
||||||
|
'jquery',
|
||||||
|
'underscore',
|
||||||
|
'allfonts',
|
||||||
|
'xregexp',
|
||||||
|
'sockjs',
|
||||||
|
'jszip',
|
||||||
|
'jsziputils'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
gateway: {
|
||||||
|
deps: [
|
||||||
|
'jquery'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
analytics: {
|
||||||
|
deps: [
|
||||||
|
'jquery'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
require([
|
||||||
|
'backbone',
|
||||||
|
'bootstrap',
|
||||||
|
'core',
|
||||||
|
'sdk',
|
||||||
|
'api',
|
||||||
|
'analytics',
|
||||||
|
'gateway',
|
||||||
|
'locale'
|
||||||
|
], function (Backbone, Bootstrap, Core) {
|
||||||
|
Backbone.history.start();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Application instance with DE namespace defined
|
||||||
|
*/
|
||||||
|
var app = new Backbone.Application({
|
||||||
|
nameSpace: 'DE',
|
||||||
|
autoCreate: false,
|
||||||
|
controllers : [
|
||||||
|
'ApplicationController'
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
Common.Locale.apply(
|
||||||
|
function() {
|
||||||
|
require([
|
||||||
|
'documenteditor/forms/app/controller/ApplicationController',
|
||||||
|
'documenteditor/forms/app/view/ApplicationView',
|
||||||
|
'common/main/lib/util/utils',
|
||||||
|
'common/main/lib/util/LocalStorage',
|
||||||
|
'common/forms/lib/view/modals'
|
||||||
|
], function() {
|
||||||
|
app.start();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}, function(err) {
|
||||||
|
if (err.requireType == 'timeout' && !reqerr && window.requireTimeourError) {
|
||||||
|
reqerr = window.requireTimeourError();
|
||||||
|
window.alert(reqerr);
|
||||||
|
window.location.reload();
|
||||||
|
}
|
||||||
|
});
|
|
@ -206,22 +206,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal fade error" id="id-critical-error-dialog" tabindex="-1" role="dialog">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
<div class="modal-header">
|
|
||||||
<h4 id="id-critical-error-title"></h4>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body">
|
|
||||||
<p id="id-critical-error-message"></p>
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button id="id-critical-error-close" class="btn btn-sm btn-primary" data-dismiss="modal" aria-hidden="true">Close</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!--vendor-->
|
<!--vendor-->
|
||||||
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
|
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
|
||||||
<script type="text/javascript" src="../../../vendor/jquery.browser/dist/jquery.browser.min.js"></script>
|
<script type="text/javascript" src="../../../vendor/jquery.browser/dist/jquery.browser.min.js"></script>
|
||||||
|
|
226
apps/documenteditor/forms/index.html.deploy
Normal file
226
apps/documenteditor/forms/index.html.deploy
Normal file
|
@ -0,0 +1,226 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Documents</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="author" content="">
|
||||||
|
|
||||||
|
<link href="../../../apps/documenteditor/forms/resources/css/app-all.css" rel="stylesheet">
|
||||||
|
|
||||||
|
<!-- splash -->
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
.loadmask {
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
position: absolute;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
border: none;
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .brendpanel {
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
height: 48px;
|
||||||
|
background-color: #F7F7F7;
|
||||||
|
-webkit-box-shadow: inset 0 -1px 0 #dbdbdb, inset 0 1px 0 #FAFAFA;
|
||||||
|
box-shadow: inset 0 -1px 0 #dbdbdb, inset 0 1px 0 #FAFAFA;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .brendpanel > div {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .brendpanel .loading-logo {
|
||||||
|
max-width: 200px;
|
||||||
|
height: 24px;
|
||||||
|
margin-left: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .brendpanel .loading-logo > img {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100px;
|
||||||
|
max-height: 20px;
|
||||||
|
margin-top: 2px;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.loadmask > .brendpanel .doc-title {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .brendpanel .circle {
|
||||||
|
vertical-align: middle;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
border-radius: 12px;
|
||||||
|
margin: 4px 10px;
|
||||||
|
background: rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .placeholder {
|
||||||
|
background: #fbfbfb;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding-top: 56px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loadmask > .placeholder > .line {
|
||||||
|
height: 15px;
|
||||||
|
margin: 30px;
|
||||||
|
background: #e2e2e2;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
||||||
|
-moz-animation: flickerAnimation 2s infinite ease-in-out;
|
||||||
|
-o-animation: flickerAnimation 2s infinite ease-in-out;
|
||||||
|
animation: flickerAnimation 2s infinite ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes flickerAnimation {
|
||||||
|
0% { opacity:0.1; }
|
||||||
|
50% { opacity:1; }
|
||||||
|
100% { opacity:0.1; }
|
||||||
|
}
|
||||||
|
@-o-keyframes flickerAnimation{
|
||||||
|
0% { opacity:0.1; }
|
||||||
|
50% { opacity:1; }
|
||||||
|
100% { opacity:0.1; }
|
||||||
|
}
|
||||||
|
@-moz-keyframes flickerAnimation{
|
||||||
|
0% { opacity:0.1; }
|
||||||
|
50% { opacity:1; }
|
||||||
|
100% { opacity:0.1; }
|
||||||
|
}
|
||||||
|
@-webkit-keyframes flickerAnimation{
|
||||||
|
0% { opacity:0.1; }
|
||||||
|
50% { opacity:1; }
|
||||||
|
100% { opacity:0.1; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="embed-body theme-classic-light theme-type-light">
|
||||||
|
<script src="../../../../../apps/common/main/lib/util/htmlutils.js?__inline=true"></script>
|
||||||
|
<div id="loading-mask" class="loadmask"><div class="brendpanel"><div><div class="brand-logo loading-logo"><img src=""></div><div class="doc-title"></div><div class="circle"></div></div></div><div class="placeholder"><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div></div></div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var userAgent = navigator.userAgent.toLowerCase(),
|
||||||
|
check = function(regex){ return regex.test(userAgent); };
|
||||||
|
if (!check(/opera/) && (check(/msie/) || check(/trident/))) {
|
||||||
|
var m = /msie (\d+\.\d+)/.exec(userAgent);
|
||||||
|
if (m && parseFloat(m[1]) < 10.0) {
|
||||||
|
document.write(
|
||||||
|
'<div id="id-error-mask" class="errormask">',
|
||||||
|
'<div class="error-body" align="center">',
|
||||||
|
'<div id="id-error-mask-title" class="title">Your browser is not supported.</div>',
|
||||||
|
'<div id="id-error-mask-text">Sorry, ONLYOFFICE Document is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.</div>',
|
||||||
|
'</div>',
|
||||||
|
'</div>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getUrlParams() {
|
||||||
|
var e,
|
||||||
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
||||||
|
r = /([^&=]+)=?([^&]*)/g,
|
||||||
|
d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
|
||||||
|
q = window.location.search.substring(1),
|
||||||
|
urlParams = {};
|
||||||
|
|
||||||
|
while (e = r.exec(q))
|
||||||
|
urlParams[d(e[1])] = d(e[2]);
|
||||||
|
|
||||||
|
return urlParams;
|
||||||
|
}
|
||||||
|
|
||||||
|
function encodeUrlParam(str) {
|
||||||
|
return str.replace(/"/g, '"')
|
||||||
|
.replace(/'/g, ''')
|
||||||
|
.replace(/</g, '<')
|
||||||
|
.replace(/>/g, '>');
|
||||||
|
}
|
||||||
|
|
||||||
|
var params = getUrlParams(),
|
||||||
|
lang = (params["lang"] || 'en').split(/[\-\_]/)[0],
|
||||||
|
logo = params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : null;
|
||||||
|
|
||||||
|
window.frameEditorId = params["frameEditorId"];
|
||||||
|
window.parentOrigin = params["parentOrigin"];
|
||||||
|
var elem = document.querySelector('.loading-logo');
|
||||||
|
if (elem && logo) {
|
||||||
|
elem.style.backgroundImage= 'none';
|
||||||
|
var img = document.querySelector('.loading-logo img');
|
||||||
|
img && img.setAttribute('src', logo);
|
||||||
|
img.style.opacity = 1;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="editor_sdk" class="viewer" style="overflow: hidden;" tabindex="-1"></div>
|
||||||
|
|
||||||
|
<div class="overlay-controls" style="margin-left: -32px">
|
||||||
|
<ul class="left">
|
||||||
|
<li id="id-btn-zoom-in"><button class="overlay svg-icon zoom-up"></button></li>
|
||||||
|
<li id="id-btn-zoom-out"><button class="overlay svg-icon zoom-down"></button></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="toolbar" id="toolbar">
|
||||||
|
<div class="group left">
|
||||||
|
<div class="margin-right-large"><a id="header-logo" class="brand-logo" href="http://www.onlyoffice.com/" target="_blank"></a></div>
|
||||||
|
<span id="id-btn-prev-field" class="margin-right-small"></span>
|
||||||
|
<span id="id-btn-next-field" class="margin-right-large"></span>
|
||||||
|
<span id="id-btn-clear-fields"></span>
|
||||||
|
</div>
|
||||||
|
<div class="group center">
|
||||||
|
<span id="title-doc-name"></span>
|
||||||
|
</div>
|
||||||
|
<div class="group right">
|
||||||
|
<div id="id-pages" class="item margin-right-small" style="vertical-align: middle;">
|
||||||
|
<div id="page-number" style="display: inline-block; vertical-align: middle;"></div><span class="text" id="pages" tabindex="-1">of 1</span>
|
||||||
|
</div>
|
||||||
|
<div id="id-submit-group" style="display: inline-block;"></div>
|
||||||
|
<span id="box-tools"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript" src="../../../vendor/jquery.browser/dist/jquery.browser.min.js"></script>
|
||||||
|
|
||||||
|
<!--application-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
var isBrowserSupported = function() {
|
||||||
|
return ($.browser.msie && parseFloat($.browser.version) > 9) ||
|
||||||
|
($.browser.chrome && parseFloat($.browser.version) > 7) ||
|
||||||
|
($.browser.safari && parseFloat($.browser.version) > 4) ||
|
||||||
|
($.browser.opera && parseFloat($.browser.version) > 10.4) ||
|
||||||
|
($.browser.mozilla && parseFloat($.browser.version) > 3.9);
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!isBrowserSupported()){
|
||||||
|
document.write(
|
||||||
|
'<div id="id-error-mask" class="errormask">',
|
||||||
|
'<div class="error-body" align="center">',
|
||||||
|
'<div id="id-error-mask-title" class="title">Your browser is not supported.</div>',
|
||||||
|
'<div id="id-error-mask-text">Sorry, ONLYOFFICE Document is currently only supported in the latest versions of the Chrome, Firefox, Safari or Internet Explorer web browsers.</div>',
|
||||||
|
'</div>',
|
||||||
|
'</div>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script data-main="app" src="../../../vendor/requirejs/require.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue