UNPKG

@suprsend/react

Version:

The react library for using SuprSend features like inbox, preferences etc

214 lines (170 loc) 7.03 kB
# SuprSend React SDK This library provides drop-in components to intergrate SuprSend features like InApp feed, Preferences etc in react applications. This library is built on top of [@suprsend/react-core](https://github.com/suprsend/suprsend-react-core). If you want to build UI from scratch, use [@suprsend/react-core](https://github.com/suprsend/suprsend-react-core). - Refer type definitions for this library [here](https://github.com/suprsend/suprsend-react-sdk/blob/main/src/Feed/interface.ts). ## Installation ```bash npm install @suprsend/react # for npm yarn add @suprsend/react # for yarn ``` ## Integration ### Inbox Popover This components provides bell and inbox notifications popover. This is already wrapped in [SuprSendFeedProvider](https://github.com/suprsend/suprsend-react-core?tab=readme-ov-file#suprsendfeedprovider) component internally so you dont have to wrap again. This component needs to be child of [SuprSendProvider](https://github.com/suprsend/suprsend-react-core?tab=readme-ov-file#suprsendprovider) as it handles authentication of user. ```javascript import { Inbox, SuprSendProvider } from '@suprsend/react'; function Example() { return ( <SuprSendProvider> <Inbox pageSize={20} /> </SuprSendProvider> ); } // props for Inbox interface InboxProps { tenantId?: string; stores?: IStore[] | null; host?: { socketHost?: string, apiHost?: string, }; pageSize?: number; pagination?: boolean; theme?: ITheme; themeType?: ThemeType; popperPosition?: Placement; hideAvatar?: boolean; showUnreadCountOnTabs?: boolean; notificationClickHandler?: (notification: IRemoteNotification) => void; primaryActionClickHandler?: (notification: IRemoteNotification) => void; secondaryActionClickHandler?: (notification: IRemoteNotification) => void; bellComponent?: React.FC; badgeComponent?: React.FC<{ count: number }>; loaderComponent?: React.FC; noNotificationsComponent?: React.FC; tabBadgeComponent?: React.FC<{ count: number }>; notificationComponent?: React.FC<CustomNotificationCard>; headerRightComponent?: React.FC<{ markAllRead: () => void, closeInboxPopover: () => void, }>; } ``` ### Notifications Feed If you want to render notifications in separate screen or in side modal or in any other way instead of popover, you can use this component. For this to work you have to wrap this component inside [SuprSendFeedProvider](https://github.com/suprsend/suprsend-react-core?tab=readme-ov-file#suprsendfeedprovider) and [SuprSendProvider](https://github.com/suprsend/suprsend-react-core?tab=readme-ov-file#suprsendprovider). ```javascript import { SuprSendFeedProvider, NotificationFeed } from '@suprsend/react'; function Example() { return ( <SuprSendProvider> <SuprSendFeedProvider> <NotificationFeed /> </SuprSendFeedProvider> </SuprSendProvider> ); } // props for notification feed interface NotificationFeedProps { pagination?: boolean; showUnreadCountOnTabs?: boolean; hideAvatar?: boolean; themeType?: ThemeType; theme?: INotificationFeedTheme; notificationClickHandler?: (notification: IRemoteNotification) => void; primaryActionClickHandler?: (notification: IRemoteNotification) => void; secondaryActionClickHandler?: (notification: IRemoteNotification) => void; loaderComponent?: React.FC; noNotificationsComponent?: React.FC; tabBadgeComponent?: React.FC<{ count: number }>; notificationComponent?: React.FC<CustomNotificationCard>; headerRightComponent?: React.FC<{ markAllRead: () => void, closeInboxPopover: () => void, }>; } ``` Infinite scroll is also included to fetch more pages in this component. Specifying height for the container is needed for infinite scroll to work properly. ```javascript <NotificationFeed theme={{ notificationsContainer: { container: { height: '100vh' } } }} /> ``` ### Adding Toast Notifications From current version of SDK, toast notification is not longer included along with Inbox component. To show toast notification when new notification is arrived you have to listen for `feed.new_notification` event and use your toast library like `react-hot-toast` to show the notification. ```javascript import toast, { Toaster } from 'react-hot-toast'; import { SuprSendFeedProvider, Inbox, useFeedClient } from '@suprsend/react'; // toast example for Inbox component function Example() { return ( <SuprSendProvider> <Inbox> <ToastNotification /> </Inbox> </SuprSendProvider> ); } // general setup to integrate toast function HeadlessExample() { return ( <SuprSendProvider> <SuprSendFeedProvider> <ToastNotification /> </SuprSendFeedProvider> </SuprSendProvider> ); } function ToastNotification() { const feedClient = useFeedClient(); useEffect(() => { if (!feedClient) return; feedClient.emitter.on('feed.new_notification', (data) => { toast.custom(<ToastNotificationCard notificationData={data} />); // show toast with new notification data feedClient.markAsSeen(data.n_id); // marking seen }); return () => { feedClient.emitter.off('feed.new_notification'); }; }, [feedClient]); return <Toaster />; } ``` ### NotificationCard This is single notification card component. It will be handy if you want to implement your own UI but want to just use our notification card. ```javascript import { NotificationCard } from '@suprsend/react'; <NotificationCard notificationData={data} />; // props for notification card interface NotificationCardProps { notificationData: IRemoteNotification; notificationClickHandler?: (notificationData: IRemoteNotification) => void; notificationComponent?: React.FC<CustomNotificationCard>; hideAvatar?: boolean; themeType?: ThemeType; primaryActionClickHandler?: (notification: IRemoteNotification) => void; secondaryActionClickHandler?: (notification: IRemoteNotification) => void; theme?: INotificationCardTheme; } ``` ### ToastNotificationCard This component is simplified version of notification card which can be used by your toast library to show toast notification. ```javascript import { ToastNotificationCard } from '@suprsend/react'; <ToastNotificationCard notificationData={data} />; // props for toast notification card interface ToastNotificationProps { notificationData: IRemoteNotification; hideAvatar?: boolean; themeType?: ThemeType; theme?: ToastNotificationCardTheme; } ``` ### BodyMarkdown This component supports rendering markdown text in UI. Use this in case where you want to implement your custom notification card but dont want to handle adding markdown support, as it could be time consuming. ```javascript import { BodyMarkdown } from '@suprsend/react'; <BodyMarkdown body={markdownText} />; interface BodyMarkdownProps { body: string; handleActionClick?: HandleActionClick; // for links, this callback will be executed on click style?: NotificationCardBodyTextThemeProps; } ```