kuru-kuru/islands/CounterCard.tsx
Ayase Minori 77781faca9
Implement POSTing
Signed-off-by: GitHub <noreply@github.com>
2023-09-11 03:55:06 +00:00

71 lines
2.1 KiB
TypeScript

import type { Signal } from "@preact/signals";
import { Button } from "../components/Button.tsx";
import { useState, useEffect } from "preact/hooks";
import axios from 'axios-web';
interface SharedProps {
hasClicked: Signal<boolean>;
globalCount: string;
}
export default function Counter(props: SharedProps) {
const [count, setCount] = useState(0);
const onClick = () => {
let internalCount = 0
let timer: number;
// set a timer to update the global count, resetting
// whenever a user activity is detected
internalCount += 1;
setCount(count + 1);
timer = setTimeout(() => {
axios.post(window.location.href, JSON.stringify({data: internalCount}));
internalCount = 0;
}, 5000);
window.onclick = () => {
clearTimeout(timer);
timer = setTimeout(() => {
axios.post(window.location.href, JSON.stringify({data: internalCount}));
internalCount = 0;
}, 5000);
}
}
useEffect(() => {
let es = new EventSource(window.location.href);
es.addEventListener("open", () => {
console.log(`[${new Date()}] Connected to statistics stream`);
})
es.addEventListener("message", (e) => {
console.log(`[${new Date()}] Received global count: ${e.data}`);
props.globalCount = e.data;
});
// TODO: Reconnect backoff logic could be improved
es.addEventListener("error", () => {
console.warn(`[${new Date()}] Disconnected from statistics stream, attempting to reconnect...`);
const backoff = 1000 + Math.random() * 5000;
new Promise((resolve) => setTimeout(resolve, backoff));
es = new EventSource(window.location.href);
})
}, [])
return (
<div class="max-w-sm text-center rounded overflow-hidden">
<div class="px-6 py-4">
<p class="text-3xl">{count}</p>
<p class="text-gray-700 text-base">Times clicked</p>
</div>
<div class="px-6 pt-4 pb-2">
<Button onClick={onClick}>Squish that button</Button>
</div>
<div class="px-6 pt-4 pb-2">
<p>Everyone has clicked the button {parseInt(props.globalCount)} times!</p>
</div>
</div>
);
}