aboutsummaryrefslogtreecommitdiff
path: root/static/main.js
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 21:13:52 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 21:13:52 +0800
commit9d34135c25385b7a79acbcde5b9ba7f76a62471d (patch)
tree220a108d3e710ea69f1d7a14d8b74461a290cd59 /static/main.js
parentFix wording in challenge again (diff)
downloadpowxy-9d34135c25385b7a79acbcde5b9ba7f76a62471d.tar.gz
powxy-9d34135c25385b7a79acbcde5b9ba7f76a62471d.tar.zst
powxy-9d34135c25385b7a79acbcde5b9ba7f76a62471d.zip
Separate main.js out of the HTML
Diffstat (limited to '')
-rw-r--r--static/main.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/static/main.js b/static/main.js
new file mode 100644
index 0000000..73d98df
--- /dev/null
+++ b/static/main.js
@@ -0,0 +1,25 @@
+document.addEventListener("DOMContentLoaded", async function() {
+ let challenge_b64 = document.body.dataset.identifier;
+ let difficulty = parseInt(document.body.dataset.difficulty);
+ let form = document.querySelector("form");
+ let field = form.querySelector("input[name='powxy']");
+ let status_el = document.getElementById("solver_status");
+
+ let identifier_bytes = Uint8Array.from(
+ atob(challenge_b64),
+ ch => ch.charCodeAt(0)
+ );
+
+ status_el.textContent = "Starting WebAssembly solver as a worker...";
+
+ let worker = new Worker("/.powxy/static/solver.js");
+
+ worker.onmessage = function(e) {
+ let { nonce, nonce_bytes } = e.data;
+ let nonce_str = String.fromCharCode(...nonce_bytes);
+ field.value = btoa(nonce_str);
+ status_el.textContent = "Challenge solved automatically in " + nonce + " iterations";
+ };
+
+ worker.postMessage({ identifier_bytes, difficulty });
+});