Files
nginx-proxy-manager/frontend/src/notifications/helpers.tsx
Jamie Curnow f2b5b19a83 More react
- consolidated lang items
- proxy host paths work
2025-10-16 18:59:19 +10:00

39 lines
785 B
TypeScript

import { toast } from "react-toastify";
import { intl } from "src/locale";
import { Msg } from "./Msg";
import styles from "./Msg.module.css";
const showSuccess = (message: string) => {
toast(Msg, {
className: styles.toaster,
data: {
type: "success",
title: intl.formatMessage({ id: "notification.success" }),
message,
},
});
};
const showError = (message: string) => {
toast(<Msg />, {
data: {
type: "error",
title: intl.formatMessage({ id: "notification.error" }),
message,
},
});
};
const showObjectSuccess = (obj: string, action: string) => {
showSuccess(
intl.formatMessage(
{
id: `notification.object-${action}`,
},
{ object: intl.formatMessage({ id: obj }) },
),
);
};
export { showSuccess, showError, showObjectSuccess };