var defaultsettings = { fontsize: "16px", lineheight: "24px", margins: "20%", savedelay: 2000, defaultpreviewinsplit: false, tagautocomplete: false, enablenetwork: true, titlebydefault: false, linksinnewtab: true, colors: true, password: "", sync: false, tagsinlists: true, tagfilter: "", uselinkpopup: true }; //builtin var markerslist = ["* ", "- ", " * ", " - ", ">> ", "> ", "=> ", "— ", "[ ] ", " ", "• ", "- [ ]"]; var codelanguages = ["xml", "js", "sql"]; var tagmark = "+"; // globals var currentnote = null; var fileindex = 0; var workerid = null; var backup = ""; var localdata = null; var saved = true; var lastsaved = ""; var pending = false; var settings = null; var tags = null; var linkpopupid = null; var titlemap = {}; var stat = { ses: { q: 0, t: timestamp(), d: 0 }, cur: { q: 0, t: timestamp(), d: 0 } } var commands = [ { hint: "Close menu" }, { shortcut: "ctrl+shift+P", hint: "Command palette", allowunsaved: true, action: commandpalette, excludepalette: true }, { shortcut: "ctrl+p", hint: "Show notes list", action: searchandloadnote }, { shortcut: "ctrl+n", hint: "New note", action: startnewnote }, { shortcut: "ctrl+shift+N", hint: "Quick new note", action: quicknewnote }, { hint: "Force save", action: save, shortcut: "ctrl+s", allowunsaved: true }, { hint: "Share note", action: share, allowunsaved: true }, { hint: "Share note (html)", action: sharehtml }, { shortcut: "ctrl+g", hint: "Find in notes", action: showgrep }, { shortcut: "ctrl+i", hint: "Toggle title", action: toggletitle, allowunsaved: true }, { shortcut: "ctrl+m", hint: "Toggle preview", action: togglepreview, allowunsaved: true }, { shortcut: "ctrl+shift+M", hint: "Toggle preview with merged subnotes", action: togglepreviewwithsubs, allowunsaved: true }, { shortcut: "ctrl+d", hint: "Delete note", action: deletecurrentnote }, { hint: "Restore current note", action: restore }, { hint: "Insert markdown header", action: insertheader, allowunsaved: true }, { hint: "Show help", action: showhelp }, { hint: "Search tags", action: searchtags, shortcut: "ctrl+shift+T" }, { hint: "Toggle split view", action: togglesplit }, { hint: "Load previous note", action: loadprevious, shortcut: "ctrl+b" }, { hint: "Load next note", action: loadnext, shortcut: "ctrl+shift+B" }, { hint: "Settings", action: editsettings }, { hint: "Change a setting", action: changesetting }, { hint: "Restore default settings", action: restoresettings }, { hint: "Note outline", action: showoutline, shortcut: "ctrl+o", allowunsaved: true }, { hint: "Show connected notes", action: shownotelinks, shortcut: "ctrl+l" }, { hint: "Add tag filter", action: addtagfilter, shortcut: "ctrl+shift+F", }, { hint: "Show stats", action: showinfo, shortcut: "ctrl+w", allowunsaved: true }, { hint: "Toggle spell check", action: togglespellcheck, allowunsaved: true, shortcut: "F7" }, { hint: "Create subnote from selection", action: createsubnote }, { hint: "Merge subnote", action: includesub }, { hint: "Comment selection", action: comment }, { hint: "Download current note", action: downloadnote }, { hint: "Download current note with merged subnotes", action: downloadnotewithsubs }, { hint: "Download all notes (md files in zip archive)", action: downloadnotes, shortcut: "ctrl+shift+S" }, { hint: "Download all notes (html files in zip archive)", action: downloadhtmlnotes }, { hint: "Download all notes (json file)", action: downloadnotesjson }, { hint: "Download all notes (encrypted json file)", action: downloadencrypted, remoteonly: true }, { hint: "Insert text in todo", action: inserttodo }, { hint: "Send an SMS", action: sms, remoteonly: true, allowunsaved: true }, { hint: "Edit pgp keys", action: editpgpkeys }, { hint: "Decrypt note", action: decryptnote }, { hint: "Show upcoming events", action: showupcomingevents, remoteonly: true, shortcut: "ctrl+e" }, { hint: "Restore deleted note", action: restoredeleted }, { hint: "Notes by size", action: notesbysize }, { hint: "Replace", shortcut: "ctrl+h", action: searchandreplace }, { hint: "Sort todo.txt list", action: sorttodotxt }, { hint: "Sort text", action: sortselection, allowunsaved: true }, { hint: "Show backlinks", action: backlinks }]; var snippets = [ { command: "/code", hint: "Code block", insert: "```\n\n```", cursor: -4 }, { command: "/date", hint: "Current date", insert: (new Date).toISOString().substring(0, 10), cursor: 0 }, { command: "/bonjour", hint: "Standard answer (fr)", insert: "Bonjour ,\n\n\n\nBien cordialement,\nSimon", cursor: -29 }, { command: "/hello", hint: "Standard answer (en)", insert: "Hello ,\n\n\n\nKind regards,\nSimon", cursor: -24 }, { command: "/-", hint: "Dialog mark", insert: "— ", cursor: 0 }, { command: "/comment", hint: "Comment", insert: "", cursor: -4 }]; function seteditorcontent(content, silent) { md.value = content; applycolors(); if (!silent) { datachanged(); } } function encryptstring(str) { console.log("encrypting..."); var key = localStorage.getItem("pgpkeys").split("-----BEGIN PGP PRIVATE KEY BLOCK-----")[0]; var publicKey = null; return openpgp.readKey({ armoredKey: key }) .then(res => { publicKey = res; return openpgp.createMessage({ text: str }); }) .then(message => { return openpgp.encrypt({ message: message, encryptionKeys: publicKey }); }); } function decryptstring(str) { if (!str.startsWith("-----BEGIN PGP MESSAGE-----")) { // console.log(str + ": string is not encrypted"); return Promise.resolve(str); } console.log("decrypting..."); var key = localStorage.getItem("pgpkeys").split("-----END PGP PUBLIC KEY BLOCK-----")[1]; var privateKey = null; return openpgp.readKey({ armoredKey: key }) .then(res => { privateKey = res; return openpgp.readMessage({ armoredMessage: str }) }) .then(message => { return openpgp.decrypt({ message: message, decryptionKeys: privateKey }); }) .then(decrypted => { const chunks = []; for (const chunk of decrypted.data) { chunks.push(chunk); } return chunks.join(''); }) } function sms() { var messsage = prompt("Type your message:"); if (messsage) { queryremote({action: "sms", data: messsage}) .then(data => { showtemporaryinfo("SMS sent. Result: '" + data.result + "'"); }); } } function getnote(title) { return localdata.find(note => note.title == title); } function getrangecontent(range) { return md.value.substring(range.start, range.end); } function createsubnote() { var title = prompt("Subnote tite:"); if (!title) { showtemporaryinfo("No title provided"); setpos(md.selectionStart); md.focus(); } else if (getnote(title)) { showtemporaryinfo("'" + title + "' already exists"); setpos(md.selectionStart); md.focus(); } else { var range = { start: md.selectionStart, end: md.selectionEnd } var content = getrangecontent(range); var newnote = { title: title, content: content } localdata.unshift(newnote); seteditorcontent(md.value.substring(0, range.start) + "[[" + title + "]]" + md.value.substring(range.end)); } } function comment() { seteditorcontent(md.value.substring(0, md.selectionStart) + "" + md.value.substring(md.selectionEnd)); } function includesub() { var range = linkrangeatpos(); if (range) { var title = linkatpos(); if (confirm("Replace [[" + title + "]] by its content?")) { var subnote = getnote(title); seteditorcontent(md.value.substring(0, range.start) + subnote.content + md.value.substring(range.end)); if (confirm("Delete '" + title + "'?")) { deletenote(subnote); } } } } function togglespellcheck() { md.spellcheck = !md.spellcheck; } function formatsize(size) { var unit = "b"; if (size > 1024) { size /= 1024; unit = "kb"; } if (size > 1024) { size /= 1024; unit = "mb"; } return size.toFixed(2) + " " + unit; } function pospercent() { return md.value.length > 0 ?(100 * md.selectionStart / md.value.length).toFixed(2) : 100; } function showinfo() { var tags = gettags(currentnote); showtemporaryinfo( [ "sync: " + (settings.sync ? "en" : "dis") + "abled", "title: " + currentnote.title, "saved: " + saved + (lastsaved? " (" + lastsaved + ")": ""), "line count: " + md.value.split("\n").length, "word count: " + getwords(), "cursor position: " + md.selectionStart + " (" + pospercent() + "%)", (tags ? "tags: " + tags : ""), "current filter: " + settings.tagfilter || "", "current note start: " + stat.cur.t, "current note queries: " + stat.cur.q, "current note data sent: " + formatsize(stat.cur.d), "session start: " + stat.ses.t, "session queries: " + stat.ses.q, "session data sent: " + formatsize(stat.ses.d), "notes count: " + localdata.length, "spell check: " + (md.spellcheck ? "en" : "dis") + "abled" ].join("\n")); } function savesettings() { window.localStorage.setItem("settings", JSON.stringify(settings)); } function removetaghint() { return "Remove tag filter " + tagmark + settings.tagfilter; } function addtagfilter() { var command = commands.find(c => c.action == addtagfilter); if (!settings.tagfilter) { tagslist() .then(t => { settings.tagfilter = t; savesettings(); command.hint = removetaghint(); setwindowtitle(); }); } else { settings.tagfilter = ""; savesettings(); command.hint = "Add tag filter"; setwindowtitle(); } } function descendants(note) { var list = [note]; var result = []; while (list.length) { var current = list.shift(); if (result.indexOf(current) == -1) { result.push(current); list = list.concat(children(current)); } } return result; } function children(note) { return (note.content .match(/\[\[([^\]]*)\]\]/g) || []) .map(l => l.replace("[[", "").replace("]]", "")) .filter(l => !l.includes("(deleted)")) .map(l => getnote(l)); } function parents(note) { return localdata .filter(n => n.content.indexOf("[[" + note.title + "]]") != -1); } function connected(note) { var list = [note]; var result = []; while (list.length) { var current = list.shift(); if (result.indexOf(current) == -1) { result.push(current); list = list.concat(children(current)).concat(parents(current)); } } return result; } function toggleeditor(hidden) { md.hidden = hidden; if (settings.colors) { colored.hidden = hidden; } } function id(note) { return localdata.indexOf(note); } function shownotelinks() { if (settings.enablenetwork) { networkpage.hidden = false; toggleeditor(true); var nodes = []; var edges = []; var list = [currentnote]; while (list.length) { var current = list.shift(); if (!nodes.find(n => n.id == id(current))) { nodes.push( { id: id(current), label: current.title }); var buddies = children(current).concat(parents(current)); list = list.concat(buddies); buddies. forEach(buddy => { if (!edges.find(edge => (edge.to == id(current) && edge.from == id(buddy)) || (edge.to == id(buddy) && edge.from == id(current)))) { edges.push({ from: id(current), to: id(buddy) }); } }); } } var data = { nodes: nodes, edges: edges }; // todo: use theme colors var options = { nodes: { color: { background: "white", border: "black", }, font: { color: "black", size: 16 } } }; var graph = new vis.Network(network, data, options); graph.on("click", function(event) { networkpage.hidden = true; toggleeditor(false); loadnote(nodes.find(n => n.id == event.nodes[0]).label); }); graph.setSelection( { nodes : [id(currentnote)] }); } else { searchinlist(connected(currentnote).map(n => n.title)) .then(loadnote); } } function showoutline() { var outline = {}; var pos = 0; md.value.split("\n").forEach((line, index, lines) => { pos += line.length + 1; if (line.startsWith("#")) { line = line .replace("# ", "") .replace(/#/g, "\xa0".repeat(4)); outline[line] = pos; } else if (line == "---" && index != 0 && index != 3) { var next = lines.find((current, i) => { return i > index && current != ""; }); if (next) { var nbcar = 80; next = next.length < nbcar ? next : next.substring(0, nbcar) + "..."; outline[next] = pos; } } }); var keys = Object .keys(outline) .sort((a,b) => { return outline[a] - outline[b]; }); searchinlist(keys) .then(line => { md.setSelectionRange(outline[line], outline[line]); md.focus(); }); } function linkrangeatpos() { var start = md.value.lastIndexOf("[[", md.selectionStart); if (start == -1 || md.value.substring(start, md.selectionStart).indexOf("\n") != -1) return null var end = md.value.indexOf("]]", md.selectionStart); if (end == -1 || md.value.substring(md.selectionStart, end).indexOf("\n") != -1) return null; return { start: start, end: end + 2 }; } function linkatpos() { var range = linkrangeatpos(); if (range) { return md.value.substring(range.start + 2, range.end - 2); } return null; } function tagatpos() { if (md.value.lastIndexOf("tags: ", md.selectionStart) < md.value.lastIndexOf("\n", md.selectionStart) || md.selectionStart < 6) { return null; } var start = md.value.lastIndexOf(" ", md.selectionStart); if (start == -1 || md.value.substring(start, md.selectionStart).indexOf("\n") != -1) return ""; var eol = md.value.indexOf("\n", md.selectionStart); var end = md.value.indexOf(",", md.selectionStart); if (end == -1 || eol < end) { end = eol; } return md.value.substring(start + 1, end); } function removelinkdialog() { if (typeof linkdialog != "undefined") { notepage.removeChild(linkdialog); } } function showlinkdialog(link) { var div = document.createElement("div"); div.setAttribute("style", "top:" + event.pageY + "px;left:" + event.pageX + "px"); div.setAttribute("id", "linkdialog"); var a = document.createElement("a"); a.setAttribute("id", "linkelt"); if (link.startsWith("http")) { a.setAttribute("href", link); a.setAttribute("target", "_blank"); div.onclick = removelinkdialog; if (settings.sync) { if (titlemap[link]) { a.innerHTML = titlemap[link]; } else { a.innerText = link; queryremote({action: "title", data: link}) .then(res => { if (res.title) { a.innerHTML = res.title; titlemap[link] = res.title; localStorage.setItem("titlemap", JSON.stringify(titlemap)); } }); } } else { a.innerText = link; } } else { a.setAttribute("href", "#"); a.innerText = link; div.onclick = function() { removelinkdialog(); loadnote(link); }; } div.appendChild(a); clearTimeout(linkpopupid); linkpopupid = setTimeout(removelinkdialog, 3000); notepage.appendChild(div); } function clickeditor() { if (!saved) { console.log("Not saved, ctrl+click ignored."); return; } if (event.ctrlKey) { var link = linkatpos(); var tag = tagatpos(); var word = wordatpos(); if (link) { loadnote(link); } else if (tag) { tagslist(); searchinlist(tags[tag.toLowerCase()]) .then(loadnote); } else if (word.startsWith("http")) { window.open(word, '_blank'); } } else if (settings.uselinkpopup) { removelinkdialog(); var link = linkatpos(); if (link) { showlinkdialog(link); } else { var word = wordatpos(); if (word.startsWith("http")) { showlinkdialog(word); } } } } function restoresettings() { if (confirm("Restore default settings?")) { settings = defaultsettings; savesettings(); loadsettings(); } } function editsettings() { bindfile( { title: "settings.json", content: JSON.stringify(settings, null, " ") }); } function editsetting(name) { if (typeof settings[name] != "undefined") { var value = settings[name]; var type = typeof value; if (type != "undefined") { value = prompt(name, value); if (value !== null) { if (type == "number") { value = parseInt(value); } else if (type == "boolean") { value = value === "true"; } settings[name] = value; savesettings(); loadsettings(); } } } } function changesetting() { searchinlist(Object.keys(settings).map(name => name + ": " + settings[name])) .then(setting => { editsetting(setting.split(":").shift()); }); } function showupcomingevents() { queryremote({action: "cal"}) .then(data => { if (!data.ics) { throw "could not retrieve events"; } // keep future only var events = ics2json(data.ics) .filter(e => e.DTSTART >= new Date); // sort by years and months var sorted = {}; events.forEach(event => { var date = new Date(event.DTSTART); if (date >= new Date) { event.readabledate = date.toLocaleDateString('fr-FR', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }); var month = event.readabledate.split(" ")[2]; var year = event.readabledate.split(" ")[3]; sorted[year] = sorted[year] || {}; sorted[year][month] = sorted[year][month] || []; sorted[year][month].push(event); } }); // build output var content = ""; for (var year in sorted) { content += "# " + year + "\n"; for (var month in sorted[year]) { content += "## " + month.charAt(0).toUpperCase() + month.slice(1) + "\n"; for (var i in sorted[year][month]) { var event = sorted[year][month][i]; if (i > 0 && event.DTSTART.getDate() != sorted[year][month][i-1].DTSTART.getDate() && event.DTSTART.getDay() <= sorted[year][month][i-1].DTSTART.getDay()) { content += "\n\n"; } content += event.readabledate.split(" ")[0] + " " + event.readabledate.split(" ")[1] + ": " + event.SUMMARY + "\n"; } } } bindfile( { title: "Upcoming events", content }); togglepreview(); }) .catch(remotecallfailed); } function decryptnote() { decryptstring(md.value) .then(decrypted => { seteditorcontent(decrypted); resize(); }); } function editpgpkeys() { bindfile( { title: "pgpkeys", content: localStorage.getItem("pgpkeys") || "" }); } function showtemporaryinfo(info) { alert(info); } function getwords() { return md.value.split(/\s+\b/).length; } function issplit() { return window.location !== window.parent.location; } function togglesplit() { if (issplit()) { window.parent.location = "index.html"; } else { window.location = "split.html"; } } function tagslist() { tags = {}; localdata .forEach(n => { var ts = gettags(n); ts.forEach(t => { tags[t] = tags[t] || []; tags[t].push(n.title); }); }); return searchinlist(Object.keys(tags).sort()); } function searchtags() { tagslist() .then(tag => searchinlist(tags[tag])) .then(loadnote); } function gettags(note) { var i = note.content.indexOf("tags: "); if (i > -1) { var j = note.content.indexOf("\n", i); return note.content.substring(i + 6, j) .split(",") .map(t => t.toLowerCase().trim()) .filter(t => t.length); } return []; } function share() { if (navigator.share) { navigator.share( { text: md.value, title: currentnote.title }); } } function sharehtml() { if (navigator.share) { var file = new File(['
' + md2html(md.value) + ''], currentnote.title + ".html", { type: "text/html", }); navigator.share( { title: currentnote.title, files: [file] }); } } function getfilename(title) { return title.replace(/[\?\"<>|\*:\/\\]/g, "_") + ".md"; } function download(filename, content) { var element = document.createElement('a'); element.setAttribute('href', 'data:text/markdown;charset=utf-8,' + encodeURIComponent(content)); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); element.click(); document.body.removeChild(element); element = null; } function downloadnotes() { var zip = new JSZip(); localdata.forEach(note => { zip.file(getfilename(note.title), note.content); }); zip.generateAsync({type:"blob"}) .then(function(content) { saveAs(content, "notes-" + timestamp() + ".zip"); }); } function downloadhtmlnotes() { var zip = new JSZip(); localdata.forEach(note => { zip.file(getfilename(note.title).replace(".md", ".html"), md2html(note.content)); }); zip.generateAsync({type:"blob"}) .then(function(content) { saveAs(content, "notes-html-" + timestamp() + ".zip"); }); } function headerandtext(note) { var content = note.content; var result = { header: "", text: content }; if (content.startsWith("---\n")) { var end = content.indexOf("---\n", 4); if (end > -1) { result.header = content.substring(0, end + 4); result.text = content.substring(end + 4); } } return result; } function inserttodo() { var text = prompt("Text:"); if (text) { var todo = getnote("todo"); var split = headerandtext(todo); todo.content = split.header + "* " + text + "\n" + split.text; if (todo == currentnote) { seteditorcontent(todo.content, true); } datachanged(); } } function downloadnotesjson() { download("notes-" + timestamp() + ".json", window.localStorage.getItem("data")); } function downloadencrypted() { encryptstring(JSON.stringify(localdata)) .then(encrypted => { download("notes-encrypted-" + timestamp() + ".acs", encrypted); }); } function downloadnotewithsubs() { var note = withsubs(); if (note) { download(note.title + ".md", note.content); } } function downloadnote() { download(currentnote.title + ".md", md.value); } function remotecallfailed(error) { if (error) { console.warn(error); showtemporaryinfo("Error: " + error); } else { console.warn("remotecallfailed without details"); } } function gotoline(line) { var i = 0; var pos = 0; while (i < line && pos > -1) { pos = currentnote.content.indexOf("\n", pos + 1); i++; } if (pos > -1) { setpos(pos + 1); } } function loadstorage() { var item = window.localStorage.getItem("data"); localdata = item ? JSON.parse(item) : []; var params = new URLSearchParams(window.location.search); var title = params.get("n"); var line = params.get("l"); var tags = params.get("t"); if (currentnote) { currentnote = getnote(currentnote.title); } else if (title) { currentnote = getnote(title); if (!currentnote) { var newcontent = defaultheaders(title, tags); currentnote = {title: title, content: newcontent, pos: newcontent.length}; localdata.unshift(currentnote); } } if (currentnote) { bindfile(currentnote); if (line) { gotoline(line); } } else { loadlast(); } } function applystyle() { document.body.style.fontSize = settings.fontsize; document.body.style.lineHeight = settings.lineheight; document.body.style.marginLeft = settings.margins; document.body.style.marginRight = settings.margins; } function loadsettings() { settings = {...defaultsettings}; var item = window.localStorage.getItem("settings"); if (item) { item = JSON.parse(item); for (var key in settings) { if (typeof item[key] !== "undefined") { settings[key] = item[key]; } } } applystyle(); if (settings.tagfilter) { var command = commands.find(c => c.hint == "Add tag filter"); if (command) { command.hint = removetaghint(); } } if (settings.titlebydefault && title.hidden) { toggletitle(); } colored.hidden = !settings.colors; md.style.color = settings.colors ? "transparent" : "inherit"; md.style.background = settings.colors ? "transparent" : "inherit"; } function checksaved() { if (!saved) { return "not saved"; } } function initsnippets() { // code languages codelanguages.forEach(lang => { if (!snippets.find(s => s.command == "/" + lang)) { snippets.push( { command: "/" + lang, hint: lang + " code block", insert: "```" + lang + "\n\n```", cursor: -4 }); } }); } function init() { loadsettings(); window.onbeforeunload = checksaved; window.onclick = focuseditor; initsnippets(); if (settings.sync) { titlemap = JSON.parse(localStorage.getItem("titlemap")) || {}; if (localStorage.getItem("pgpkeys") && localStorage.getItem("pgpkeys").startsWith("-----BEGIN PGP PUBLIC KEY BLOCK-----")) { queryremote({action: "fetch"}) .then(data => { if (data.length) { window.localStorage.setItem("data", JSON.stringify(data)); } loadstorage(); }) .catch(err => { console.log(err); settings.password = prompt("Password: ", settings.password); savesettings(); init(); }); } else { loadstorage(); editpgpkeys(); showtemporaryinfo("Pgp key empty or invalid. Enter PGP keys and refresh."); } } else { loadstorage(); } if (issplit()) { if (settings.defaultpreviewinsplit && name == "right") { togglepreview(); } else if (name == "left") { md.focus(); } } } function cvdt(text) { var day = text.substr(0,8); var time = text.substr(9,6); return new Date( day.substr(0,4), parseInt(day.substr(4,2)) - 1, day.substr(6,2), time.substr(0,2), time.substr(2,2), time.substr(4,2)); } function ics2json(ics) { var events = []; ics.split("BEGIN:VEVENT").forEach(block => { var evt = {}; block.split("\r\n").forEach(line => { var tuple = line.split(":"); if (tuple.length > 1) { var field = tuple.shift().split(";")[0]; var value = tuple.join(":"); if (field == "DTSTART") { evt.DTSTART = cvdt(value); } else if (field == "UID" || field == "SUMMARY") { evt[field] = value; } } }); if (evt.UID && evt.SUMMARY && evt.DTSTART) { events.push(evt); } }); return events.sort( (a,b) => a.DTSTART - b.DTSTART); } function getorcreate(title, content, putontop) { var note = getnote(title); if (!note) { note = {title: title, content: content, pos: content.length}; localdata.push(note) } if (putontop) { localdata.splice(localdata.indexOf(note), 1); localdata.unshift(note); } return note; } function queryremote(params) { return new Promise( (apply, failed) => { stat.cur.q++; stat.ses.q++; params.password = settings.password; var paramlist = []; for (var i in params) { paramlist.push(i + "=" + encodeURIComponent(params[i])); } stat.cur.d += paramlist.join("&").length; stat.ses.d += paramlist.join("&").length; var xhr = new XMLHttpRequest(); xhr.open("POST", "handler.php"); xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); xhr.onerror = function() { failed("XMLHttpRequest error"); } xhr.onload = function() { if (xhr.status !== 200) { failed("Http status " + xhr.status); } else { var data = {}; decryptstring(xhr.responseText) .then(decrypted => { data = JSON.parse(decrypted); if (data.error) { if (data.error == "authent") { failed("Authent failed"); } else { failed("Remote handler returned an error: " + data.error); } } else if (data.warning) { console.warn("Remote warning: " + data.warning); } else { notepage.style.display = "table"; apply(data); } }) .catch( error => { failed("Handler result is not valid. JS error: " + error); }); } } xhr.send(paramlist.join("&")); }); } function getlinesrange() { var start = md.selectionStart; var end = md.selectionEnd; while (start > 0 && md.value[start - 1] != "\n") start--; while (end < md.value.length && md.value[end] != "\n") end++; return { start: start, end: end }; } function backlinks() { searchinlist(localdata .filter(n => n.content.includes("[[" + currentnote.title + "]]")) .map(n => n.title)) .then(loadnote); } function sortselection() { var content = md.value; var range = {start: 0, end: content.length}; if (md.selectionStart != md.selectionEnd) { range = getlinesrange(); } var selection = content.substring(range.start, range.end); var sorted = selection.split("\n").sort().join("\n"); seteditorcontent(content.substring(0, range.start) + sorted + content.substring(range.end)); } function wordatpos() { var words = md.value.split(/\s/); var i = 0; var word = ""; while (i < md.selectionStart) { word = words.shift(); i += word.length + 1; } return word; } function ontopbarclick() { if (title.hidden) { commandpalette(); } } function md2html(content) { var converter = new showdown.Converter(); converter.setOption("simplifiedAutoLink", true); converter.setOption("simpleLineBreaks", true); converter.setOption("metadata", true); converter.setOption("tasklists", true); converter.setOption("literalMidWordUnderscores", true); if (settings.linksinnewtab) { converter.setOption("openLinksInNewWindow", true); } var html = converter.makeHtml(content); // internal links html = html.replace(/\[\[([^\]]*)\]\]/g, "$1"); return html; } function loadlast() { loadnote(localdata.length ? localdata[0].title : timestamp()); } function loadprevious() { var index = localdata.indexOf(currentnote); if (index > -1 && index < localdata.length - 1) { loadnote(localdata[index + 1].title); } } function loadnext() { var index = localdata.indexOf(currentnote); if (index > -1 && index > 1) { loadnote(localdata[index - 1].title); } } function grep(needle) { var result = {}; localdata .filter(note => note.title != "events.json") .forEach(note => { if (note.title.toLowerCase().includes(needle.toLowerCase())) { result[note.title] = {}; } note.content.split("\n") .forEach((line, nb) => { if (line.toLowerCase().includes(needle.toLowerCase())) { result[note.title] = result[note.title] || {}; result[note.title][nb] = line; } }); }); return result; } function showgrepresult(grepresult) { var grepcontent = ["# Search results: \"" + filter.value + "\""]; for (var file in grepresult) { grepcontent.push("[[" + file + "]]"); for (var l in grepresult[file]) { grepcontent.push("[" + l + "] " + grepresult[file][l]); } grepcontent.push(""); } if (grepcontent.length == 0) { grepcontent.push("No result."); } bindfile( { title: "Search result", content: grepcontent.join("\n") }); if (preview.hidden) { togglepreview(); } } function showgrep() { var text = prompt("Search:"); if (text) { showgrepresult(grep(text)); } } function titlewithtags(note) { var text = note.title; if (settings.tagsinlists) { var tags = gettags(note); if (tags.length) { text += " " + tagmark + tags.join(" " + tagmark); } } return text; } function commandpalette() { searchinlist(commands .filter(command => !command.excludepalette) .map(command => { return { text: command.hint, suffix: command.shortcut ? [command.shortcut.toLowerCase()] : null }; }) .concat(snippets.map(s => { return { prefix: "snippet: ", text: s.hint, suffix: [s.command] }; })) .concat(localdata.map(n => { return { prefix: "note: ", text: n.title, suffix: gettags(n).map(t => tagmark + t) }; })) .concat(Object.keys(settings).map(s => { return { prefix: "setting: ", text: s, suffix: s == "password" ? null : [settings[s]] }; }))) .then(selected => { if (selected.prefix == "snippet: ") { var snippet = snippets.find(s => s.hint == selected.text); insert(snippet.insert, snippet.cursor); md.focus(); } else if (selected.prefix == "note: ") { loadnote(selected.text); } else if (selected.prefix == "setting: ") { editsetting(selected.text); } else { var command = commands.find(c => c.hint == selected.text); if (command) { executecommand(command); } else { // if unknown command, create a new note loadnote(selected); } } }); } function insert(text, cursoroffset = 0, nbtodelete = 0) { var pos = md.selectionStart; var content = md.value; seteditorcontent( content.substring(0, pos - nbtodelete) + text + content.substring(pos)); setpos(pos - nbtodelete + text.length + cursoroffset); } function searchinlist(list) { return new Promise(selectitem => { fileindex = 0; searchdialog.hidden = false; filteredlist.hidden = false; filteredlist.innerHTML = ""; filter.value = ""; list.forEach(item => { var elt = document.createElement("div"); elt.tag = item; if (typeof item === "string") { elt.textContent = item; } else { var ts = document.createElement("span"); ts.setAttribute("style", "color:grey"); ts.innerHTML = item.prefix || ""; elt.appendChild(ts); ts = document.createElement("span"); ts.innerHTML = item.text; elt.appendChild(ts); if (item.suffix) { item.suffix.forEach(t => { ts = document.createElement("span"); ts.setAttribute("style", "color:grey"); ts.innerHTML = " " + t; elt.appendChild(ts); }); } } elt.onclick = function() { searchdialog.hidden = true; selectitem(elt.tag); } filteredlist.appendChild(elt); }); applyfilter(); filter.onkeydown = function() { // doesn't work if focus is lost. if (event.key === "Enter") { event.preventDefault(); searchdialog.hidden = true; var selected = document.getElementsByClassName("selected")[0]; selectitem(selected ? selected.tag : filter.value); } } filter.focus(); }); } function applyfileindex() { var i = 0; [...filteredlist.children].forEach(child => { if (child.nodeName == "DIV") { child.className = "searchitem"; if(!child.hidden) { if (i++ == fileindex) { child.className = "selected"; if (child.customevent) { child.customevent(child.textContent); filter.focus(); } } } } }); } function getpos() { return md.selectionStart; } function setpos(pos) { md.setSelectionRange(pos, pos); } function before(nb) { return md.value.substring(getpos() - nb, getpos()); } function resize() { if (md.clientHeight < md.scrollHeight) { md.style.height = md.scrollHeight + 'px'; } } function putontop() { if (localdata.find(n => n == currentnote)) { localdata.splice(localdata.indexOf(currentnote), 1); localdata.unshift(currentnote); } } function postpone() { return new Promise(function(resolve) { clearTimeout(workerid); workerid = setTimeout(resolve, settings.savedelay); }); } function setsaved() { saved = true; lastsaved = timestamp(); } function save() { clearTimeout(workerid); if (currentnote.title == "settings.json") { settings = JSON.parse(md.value); savesettings(); loadsettings(); setsaved(); return; } else if (currentnote.title == "pgpkeys") { localStorage.setItem("pgpkeys", md.value); setsaved(); return; } if (!localdata) { showtemporaryinfo("cannot push empty data"); return; } if (pending) { console.log("pending query: save cancelled"); return; } if (saved) { console.log("nothing to save"); return; } var content = md.value; if ((content == "" && backup != "") || content == "null" || content == "undefined") { showtemporaryinfo("Invalid content '" + content + "', file '" + currentnote.title + "' not saved"); return; } currentnote.pos = md.selectionStart; currentnote.content = content; putontop(); window.localStorage.setItem("data", JSON.stringify(localdata)); console.log("data serialized in local storage") if (settings.sync) { var datatosend = JSON.stringify(localdata); encryptstring(datatosend) .then(encrypted => { console.log("sending data to php server..."); pending = true; return queryremote({action: "push", data: encrypted}) }) .then(() => { console.log("...data saved on server"); setsaved(); }) .catch(remotecallfailed) .finally(() => { pending = false; if (content != md.value) { console.log("but content changed: will save again"); datachanged(); } else if (!saved) { console.log("save failed. Data unsaved on server, manual action required."); } }); } else { setsaved(); } } function escapeHtml(unsafe) { return unsafe .replace(/&/g, "&") .replace(//g, ">") .replace(/"/g, """) .replace(/'/g, "'"); } var languagekeywords = { "sql": ["select", "from", "where", "and", "or"], "js": ["var", "for", "if", "else"], "zsh": ["sudo"] } function currentline() { return (md.value.substring(0, md.selectionStart).match(/\n/g) || []).length; } function lineatpos(pos) { return (md.value.substring(0, pos).match(/\n/g) || []).length; } function currentcol() { return md.selectionStart - Math.max(0, md.value.lastIndexOf("\n", md.selectionStart - 1)) - 1; } function rawline(index) { return md.value.split("\n")[index]; } var emptyline = "