refactor cryptpad.ready to use nthen

This commit is contained in:
ansuz 2017-09-14 11:23:37 +02:00
parent 4d688289cc
commit 513f8e73d4

View File

@ -20,9 +20,10 @@ define([
'/common/pinpad.js', '/common/pinpad.js',
'/customize/application_config.js', '/customize/application_config.js',
'/common/media-tag.js', '/common/media-tag.js',
'/bower_components/nthen/index.js',
], function ($, Config, Messages, Store, Util, Hash, UI, History, UserList, Title, Metadata, ], function ($, Config, Messages, Store, Util, Hash, UI, History, UserList, Title, Metadata,
Messaging, CodeMirror, Files, FileCrypto, Realtime, Clipboard, Messaging, CodeMirror, Files, FileCrypto, Realtime, Clipboard,
Pinpad, AppConfig, MediaTag) { Pinpad, AppConfig, MediaTag, Nthen) {
// Configure MediaTags to use our local viewer // Configure MediaTags to use our local viewer
if (MediaTag && MediaTag.PdfPlugin) { if (MediaTag && MediaTag.PdfPlugin) {
@ -2071,54 +2072,12 @@ define([
return function (f) { return function (f) {
if (initialized) { if (initialized) {
return void window.setTimeout(function () { return void setTimeout(function () { f(void 0, env); });
f(void 0, env);
});
}
var block = 0;
var cb = function () {
block--;
if (!block) {
initialized = true;
updateLocalVersion();
common.addTooltips();
f(void 0, env);
if (typeof(window.onhashchange) === 'function') { window.onhashchange(); }
}
};
if (sessionStorage[newPadNameKey]) {
common.initialName = sessionStorage[newPadNameKey];
delete sessionStorage[newPadNameKey];
}
if (sessionStorage[newPadPathKey]) {
common.initialPath = sessionStorage[newPadPathKey];
delete sessionStorage[newPadPathKey];
} }
common.onFriendRequest = function (confirmText, cb) { var proxy;
common.confirm(confirmText, cb, null, true); var network;
}; var provideFeedback = function () {
common.onFriendComplete = function (data) {
common.log(data.logText);
};
Store.ready(function (err, storeObj) {
store = common.store = env.store = storeObj;
common.addDirectMessageHandler(common);
var proxy = getProxy();
var network = getNetwork();
network.on('disconnect', function () {
Realtime.setConnectionState(false);
});
network.on('reconnect', function () {
Realtime.setConnectionState(true);
});
if (Object.keys(proxy).length === 1) { if (Object.keys(proxy).length === 1) {
feedback("FIRST_APP_USE", true); feedback("FIRST_APP_USE", true);
} }
@ -2141,8 +2100,40 @@ define([
} }
common.reportScreenDimensions(); common.reportScreenDimensions();
common.reportLanguage(); common.reportLanguage();
};
$(function() { Nthen(function (waitFor) {
if (sessionStorage[newPadNameKey]) {
common.initialName = sessionStorage[newPadNameKey];
delete sessionStorage[newPadNameKey];
}
if (sessionStorage[newPadPathKey]) {
common.initialPath = sessionStorage[newPadPathKey];
delete sessionStorage[newPadPathKey];
}
common.onFriendRequest = function (confirmText, cb) {
common.confirm(confirmText, cb, null, true);
};
common.onFriendComplete = function (data) {
common.log(data.logText);
};
}).nThen(function (waitFor) {
Store.ready(waitFor(function (err, storeObj) {
store = common.store = env.store = storeObj;
common.addDirectMessageHandler(common);
proxy = getProxy();
network = getNetwork();
network.on('disconnect', function () {
Realtime.setConnectionState(false);
});
network.on('reconnect', function () {
Realtime.setConnectionState(true);
});
provideFeedback();
}), common);
}).nThen(function (waitFor) {
$(waitFor());
}).nThen(function (waitFor) {
// Race condition : if document.body is undefined when alertify.js is loaded, Alertify // Race condition : if document.body is undefined when alertify.js is loaded, Alertify
// won't work. We have to reset it now to make sure it uses a correct "body" // won't work. We have to reset it now to make sure it uses a correct "body"
UI.Alertify.reset(); UI.Alertify.reset();
@ -2164,19 +2155,16 @@ define([
document.location.reload(); document.location.reload();
return; return;
} }
if (parsedNew) { if (parsedNew) { oldHref = newHref; }
oldHref = newHref;
}
}; };
if (PINNING_ENABLED && isLoggedIn()) { if (PINNING_ENABLED && isLoggedIn()) {
console.log("logged in. pads will be pinned"); console.log("logged in. pads will be pinned");
block++; var w0 = waitFor();
Pinpad.create(network, proxy, function (e, call) { Pinpad.create(network, proxy, function (e, call) {
if (e) { if (e) {
console.error(e); console.error(e);
return cb(); return w0();
} }
console.log('RPC handshake complete'); console.log('RPC handshake complete');
@ -2187,7 +2175,7 @@ define([
common.account.limit = limit; common.account.limit = limit;
localStorage.plan = common.account.plan = plan; localStorage.plan = common.account.plan = plan;
common.account.note = note; common.account.note = note;
cb(); w0();
}); });
common.arePinsSynced(function (err, yes) { common.arePinsSynced(function (err, yes) {
@ -2208,43 +2196,42 @@ define([
console.log('pinning disabled'); console.log('pinning disabled');
} }
block++; var w1 = waitFor();
require([ require([
'/common/rpc.js', '/common/rpc.js',
], function (Rpc) { ], function (Rpc) {
Rpc.createAnonymous(network, function (e, call) { Rpc.createAnonymous(network, function (e, call) {
if (e) { if (e) {
console.error(e); console.error(e);
return void cb(); return void w1();
} }
anon_rpc = common.anon_rpc = env.anon_rpc = call; anon_rpc = common.anon_rpc = env.anon_rpc = call;
cb(); w1();
}); });
}); });
// Everything's ready, continue... // Everything's ready, continue...
if($('#pad-iframe').length) { if($('#pad-iframe').length) {
block++; var w2 = waitFor();
var $iframe = $('#pad-iframe'); var $iframe = $('#pad-iframe');
var iframe = $iframe[0]; var iframe = $iframe[0];
var iframeDoc = iframe.contentDocument || iframe.contentWindow.document; var iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
if (iframeDoc.readyState === 'complete') { if (iframeDoc.readyState === 'complete') {
cb(); return void w2();
return;
} }
$iframe.load(cb); $iframe.load(w2); //cb);
return;
} }
}).nThen(function () {
block++; updateLocalVersion();
cb(); common.addTooltips();
f(void 0, env);
if (typeof(window.onhashchange) === 'function') { window.onhashchange(); }
}); });
}, common);
}; };
}()); }());
// MAGIC that happens implicitly
$(function () { $(function () {
Messages._applyTranslation(); Messages._applyTranslation();
}); });