cryptpad/www/convert/main.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-10-20 22:35:26 +08:00
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
//
// SPDX-License-Identifier: AGPL-3.0-or-later
2021-06-22 18:08:03 +08:00
// Load #1, load as little as possible because we are in a race to get the loading screen up.
define([
'/components/nthen/index.js',
2021-06-22 18:08:03 +08:00
'/api/config',
'/common/dom-ready.js',
'/common/sframe-common-outer.js'
], function (nThen, ApiConfig, DomReady, SFCommonO) {
// Loaded in load #2
nThen(function (waitFor) {
DomReady.onReady(waitFor());
}).nThen(function (waitFor) {
SFCommonO.initIframe(waitFor, true);
}).nThen(function (/*waitFor*/) {
var category;
if (window.location.hash) {
category = window.location.hash.slice(1);
window.location.hash = '';
}
2021-10-20 14:51:21 +08:00
var addRpc = function (sframeChan, CryptPad, Utils) {
// X2T
sframeChan.on('Q_OO_CONVERT', function (obj, cb) {
2021-10-19 19:23:08 +08:00
obj.modal = 'x2t';
Utils.initUnsafeIframe(obj, cb);
});
};
2021-06-22 18:08:03 +08:00
var addData = function (obj) {
if (category) { obj.category = category; }
};
SFCommonO.start({
noRealtime: true,
addRpc: addRpc,
2021-06-22 18:08:03 +08:00
addData: addData
});
});
});