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([
|
2023-01-07 19:49:46 +08:00
|
|
|
|
'/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) {
|
2021-08-16 23:44:13 +08:00
|
|
|
|
// 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-08-16 23:44:13 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
2021-06-22 18:08:03 +08:00
|
|
|
|
var addData = function (obj) {
|
|
|
|
|
if (category) { obj.category = category; }
|
|
|
|
|
};
|
|
|
|
|
SFCommonO.start({
|
|
|
|
|
noRealtime: true,
|
2021-08-16 23:44:13 +08:00
|
|
|
|
addRpc: addRpc,
|
2021-06-22 18:08:03 +08:00
|
|
|
|
addData: addData
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|