cryptpad/www/examples/render/main.js

105 lines
2.9 KiB
JavaScript
Raw Normal View History

define([
'jquery',
'/api/config',
2016-06-06 10:14:07 +00:00
'/bower_components/chainpad-netflux/chainpad-netflux.js',
'/bower_components/chainpad-crypto/crypto.js',
'/bower_components/marked/marked.min.js',
'/bower_components/hyperjson/hyperjson.js',
2016-06-21 13:17:09 +00:00
'/common/cryptpad-common.js',
'/bower_components/diff-dom/diffDOM.js',
], function ($, Config, Realtime, Crypto, Marked, Hyperjson, Cryptpad) {
var DiffDom = window.diffDOM;
2016-06-21 13:17:09 +00:00
var secret = Cryptpad.getSecrets();
// set markdown rendering options :: strip html to prevent XSS
Marked.setOptions({
2016-06-21 13:17:09 +00:00
sanitize: true
});
var module = window.APP = { };
var $target = module.$target = $('#target');
var config = {
websocketURL: Config.websocketURL,
2016-06-21 13:17:09 +00:00
channel: secret.channel,
crypto: Crypto.createEncryptor(secret.key)
};
2016-02-15 15:07:46 +00:00
var draw = window.draw = (function () {
var target = $target[0],
inner = $target.find('#inner')[0];
if (!target) { throw new Error(); }
var DD = new DiffDom({});
return function (md) {
var rendered = Marked(md||"");
// make a dom
var New = $('<div id="inner">'+rendered+'</div>')[0];
var patches = (DD).diff(inner, New);
DD.apply(inner, patches);
return patches;
};
}());
var redrawTimeout;
var lazyDraw = function (md) {
if (redrawTimeout) { clearTimeout(redrawTimeout); }
redrawTimeout = setTimeout(function () {
draw(md);
}, 450);
};
var initializing = true;
2017-05-04 14:16:09 +00:00
config.onInit = function (info) {
2016-06-21 13:17:09 +00:00
window.location.hash = info.channel + secret.key;
module.realtime = info.realtime;
};
2016-09-01 13:54:21 +00:00
var getContent = function (userDoc) {
try {
var parsed = JSON.parse(userDoc);
if (typeof(parsed.content) !== 'string') {
throw new Error();
}
return parsed.content;
} catch (err) {
return userDoc;
}
};
// when your editor is ready
2017-05-04 14:16:09 +00:00
config.onReady = function () {
console.log("Realtime is ready!");
var userDoc = module.realtime.getUserDoc();
2016-09-01 13:54:21 +00:00
lazyDraw(getContent(userDoc));
initializing = false;
};
// when remote editors do things...
2017-05-04 14:16:09 +00:00
config.onRemote = function () {
if (initializing) { return; }
var userDoc = module.realtime.getUserDoc();
2016-09-01 13:54:21 +00:00
lazyDraw(getContent(userDoc));
};
2017-05-04 14:16:09 +00:00
config.onLocal = function () {
// we're not really expecting any local events for this editor...
/* but we might add a second pane in the future so that you don't need
a second window to edit your markdown */
if (initializing) { return; }
var userDoc = module.realtime.getUserDoc();
lazyDraw(userDoc);
};
2017-05-04 14:16:09 +00:00
config.onAbort = function () {
window.alert("Network Connection Lost");
};
2017-05-04 14:16:09 +00:00
Realtime.start(config);
});