This commit is contained in:
2023-05-17 10:17:26 +01:00
parent 3a8125f0bb
commit 154098b5dc
5 changed files with 79 additions and 1 deletions

View File

@ -0,0 +1,53 @@
import ExternalStore from "ExternalStore";
import Icon from "Icons/Icon";
import { ReactNode, useSyncExternalStore } from "react";
import { unixNow } from "Util";
import "./Toaster.css";
interface ToastNotification {
element: ReactNode;
expire?: number;
icon?: string;
}
class ToasterSlots extends ExternalStore<Array<ToastNotification>> {
#stack: Array<ToastNotification> = [];
#cleanup = setInterval(() => this.#eatToast(), 1000);
push(n: ToastNotification) {
n.expire ??= unixNow() + 3;
this.#stack.push(n);
this.notifyChange();
}
takeSnapshot(): ToastNotification[] {
return [...this.#stack];
}
#eatToast() {
const now = unixNow();
this.#stack = this.#stack.filter(a => (a.expire ?? 0) > now);
this.notifyChange();
}
}
export const Toastore = new ToasterSlots();
export default function Toaster() {
const toast = useSyncExternalStore(
c => Toastore.hook(c),
() => Toastore.snapshot()
);
return (
<div className="toaster">
{toast.map(a => (
<div className="card flex">
<Icon name={a.icon ?? "bell"} className="mr5" />
{a.element}
</div>
))}
</div>
);
}