mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
80 lines
2.9 KiB
JavaScript
80 lines
2.9 KiB
JavaScript
/*
|
|
*
|
|
* (c) Copyright Ascensio System Limited 2010-2017
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
function initEditor(docKey, mode, type) {
|
|
//mode for editor
|
|
window.mode = window.mode || mode || "view";
|
|
mode = window.mode;
|
|
|
|
//mode for editor
|
|
window.type = window.type || type || "desktop";
|
|
type = window.type;
|
|
|
|
//url for document
|
|
window.docUrl = document.getElementById("documentUrl").value;
|
|
|
|
//key for chaching and collaborate editing
|
|
window.docKey = window.docKey || docKey || key(docUrl);
|
|
docKey = window.docKey;
|
|
|
|
//type for document
|
|
var docType = docUrl.substring(docUrl.lastIndexOf(".") + 1).trim().toLowerCase();
|
|
//type for editor
|
|
var documentType = getDocumentType(docType);
|
|
|
|
//creating object editing
|
|
new DocsAPI.DocEditor("placeholder",
|
|
{
|
|
type: type,
|
|
width: (type == "desktop" ? "100%" : undefined),
|
|
height: (type == "desktop" ? "100%" : undefined),
|
|
documentType: documentType,
|
|
document: {
|
|
title: docUrl,
|
|
url: docUrl,
|
|
fileType: docType,
|
|
key: docKey,
|
|
permissions: {
|
|
edit: true
|
|
}
|
|
},
|
|
editorConfig: {
|
|
mode: mode,
|
|
}
|
|
});
|
|
}
|
|
|
|
function key(k) {
|
|
var result = k.replace(new RegExp("[^0-9-.a-zA-Z_=]", "g"), "_") + (new Date()).getTime();
|
|
return result.substring(result.length - Math.min(result.length, 20));
|
|
};
|
|
|
|
var getDocumentType = function (ext) {
|
|
if (".doc.docx.docm.dot.dotx.dotm.odt.rtf.txt.html.htm.mht.pdf.djvu.fb2.epub.xps".indexOf(ext) != -1) return "text";
|
|
if (".xls.xlsx.xlsm.xlt.xltx.xltm.ods.csv".indexOf(ext) != -1) return "spreadsheet";
|
|
if (".pps.ppsx.ppsm.ppt.pptx.pptm.pot.potx.potm.odp".indexOf(ext) != -1) return "presentation";
|
|
return null;
|
|
}; |