@croz/nrich-notification-core is a module which serves for showing automatic messages from backend on user interface.
It's a frontend part of nrich-notification backend module.
Internally, it intercepts http calls and scans for sign of nrich notification object, and shows it if it exists.
To use this module in your project run npm install @croz/nrich-notification-core or yarn add @croz/nrich-notification-core
On top level of your app, register an appropriate interceptor for notifications.
fetchNotificationInterceptor().XMLHttpRequest, eg. axios, use xhrNotificationInterceptor().Using useNotification() custom hook you get an object containing notifications array and remove and add methods for working with that array.
Example:
import { useNotifications } from "@croz/nrich-notification-core";
const Notification = ({ title, content, onRemove }) => (
<div>
<h3>{title}</h3>
<div>{content}</div>
<button onClick={onRemove}>×</button>
</div>
)
export const Notifications = () => {
const { notifications, remove } = useNotifications();
return (
<div>
{notifications.map(notification => <Notification {...notification} onRemove={() => remove(notification)}/>)}
</div>
)
}
If you're using this module alone, you need to provide your own notification UI. For the prepared implementation in MUI, see @croz/nrich-notification-mui docs
Generated using TypeDoc