nelle-observer/astro/public/scripts/ntfy.js

71 lines
1.9 KiB
JavaScript
Raw Normal View History

2024-08-18 19:50:35 -06:00
const ntfyInput = document.getElementById("ntfy-input");
const ntfyButton = document.getElementById("ntfy-send");
2024-09-01 21:27:52 -06:00
// Random placeholder
function getPlaceholder() {
placeholderSelector = (Math.floor(Math.random()*8) +1);
switch(placeholderSelector) {
case 1:
ntfyInput.placeholder='hi nelle! (。><。)';
break;
case 2:
ntfyInput.placeholder='(╹◡╹)凸';
break;
case 3:
ntfyInput.placeholder='Confession of sin: I dont like SciAdv';
break;
case 4:
ntfyInput.placeholder='Knock Knock...';
break;
case 5:
ntfyInput.placeholder='El. Psy. Kongroo.';
break;
case 6:
ntfyInput.placeholder='the organization is after you.';
break;
case 7:
ntfyInput.placeholder='you wouldnt happen to know where an IBN5100 is, would you?';
break;
case 8:
ntfyInput.placeholder='if you had to choose, between: bacon, unlimited bacon, but no games. or. games. unlimited games, but no games. which would you pick?';
break;
case 9:
ntfyInput.placeholder='time travel?';
break;
default:
ntfyInput.placeholder='type some words and hit send';
}
}
// send function
2024-08-12 01:26:18 -06:00
function send(message) {
2024-08-18 01:37:10 -06:00
const r = new XMLHttpRequest();
2024-08-12 01:26:18 -06:00
r.open("POST", "https://ntfy.ouroboros.group/beep", true);
r.setRequestHeader("Content-Type", "text/plain");
r.send(message);
}
2024-08-18 19:50:35 -06:00
2024-08-12 01:26:18 -06:00
// send notification
function sendNotification() {
send(ntfyInput.value);
ntfyInput.value = "";
}
2024-08-18 19:50:35 -06:00
2024-09-01 21:27:52 -06:00
// on send button click
2024-08-18 19:50:35 -06:00
async function ntfyClick() {
2024-09-01 20:50:03 -06:00
if (!ntfyInput.value.replace(/\s/g, "").length) {
2024-08-18 20:08:42 -06:00
ntfyButton.innerHTML = "<span>ಠ﹏ಠ</span>";
2024-08-20 19:18:23 -06:00
setTimeout(() => {
2024-08-18 20:08:42 -06:00
ntfyButton.innerHTML = "<span>Send</span>";
2024-08-18 19:50:35 -06:00
return;
2024-08-20 19:18:23 -06:00
}, 1000);
2024-09-01 20:50:03 -06:00
} else {
2024-08-18 20:08:42 -06:00
ntfyButton.innerHTML = "<span>Sent! ( ꈍᴗꈍ)</span>";
2024-08-18 19:50:35 -06:00
sendNotification();
2024-08-20 19:18:23 -06:00
setTimeout(() => {
2024-08-18 20:08:42 -06:00
ntfyButton.innerHTML = "<span>Send</span>";
2024-08-20 19:18:23 -06:00
}, 1000);
2024-08-18 19:50:35 -06:00
}
}