The @sirenapp/react-native-inbox
sdk is a comprehensive and customizable React Native UI kit for displaying and managing notifications. This documentation provides comprehensive information on how to install, configure, and use the sdk effectively.
You can install the react sdk from npm
npm install @sirenapp/react-native-inbox
or from yarn
yarn add @sirenapp/react-native-inbox
Initialize the sdk with user token and recipient id. Wrap the provider around your App's root.
import { SirenProvider } from '@sirenapp/react-native-inbox';
const config = {
userToken: 'your_user_token',
recipientId: 'your_recipient_id',
};
<SirenProvider config={config}>
{/* Your app components */}
</SirenProvider>
Once the provider is configured, next step is to configure the notification icon
This component consists of a notification icon along with a badge to display the number of unviewed notifications
import { SirenInboxIcon } from '@sirenapp/react-native-inbox';
<SirenInboxIcon />
Below are optional props available for the icon component:
Prop | Description | Type | Default value |
---|---|---|---|
theme | Object for custom themes | Theme | {} |
customStyles | Object for custom styling | CustomStyleProps | {} |
notificationIcon | Option to use custom notification icon | JSX Element | null |
darkMode | Toggle to enable dark mode | boolean | false |
onError | Callback for handling errors | (error: SirenErrorType)=> void | null |
onPress | Custom click handler for notification icon | ()=> void | null |
disabled | Toggle to disable click on icon | boolean | false |
hideBadge | Toggle to hide unviewed count badge | boolean | false |
Here are the available theme options:
type Theme = {
dark: ThemeProps;
light: ThemeProps;
};
type ThemeProps = {
badgeStyle?: {
color?: string;
textColor?: string;
};
}
Here are the custom style options for the notification icon:
type CustomStyleProps = {
notificationIcon?: {
size?: number,
};
badgeStyle?: {
size?: number;
textSize?: number;
top?: number;
right?: number;
};
}
Inbox is a paginated list view for displaying notifications.
import { SirenInbox } from '@sirenapp/react-native-inbox';
<SirenInbox />
Below are optional props available for the inbox component:
Prop | Description | Type | Default value |
---|---|---|---|
theme | Object for custom themes | Theme | {} |
customStyles | Object for custom styling | CustomStyleProps | {} |
darkMode | Toggle to enable dark mode | boolean | false |
itemsPerFetch | Number of notifications fetch per api request (have a max cap of 50) | number | 20 |
cardProps | Props for customizing the notification cards | CardProps | { hideAvatar: false, disableAutoMarkAsRead: false, hideDelete: false } |
customCard | Function for rendering custom notification cards | (notification)=> JSX Element | null |
onCardClick | Custom click handler for notification cards | (notification)=> void | ()=>null |
listEmptyComponent | Custom component for empty notification list | JSX Element | null |
headerProps | Props for customizing the header | HeaderProps | { title: "Notifications", hideHeader: false, hideClearAll: false, customHeader: null, showBackButton:false, backButton: null, onBackPress: ()=> null } |
customFooter | Custom footer component | JSX Element | null |
customLoader | Custom component to display the initial loading state | JSX Element | null |
customErrorWindow | Custom error window | JSX Element | null |
onError | Callback for handling errors | (error: SirenErrorType)=> void | null |
Here are the available theme options:
type Theme = {
dark: ThemeProps;
light: ThemeProps;
};
type ThemeProps = {
colors?: {
primaryColor?: string;
textColor?: string;
neutralColor?: string;
borderColor?: string;
highlightedCardColor?: string;
dateColor?: string;
deleteIcon?: string;
timerIcon?: string;
clearAllIcon?: string;
infiniteLoader?: string;
};
windowHeader?: {
background?: string;
titleColor?: string;
headerActionColor?: string;
borderColor?: string;
};
windowContainer?: {
background?: string;
};
notificationCard?: {
borderColor?: string;
background?: string;
titleColor?: string;
subTitleColor?: string;
descriptionColor?: string;
};
}
Here are the custom style options for the notification inbox:
type CustomStyleProps = {
notificationIcon?: {
size?: number;
};
window?: {
width?: DimensionValue;
height?: DimensionValue;
};
windowHeader?: {
height?: number;
titleFontWeight?: TextStyle['fontWeight'];
titleSize?: number;
borderWidth?: string;
titlePadding?: number;
}
windowContainer?: {
padding?: number;
};
notificationCard?: {
padding?: number;
borderWidth?: number;
avatarSize?: number;
titleFontWeight?: TextStyle['fontWeight'];
titleSize?: number;
subTitleFontWeight?: TextStyle['fontWeight'];
subTitleSize?: number
descriptionFontWeight?: TextStyle['fontWeight'];
descriptionSize?: number;
dateSize?: number;
};
badgeStyle?: {
size?: number;
textSize?: number;
top?: number;
right?: number;
};
deleteIcon?:{
size?: number
};
dateIcon?:{
size?: number
};
clearAllIcon?:{
size?: number
};
};
type CardProps = {
hideAvatar?: boolean;
onAvatarClick?: (notification: NotificationDataType) => void;
disableAutoMarkAsRead?: boolean;
deleteIcon?: JSX.Element;
hideDelete?: boolean;
};
type HeaderProps = {
title?: string;
hideHeader?: boolean;
hideClearAll?: boolean;
customHeader?: JSX.Element | null;
showBackButton?: boolean;
backButton?: JSX.Element;
onBackPress?: () => void;
};
useSiren
is a hook that provides utility functions for modifying notifications.
import { useSiren } from '@sirenapp/react-native-inbox';
function MyComponent() {
const { markAsRead, deleteById } = useSiren();
function handleMarkAsRead(id) {
markAsRead(id);
}
function handleDeleteNotification(id) {
deleteById(id);
}
return (
{/* Your component logic */}
);
}
Functions | Parameters | Type | Description |
---|---|---|---|
markAsReadByDate | startDate | ISO date string | Sets the read status of notifications to true until the given date |
markAsRead | id | string | Set read status of a notification to true |
deleteById | id | string | Delete a notification by id |
deleteByDate | startDate | ISO date string | Delete all notifications until given date |
markAllAsViewed | startDate | ISO date string | Sets the viewed status of notifications to true until the given date |
Given below are all possible error codes thrown by sdk:
Error code | Description |
---|---|
INVALID_TOKEN | The token passed in the provider is invalid |
INVALID_RECIPIENT_ID | The recipient id passed in the provider is invalid |
TOKEN_VERIFICATION_FAILED | Verification of the given tokens has failed |
GENERIC_API_ERROR | Occurrence of an unexpected api error |
OUTSIDE_SIREN_CONTEXT | Attempting to invoke the functions outside the siren inbox context |
MISSING_PARAMETER | The required parameter is missing |
Here's a basic example to help you get started
import React from 'react';
import {SafeAreaView} from 'react-native';
import {SirenInbox,SirenInboxIcon,SirenProvider} from '@sirenapp/react-native-inbox';
function App(): React.JSX.Element {
const config = {
userToken: 'your_user_token',
recipientId: 'your_recipient_id',
};
return (
<SirenProvider config={config}>
<MyContainer />
</SirenProvider>
);
}
export default App;
function MyContainer(): React.JSX.Element {
return (
<View>
<SirenInboxIcon
darkMode={false}
/>
<SirenInbox
hideHeader={false}
darkMode={false}
cardProps={{hideAvatar: false, disableAutoMarkAsRead: false}}
/>
</View>
);
}
export default MyContainer;