Files
mealie/frontend/app/composables/use-toast.ts
miah 09c2a0b2ad feat: Shopping list / Swipe to check off (#7118)
Co-authored-by: Michael Genson <genson.michael@gmail.com>
Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
2026-05-06 10:31:33 -05:00

71 lines
1.8 KiB
TypeScript

interface Toast {
open: boolean;
text: string;
title: string | null;
color: string;
timeout?: number;
action?: {
onClick: VoidFunction;
message?: string;
};
}
export const toastAlert = reactive<Toast>({
open: false,
title: null,
text: "Hello From The Store",
color: "info",
});
export const toastLoading = reactive<Toast>({
open: false,
title: null,
text: "Importing Backup",
color: "success",
});
function setToast(toast: Toast, text: string, title: string | null, color: string, options?: Partial<Toast>) {
toast.open = true;
toast.text = text;
toast.title = title;
toast.color = color;
toast.timeout = options?.timeout;
toast.action = options?.action;
}
export const loader = {
info(text: string, title: string | null = null) {
setToast(toastLoading, text, title, "info");
},
success(text: string, title: string | null = null) {
setToast(toastLoading, text, title, "success");
},
error(text: string, title: string | null = null) {
setToast(toastLoading, text, title, "error");
},
warning(text: string, title: string | null = null) {
setToast(toastLoading, text, title, "warning");
},
close() {
toastLoading.open = false;
},
};
export const alert = {
info(text: string, title: string | null = null, options?: Partial<Toast>) {
setToast(toastAlert, text, title, "info", options);
},
success(text: string, title: string | null = null, options?: Partial<Toast>) {
setToast(toastAlert, text, title, "success", options);
},
error(text: string, title: string | null = null, options?: Partial<Toast>) {
setToast(toastAlert, text, title, "error", options);
},
warning(text: string, title: string | null = null, options?: Partial<Toast>) {
setToast(toastAlert, text, title, "warning", options);
},
close() {
toastAlert.open = false;
},
};