mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-25 16:56:23 +00:00
24 lines
651 B
TypeScript
24 lines
651 B
TypeScript
import { waitFor } from "../webpack";
|
|
|
|
let NoticesModule: any;
|
|
waitFor(m => m.show && m.dismiss && !m.suppressAll, m => NoticesModule = m);
|
|
|
|
export const noticesQueue = [] as any[];
|
|
export let currentNotice: any = null;
|
|
|
|
export function popNotice() {
|
|
NoticesModule.dismiss();
|
|
}
|
|
|
|
export function nextNotice() {
|
|
currentNotice = noticesQueue.shift();
|
|
|
|
if (currentNotice) {
|
|
NoticesModule.show(...currentNotice, "VencordNotice");
|
|
}
|
|
}
|
|
|
|
export function showNotice(message: string, buttonText: string, onOkClick: () => void) {
|
|
noticesQueue.push(["GENERIC", message, buttonText, onOkClick]);
|
|
if (!currentNotice) nextNotice();
|
|
}
|