added: amount of data sent in stats

added: download all vaults
added: confirmation before switching vault
added: tab/shift+tab to indent/unindent
This commit is contained in:
quenousimporte 2023-02-03 12:56:31 +01:00
parent 43b70a187b
commit d879c324c8
1 changed files with 80 additions and 44 deletions

68
main.js
View File

@ -42,12 +42,14 @@ var stat =
ses:
{
q: 0,
t: timestamp()
t: timestamp(),
d: 0
},
cur:
{
q: 0,
t: timestamp()
t: timestamp(),
d: 0
}
}
@ -313,17 +315,21 @@ var commands = [
action: comment
},
{
hint: "Download note",
hint: "Download current note",
action: downloadnote
},
{
hint: "Download note with merged subnotes",
hint: "Download current note with merged subnotes",
action: downloadnotewithsubs
},
{
hint: "Download vault",
hint: "Download current vault",
action: downloadvault,
shortcut: "ctrl+shift+S"
},
{
hint: "Download all vaults",
action: downloadallvaults
}];
var snippets = [
@ -456,6 +462,22 @@ 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 showinfo()
{
var tags = gettags(currentnote);
@ -465,12 +487,15 @@ function showinfo()
"vault: " + currentvault,
(tags ? "tags: " + tags : ""),
"saved: " + saved,
"spell check: " + (md.spellcheck ? "en" : "dis") + "abled",
"word count: " + getwords(),
"current filter: " + currenttag || "",
"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 queries: " + stat.ses.q,
"session data sent: " + formatsize(stat.ses.d)
], "Note info");
}
@ -530,7 +555,11 @@ function applyvault(vault)
function switchvault()
{
applyvault(currentvault == "local" ? "remote" : "local");
var newvault = currentvault == "local" ? "remote" : "local";
if (confirm("Switch to " + newvault + "?"))
{
applyvault(newvault);
}
}
function selectvault()
@ -873,6 +902,18 @@ function downloadnotes()
});
}
function downloadallvaults()
{
var data =
{
local: JSON.parse(window.localStorage.getItem("local")),
remote: JSON.parse(window.localStorage.getItem("remote")),
sandbox: JSON.parse(window.localStorage.getItem("sandbox")),
trash: JSON.parse(window.localStorage.getItem("trash")),
};
download("notes " + timestamp() + ".json", JSON.stringify(data));
}
function downloadvault()
{
download("notes " + timestamp() + " " + currentvault + ".json", window.localStorage.getItem(currentvault));
@ -1112,6 +1153,9 @@ function queryremote(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');
@ -2015,14 +2059,6 @@ function editorkeydown()
else if (event.key === "Tab")
{
event.preventDefault();
// todo: reverse with shift
if (before(2) == "* " || before(2) == "- ")
{
setpos(getpos() - 2);
insert(" ", 2);
}
else
{
var init = {
start: md.selectionStart,
end: md.selectionEnd
@ -2058,7 +2094,6 @@ function editorkeydown()
md.selectionStart = init.start + shift;
md.selectionEnd = init.end + (newtext.length - selection.length);
}
}
else if (event.key === "[" && before(1) == "[")
{
event.preventDefault();
@ -2159,6 +2194,7 @@ function loadnote(name)
putontop();
stat.cur.q = 0;
stat.cur.d = 0;
stat.cur.t = timestamp();
}