fix save to server
This commit is contained in:
parent
4f33d65317
commit
a1c0033e26
180
main.js
180
main.js
|
@ -31,6 +31,7 @@ var workerid = null;
|
||||||
var backup = "";
|
var backup = "";
|
||||||
var settings = null;
|
var settings = null;
|
||||||
var tags = null;
|
var tags = null;
|
||||||
|
var pending = {};
|
||||||
|
|
||||||
var commands = [
|
var commands = [
|
||||||
{
|
{
|
||||||
|
@ -58,7 +59,7 @@ var commands = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
hint: "Force save",
|
hint: "Force save",
|
||||||
action: serialize,
|
action: flush,
|
||||||
shortcut: "ctrl+s"
|
shortcut: "ctrl+s"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -284,7 +285,7 @@ function seteditorcontent(content)
|
||||||
{
|
{
|
||||||
md.value = content;
|
md.value = content;
|
||||||
applycolors();
|
applycolors();
|
||||||
serialize();
|
flush();
|
||||||
resize();
|
resize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -351,6 +352,47 @@ function currentrange()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function pushitem(key, value)
|
||||||
|
{
|
||||||
|
unsavedmark.hidden = false;
|
||||||
|
pending[key] = true;
|
||||||
|
|
||||||
|
encryptstring(value)
|
||||||
|
.then(encrypted =>
|
||||||
|
{
|
||||||
|
return queryremote({action: "push", name: key, data: encrypted});
|
||||||
|
})
|
||||||
|
.then( () =>
|
||||||
|
{
|
||||||
|
console.log(key + " pushed to server");
|
||||||
|
delete pending[key];
|
||||||
|
})
|
||||||
|
.catch( err =>
|
||||||
|
{
|
||||||
|
var msg = "error while pushing '" + (metadata[key] ? metadata[key].title : key) + "': " + err;
|
||||||
|
console.error(msg);
|
||||||
|
showtemporaryinfo(msg);
|
||||||
|
setTimeout( () =>
|
||||||
|
{
|
||||||
|
serialize(key, value);
|
||||||
|
}, settings.savedelay);
|
||||||
|
})
|
||||||
|
.finally( () =>
|
||||||
|
{
|
||||||
|
unsavedmark.hidden = Object.keys(pending) == 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function serialize(key, value)
|
||||||
|
{
|
||||||
|
localStorage.setItem(key, value);
|
||||||
|
|
||||||
|
if (settings.sync)
|
||||||
|
{
|
||||||
|
pushitem(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function createsubnote()
|
function createsubnote()
|
||||||
{
|
{
|
||||||
var title = prompt("Subnote tite:");
|
var title = prompt("Subnote tite:");
|
||||||
|
@ -374,7 +416,7 @@ function createsubnote()
|
||||||
var range = currentrange();
|
var range = currentrange();
|
||||||
var content = getrangecontent(range);
|
var content = getrangecontent(range);
|
||||||
guid = createnote(title);
|
guid = createnote(title);
|
||||||
localStorage.setItem(guid, content);
|
serialize(guid, content);
|
||||||
|
|
||||||
seteditorcontent(md.value.substring(0, range.start)
|
seteditorcontent(md.value.substring(0, range.start)
|
||||||
+ "[[" + title + "]]"
|
+ "[[" + title + "]]"
|
||||||
|
@ -445,6 +487,7 @@ function showinfo()
|
||||||
showtemporaryinfo(
|
showtemporaryinfo(
|
||||||
[
|
[
|
||||||
"sync: " + (settings.sync ? "en" : "dis") + "abled",
|
"sync: " + (settings.sync ? "en" : "dis") + "abled",
|
||||||
|
"pending: " + Object.keys(pending).join(),
|
||||||
"title: " + title.value,
|
"title: " + title.value,
|
||||||
"line count: " + md.value.split("\n").length,
|
"line count: " + md.value.split("\n").length,
|
||||||
"word count: " + getwords(),
|
"word count: " + getwords(),
|
||||||
|
@ -457,7 +500,7 @@ function showinfo()
|
||||||
|
|
||||||
function savesettings()
|
function savesettings()
|
||||||
{
|
{
|
||||||
window.localStorage.setItem("settings", JSON.stringify(settings));
|
window.serialize("settings", JSON.stringify(settings));
|
||||||
}
|
}
|
||||||
|
|
||||||
function descendants(note)
|
function descendants(note)
|
||||||
|
@ -1044,9 +1087,9 @@ function inserttodo(text)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
localStorage.setItem(guid, content);
|
serialize(guid, content);
|
||||||
metadata[guid].lastchanged = Date.now();
|
metadata[guid].lastchanged = Date.now();
|
||||||
serialize();
|
flush();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1118,7 +1161,7 @@ function createnote(title)
|
||||||
};
|
};
|
||||||
metadata[guid] = item;
|
metadata[guid] = item;
|
||||||
serializeindex()
|
serializeindex()
|
||||||
localStorage.setItem(guid, content);
|
serialize(guid, content);
|
||||||
return guid;
|
return guid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1202,10 +1245,10 @@ function loadsettings()
|
||||||
|
|
||||||
function checksaved()
|
function checksaved()
|
||||||
{
|
{
|
||||||
/*if (!saved)
|
if (!unsavedmark.hidden)
|
||||||
{
|
{
|
||||||
return "not saved";
|
return "not saved";
|
||||||
}*/
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function initsnippets()
|
function initsnippets()
|
||||||
|
@ -1825,7 +1868,7 @@ function postpone()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function serialize()
|
function flush()
|
||||||
{
|
{
|
||||||
clearTimeout(workerid);
|
clearTimeout(workerid);
|
||||||
workerid = null;
|
workerid = null;
|
||||||
|
@ -1839,8 +1882,8 @@ function serialize()
|
||||||
item.header = indexheader(md.value);
|
item.header = indexheader(md.value);
|
||||||
item.lastchanged = Date.now();
|
item.lastchanged = Date.now();
|
||||||
|
|
||||||
serializeindex()
|
serializeindex();
|
||||||
localStorage.setItem(guid, md.value);
|
serialize(guid, md.value);
|
||||||
}
|
}
|
||||||
else if (title.value == "settings.json")
|
else if (title.value == "settings.json")
|
||||||
{
|
{
|
||||||
|
@ -1850,97 +1893,12 @@ function serialize()
|
||||||
}
|
}
|
||||||
else if (title.value == "pgpkeys")
|
else if (title.value == "pgpkeys")
|
||||||
{
|
{
|
||||||
localStorage.setItem("pgpkeys", md.value);
|
serialize("pgpkeys", md.value);
|
||||||
}
|
|
||||||
console.log("data serialized");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*function save()
|
unsavedmark.hidden = Object.keys(pending).length == 0;
|
||||||
{
|
console.log("data serialized locally");
|
||||||
return new Promise(function(resolve, reject)
|
|
||||||
{
|
|
||||||
clearTimeout(workerid);
|
|
||||||
|
|
||||||
if (title.value == "settings.json")
|
|
||||||
{
|
|
||||||
settings = JSON.parse(md.value);
|
|
||||||
savesettings();
|
|
||||||
loadsettings();
|
|
||||||
setsaved();
|
|
||||||
resolve();
|
|
||||||
}
|
}
|
||||||
else if (title.value == "pgpkeys")
|
|
||||||
{
|
|
||||||
localStorage.setItem("pgpkeys", md.value);
|
|
||||||
setsaved();
|
|
||||||
resolve();
|
|
||||||
}
|
|
||||||
else if (pending)
|
|
||||||
{
|
|
||||||
console.log("pending query: save cancelled");
|
|
||||||
reject();
|
|
||||||
}
|
|
||||||
else if (saved)
|
|
||||||
{
|
|
||||||
console.log("nothing to save");
|
|
||||||
reject();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var content = md.value;
|
|
||||||
if ((content == "" && backup != "") || content == "null" || content == "undefined")
|
|
||||||
{
|
|
||||||
showtemporaryinfo("Invalid content '" + content + "', file '" + title.value + "' not saved");
|
|
||||||
reject();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
serialize();
|
|
||||||
|
|
||||||
if (settings.sync)
|
|
||||||
{
|
|
||||||
var datatosend = JSON.stringify(localdata);
|
|
||||||
return 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");
|
|
||||||
return datachanged();
|
|
||||||
}
|
|
||||||
else if (!saved)
|
|
||||||
{
|
|
||||||
console.log("save failed. Data unsaved on server. Will retry.");
|
|
||||||
return datachanged();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
resolve();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
setsaved();
|
|
||||||
resolve();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}*/
|
|
||||||
|
|
||||||
function escapeHtml(unsafe) {
|
function escapeHtml(unsafe) {
|
||||||
return unsafe
|
return unsafe
|
||||||
|
@ -2199,10 +2157,14 @@ function applycolors(currentonly)
|
||||||
|
|
||||||
function editorinput()
|
function editorinput()
|
||||||
{
|
{
|
||||||
|
unsavedmark.hidden = false;
|
||||||
|
|
||||||
// criteria to improve. Or redraw only after?
|
// criteria to improve. Or redraw only after?
|
||||||
var multiline = md.value.substring(md.selectionStart, md.selectionEnd).includes("\n");
|
var multiline = md.value.substring(md.selectionStart, md.selectionEnd).includes("\n");
|
||||||
applycolors(!multiline && event.data && (event.inputType == "insertText" || event.inputType == "deleteContentBackward" || event.inputType == "deleteContentForward"));
|
applycolors(!multiline && event.data && (event.inputType == "insertText" || event.inputType == "deleteContentBackward" || event.inputType == "deleteContentForward"));
|
||||||
postpone().then(serialize);
|
|
||||||
|
// todo: fix if current note change during postponing, the wrong one will be saved. Or prevent binding another note?
|
||||||
|
postpone().then(flush);
|
||||||
resize();
|
resize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2216,13 +2178,13 @@ function timestamp()
|
||||||
|
|
||||||
function quicknewnote()
|
function quicknewnote()
|
||||||
{
|
{
|
||||||
serialize();
|
flush();
|
||||||
loadnote(timestamp());
|
loadnote(timestamp());
|
||||||
}
|
}
|
||||||
|
|
||||||
function startnewnote()
|
function startnewnote()
|
||||||
{
|
{
|
||||||
serialize();
|
flush();
|
||||||
var title = prompt("Note title: ", timestamp());
|
var title = prompt("Note title: ", timestamp());
|
||||||
if (title)
|
if (title)
|
||||||
{
|
{
|
||||||
|
@ -2410,7 +2372,7 @@ function restoredeleted()
|
||||||
|
|
||||||
function serializeindex()
|
function serializeindex()
|
||||||
{
|
{
|
||||||
localStorage.setItem("index", JSON.stringify(metadata));
|
serialize("index", JSON.stringify(metadata));
|
||||||
}
|
}
|
||||||
|
|
||||||
function deletenote(title)
|
function deletenote(title)
|
||||||
|
@ -2639,7 +2601,7 @@ function renameinternallinks(from, to)
|
||||||
var newcontent = content.replaceAll("[[" + from + "]]", "[[" + to + "]]");
|
var newcontent = content.replaceAll("[[" + from + "]]", "[[" + to + "]]");
|
||||||
if (content != newcontent)
|
if (content != newcontent)
|
||||||
{
|
{
|
||||||
localStorage.setItem(guid, newcontent);
|
serialize(guid, newcontent);
|
||||||
if (item.title == window.title.value)
|
if (item.title == window.title.value)
|
||||||
{
|
{
|
||||||
seteditorcontent(newcontent);
|
seteditorcontent(newcontent);
|
||||||
|
@ -2664,7 +2626,7 @@ function ontitlechange()
|
||||||
previoustitle = title.value;
|
previoustitle = title.value;
|
||||||
metadata[guid].title = title.value;
|
metadata[guid].title = title.value;
|
||||||
setwindowtitle();
|
setwindowtitle();
|
||||||
serialize();
|
flush();
|
||||||
|
|
||||||
if (!settings.titlebydefault)
|
if (!settings.titlebydefault)
|
||||||
{
|
{
|
||||||
|
@ -2846,6 +2808,12 @@ function togglepreviewwithsubs()
|
||||||
|
|
||||||
function bind(title, content, pos)
|
function bind(title, content, pos)
|
||||||
{
|
{
|
||||||
|
if (workerid)
|
||||||
|
{
|
||||||
|
showtemporaryinfo("current note not yet serialized");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
previoustitle = title;
|
previoustitle = title;
|
||||||
backup = content;
|
backup = content;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue