From 75092f3e0e5d1af9b089526d4fedf227da70275c Mon Sep 17 00:00:00 2001 From: insects Date: Fri, 7 Feb 2025 15:18:06 +0100 Subject: [PATCH] implement account id localstorage saving --- src/templates.rs | 6 +++++- static/scripts/load.js | 6 ++++++ static/scripts/save.js | 6 ++++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 static/scripts/load.js create mode 100644 static/scripts/save.js diff --git a/src/templates.rs b/src/templates.rs index 5791967..b681e1d 100644 --- a/src/templates.rs +++ b/src/templates.rs @@ -254,6 +254,8 @@ pub fn root() -> Markup { "These were the two main reasons why I created this. This website couldn't exist without Carbuncle Plushy's tracker -- it uses the same data " "that has been painstakingly compiled by hand! If you can, please support them." } + + script src="/static/scripts/load.js" type="text/javascript" {} }) } @@ -264,8 +266,10 @@ pub fn new_account(id: String) -> Markup { "access your account." } - h1 { (id) } + h1 id="account-id" { (id) } a href=(format!("/{}", id)) { "Click here to proceed to the tracker" } + + script src="/static/scripts/save.js" type="text/javascript" {} }) } diff --git a/static/scripts/load.js b/static/scripts/load.js new file mode 100644 index 0000000..c363486 --- /dev/null +++ b/static/scripts/load.js @@ -0,0 +1,6 @@ +// Loads an account ID and redirects +const ls = window.localStorage; +const maybeId = ls.getItem("beacon:account-id"); +if (maybeId) { + window.location.pathname = `/${maybeId}`; +} diff --git a/static/scripts/save.js b/static/scripts/save.js new file mode 100644 index 0000000..60ab0ed --- /dev/null +++ b/static/scripts/save.js @@ -0,0 +1,6 @@ +// Saves the account ID in local storage +const id = document.getElementById("account-id"); +const ls = window.localStorage; +if (id) { + ls.setItem("beacon:account-id", id.innerHTML); +}