onReady should only be called once, onContentUpdate should be able to throw and there should be a generic normalizer

pull/1/head
Caleb James DeLisle 7 years ago
parent 7230c780a1
commit 1e5bc5da14

@ -47,9 +47,8 @@ define([
var create = function (options, cb) { var create = function (options, cb) {
var evContentUpdate = Util.mkEvent(); var evContentUpdate = Util.mkEvent();
var evEditableStateChange = Util.mkEvent(); var evEditableStateChange = Util.mkEvent();
var evOnReady = Util.mkEvent(); var evOnReady = Util.mkEvent(true);
var evOnDefaultContentNeeded = Util.mkEvent(); var evOnDefaultContentNeeded = Util.mkEvent();
var evCreated = Util.mkEvent(true);
var evStart = Util.mkEvent(true); var evStart = Util.mkEvent(true);
@ -69,7 +68,20 @@ define([
var titleRecommender = function () { return false; }; var titleRecommender = function () { return false; };
var contentGetter = function () { return UNINITIALIZED; }; var contentGetter = function () { return UNINITIALIZED; };
var normalize = function (x) { return x; }; var normalize0 = function (x) { return x; };
var normalize = function (x) {
x = normalize0(x);
if (Array.isArray(x)) {
var outa = Array.prototype.slice.call(x);
if (typeof(outa[outa.length-1].metadata) === 'object') { outa.pop(); }
return outa;
} else if (typeof(x) === 'object') {
var outo = $.extend({}, x);
delete outo.metadata;
return outo;
}
};
var extractMetadata = function (content) { var extractMetadata = function (content) {
if (Array.isArray(content)) { if (Array.isArray(content)) {
@ -113,6 +125,15 @@ define([
} }
}; };
var contentUpdate = function (newContent) {
try {
evContentUpdate.fire(newContent);
} catch (e) {
console.log(e.stack);
Cryptpad.errorLoadingScreen(e.message);
}
};
var onRemote = function () { var onRemote = function () {
if (state !== STATE.READY) { return; } if (state !== STATE.READY) { return; }
@ -124,7 +145,7 @@ define([
cpNfInner.metadataMgr.updateMetadata(meta); cpNfInner.metadataMgr.updateMetadata(meta);
newContent = normalize(newContent); newContent = normalize(newContent);
evContentUpdate.fire(newContent); contentUpdate(newContent);
if (!readOnly) { if (!readOnly) {
var newContent2NoMeta = normalize(contentGetter()); var newContent2NoMeta = normalize(contentGetter());
@ -212,7 +233,7 @@ define([
var newContent = JSON.parse(newContentStr); var newContent = JSON.parse(newContentStr);
cpNfInner.metadataMgr.updateMetadata(extractMetadata(newContent)); cpNfInner.metadataMgr.updateMetadata(extractMetadata(newContent));
newContent = normalize(newContent); newContent = normalize(newContent);
evContentUpdate.fire(newContent); contentUpdate(newContent);
if (!readOnly) { if (!readOnly) {
var newContent2NoMeta = normalize(contentGetter()); var newContent2NoMeta = normalize(contentGetter());
@ -270,7 +291,7 @@ define([
if (readOnly) { return; } if (readOnly) { return; }
toolbar.$drawer.append( toolbar.$drawer.append(
common.createButton('import', true, options, function (c, f) { common.createButton('import', true, options, function (c, f) {
evContentUpdate.fire(fi(c, f)); contentUpdate(fi(c, f));
onLocal(); onLocal();
}) })
); );
@ -376,7 +397,7 @@ define([
onRemote: onRemote, onRemote: onRemote,
setHistory: setHistoryMode, setHistory: setHistoryMode,
applyVal: function (val) { applyVal: function (val) {
evContentUpdate.fire(JSON.parse(val) || ["BODY",{},[]]); contentUpdate(JSON.parse(val) || ["BODY",{},[]]);
}, },
$toolbar: $(toolbarContainer) $toolbar: $(toolbarContainer)
}; };
@ -428,6 +449,7 @@ define([
// Register to be called when the pad has completely loaded // Register to be called when the pad has completely loaded
// (just before the loading screen is removed). // (just before the loading screen is removed).
// This is only called ONCE.
onReady: evOnReady.reg, onReady: evOnReady.reg,
// Register to be called when a new pad is being setup and default content is // Register to be called when a new pad is being setup and default content is
@ -449,7 +471,7 @@ define([
// Set a function which will normalize the content returned by the content getter // Set a function which will normalize the content returned by the content getter
// such as removing extra fields. // such as removing extra fields.
setNormalizer: function (n) { normalize = n; }, setNormalizer: function (n) { normalize0 = n; },
// Call the CryptPad feedback API. // Call the CryptPad feedback API.
feedback: feedback, feedback: feedback,
@ -468,9 +490,7 @@ define([
title: title title: title
} }
})); }));
evCreated.fire();
}); });
return evCreated.reg;
}; };
return { create: create }; return { create: create };
}); });
Loading…
Cancel
Save