react-notification-provider
v0.6.0
Published
Easily create your own notification system in your React app without having to buy into prescribed styling or templating.
Downloads
460
Readme
react-notification-provider
Easily create your own notification system in your React app without having to buy into prescribed styling or templating.
- 💅 Completely headless. No styling, templates, or HTML included.
- 🎣 Uses React hooks and context
- ✨ Easily add animation using Framer Motion.
- 🏋️♀️ Typescript support
- 📝 Custom notification properties
- 💻 Mock and test notifications in your app
Here's what it looks like:
function MyComponent() {
const notification = useNotificationQueue();
function notify() {
notification.add('example', {
title: 'Hello world',
});
}
return <div onClick={notify}>Show notification</div>;
}
Install
With npm:
npm install react-notification-provider
With yarn:
yarn add react-notification-provider
Setup
You'll start by using the createNotificationContext
function to create the React context, hooks, and helpers. You should create this in a file you can import throughout your application. In this example, we'll create it as lib/notifications/index.tsx
.
import { createNotificationContext } from 'react-notification-provider';
// You can customize the notification interface to include whatever props your notifications need to render.
interface Notification {
message: string;
duration: number;
level: 'success' | 'error';
}
// This function creates a React context and hooks for you so you'll want to export these.
const {
NotificationProvider,
useNotificationQueue,
} = createNotificationContext<Notification>();
export { NotificationProvider, useNotificationQueue };
Now you want to wrap your application in this provider. This will allow you to use the useNotificationQueue
hooks.
If you're using Next.js you should render this provider in your
pages/_app
file so that it's available on every page.
import { NotificationProvider } from 'lib/notifications';
function App(props: Props) {
const { children } = props;
return (
<NotificationProvider>
{children}
<NotificationList />
<NotificationProvider>
);
}
In this example we're rendering a components, NotificationList
that will load the notification queue from the React context and render the list of notifications on the page.
In this example,
<Notification />
would be your custom component that renders a notification UI component.
import { useNotificationQueue } from 'lib/notifications';
function NotificationList() {
const queue = useNotificationQueue();
return (
<div>
{queue.entries.map(({ id, data }) => (
<Notification key={id} message={data.message} />
))}
</div>
);
}
Now let's add animation to our notifications using Framer motion:
import { useNotificationQueue } from 'lib/notifications';
import { motion, AnimatePresence } from 'framer-motion';
function NotificationList() {
const queue = useNotificationQueue();
return (
<AnimatePresence>
{queue.entries.map(({ id, data }) => (
<motion.div
key={id}
positionTransition
initial={{ opacity: 0, y: 50, scale: 0.3 }}
animate={{ opacity: 1, y: 0, scale: 1 }}
exit={{ opacity: 0, scale: 0.5, transition: { duration: 0.2 } }}
>
<Notification key={id} message={data.message} />
</motion.div>
))}
</AnimatePresence>
);
}
Now when you want to trigger a notification from anywhere in your application you can import the hook and use it:
import { useNotificationQueue } from 'lib/notifications';
function MyComponent() {
const notification = useNotificationQueue();
function onClick() {
notification.add('example', {
title: 'Hello world',
});
}
return <div onClick={onClick}>Show notification</div>;
}
Example
You can try the example by running yarn install
and yarn start
within the /example
directory.
Testing
You can mock the notification system when using Storybook or writing tests. The createNotificationContext
function returns a createMockNotificationQueue
that can create a fake queue that can be passed into NotificationProvider
:
const {
NotificationProvider,
createMockNotificationQueue,
} = createNotificationContext<Notification>();
In your tests you can create a queue, pass it in, and then inspect the queue to make sure events were fired. Here's an example using jest but you could do something similar with other mocking libraries, like sinon:
const queue = createMockNotificationQueue();
const addNotification = jest.spyOn(queue, 'add');
const { findByText } = render(
<NotificationProvider queue={queue}>
<TestComponent />
</NotificationProvider>
);
Then watch addNotification
for a new notification:
expect(addNotification).toHaveBeenCalledWith('test', {
message: 'test',
});
Without mocking
If you prefer not to mock, you can pass in a mock queue and inspect the entries
const notifications = createMockImmutableQueue();
const { findByText } = render(
<NotificationProvider queue={notifications}>
<TestComponent />
</NotificationProvider>
);
Then inspect notifications.entries
, which will be an array of notifications:
expect(notifications.entries).toBe([
{
id: 'test',
data: {
message: 'Hello world',
},
},
]);
When you don't care about testing notifications
You can also leave out the queue if you don't need to listen for notifications:
const { findByText } = render(
<NotificationProvider>
<TestComponent />
</NotificationProvider>
);