(() => { const self = reg_ns("starstraw"); const error = document.getElementById("error"); const success = document.getElementById("success"); const forms = document.getElementById("forms"); self.define("render_login", function (_, bind_to, callback) { bind_to.addEventListener("submit", async (e) => { e.preventDefault(); const res = await fetch( `${globalThis._app_base.starstraw}/api/return`, { method: "POST", body: JSON.stringify({ id: e.target.uid.value, }), headers: { "Content-Type": "application/json", }, }, ); const json = await res.json(); if (json.success === false) { error.style.display = "block"; error.innerHTML = `
${json.message}
`; } else { success.style.display = "flex"; success.innerHTML = `

Successfully logged into account.


Continue`; forms.style.display = "none"; } }); }); self.define("render_register", function (_, bind_to, callback) { bind_to.addEventListener("submit", async (e) => { e.preventDefault(); const res = await fetch( `${globalThis._app_base.starstraw}/api/start`, { method: "POST", body: JSON.stringify({ username: e.target.username.value, }), headers: { "Content-Type": "application/json", }, }, ); const json = await res.json(); if (json.success === false) { error.style.display = "block"; error.innerHTML = `
${json.message}
`; } else { success.style.display = "flex"; success.innerHTML = `

Account created! You can login using this code:

${json.message}

Do not lose it! This code is required for you to sign into your account, it cannot be reset!


Continue`; forms.style.display = "none"; } }); }); self.define( "init_god_mode", function (_, target, grant_skill, revoke_skill, grant_title) { grant_skill.addEventListener("submit", async (e) => { e.preventDefault(); const res = await fetch( `${globalThis._app_base.starstraw}/api/spirit/${target}/grant`, { method: "POST", body: JSON.stringify({ skill: [ [e.target.type.value, e.target.name.value], parseFloat(e.target.level.value), ], }), headers: { "Content-Type": "application/json", }, }, ); const json = await res.json(); if (json.success === false) { trigger("app:gen_secret", [ "note-error", "Request Finished", json.message, ]); } else { trigger("app:gen_secret", [ "note-note", "Request Finished", json.message, ]); } document.getElementById("upper:god_mode").close(); }); revoke_skill.addEventListener("submit", async (e) => { e.preventDefault(); const res = await fetch( `${globalThis._app_base.starstraw}/api/spirit/${target}/revoke`, { method: "POST", body: JSON.stringify({ skill: e.target.name.value, }), headers: { "Content-Type": "application/json", }, }, ); const json = await res.json(); if (json.success === false) { trigger("app:gen_secret", [ "note-error", "Request Finished", json.message, ]); } else { trigger("app:gen_secret", [ "note-note", "Request Finished", json.message, ]); } document.getElementById("upper:god_mode").close(); }); grant_title.addEventListener("submit", async (e) => { e.preventDefault(); const res = await fetch( `${globalThis._app_base.starstraw}/api/spirit/${target}/seed`, { method: "POST", body: JSON.stringify({ title: e.target.name.value, }), headers: { "Content-Type": "application/json", }, }, ); const json = await res.json(); if (json.success === false) { trigger("app:gen_secret", [ "note-error", "Request Finished", json.message, ]); } else { trigger("app:gen_secret", [ "note-note", "Request Finished", json.message, ]); } document.getElementById("upper:god_mode").close(); }); }, ); })();