Add character count to ntfy message

This commit is contained in:
pancakes 2024-12-03 20:08:32 +10:00
parent bf089dd078
commit 697dfdab18
No known key found for this signature in database
GPG key ID: ED53D426432B861B

View file

@ -4,6 +4,17 @@
import links from "../data/links.json"; import links from "../data/links.json";
const pages = getPages(); const pages = getPages();
function updateCharCount(_) {
const message = document.getElementById("ntfy-message").value;
const el = document.getElementById("ntfy-char-count");
if (message.length >= 15 && message.length <= 128)
el.setAttribute("style", "color: var(--success);");
else el.setAttribute("style", "color: var(--error);");
el.innerText = 128 - message.length;
}
</script> </script>
<main id="main-content"> <main id="main-content">
@ -343,18 +354,24 @@
</p> </p>
<input <input
on:input={updateCharCount}
type="text" type="text"
id="ntfy-message" id="ntfy-message"
name="ntfy-message"
placeholder="Message" placeholder="Message"
minlength="15" minlength="15"
maxlength="128" maxlength="128"
/> />
<label for="ntfy-message" id="ntfy-char-count" style="color: var(--error);">
128
</label>
<br />
<button <button
on:click={() => { on:click={() => {
const message = document.getElementById("ntfy-message").value; const message = document.getElementById("ntfy-message").value;
if (message.length < 15) if (message.length < 15)
return alert( return alert(
`Message must be 15 to 128 chars. Current length is ${message.length}`, `Message must be 15 to 128 characters. Current length is ${message.length}`,
); );
fetch("https://ntfy.meow.company/pancakes", { fetch("https://ntfy.meow.company/pancakes", {
method: "POST", method: "POST",
@ -366,6 +383,7 @@
}, },
}); });
}} }}
style="margin-top: 1rem;"
> >
Send Send
</button> </button>