Knock Expo SDK
A set of components for integrating Knock in-app notifications into an Expo + React Native application.
Not using Expo? See our vanilla React Native SDK.
Installation
Via NPM:
npm install @knocklabs/expo
Via Yarn:
yarn add @knocklabs/expo
Migrating from @knocklabs/react-native
As of @knocklabs/react-native
v0.4.0, KnockExpoPushNotificationProvider
has moved to our Expo SDK. To migrate:
-
Remove @knocklabs/react-native
from your project
NPM:
npm uninstall @knocklabs/react-native
Yarn:
yarn remove @knocklabs/react-native
-
Install @knocklabs/expo
NPM:
npm install @knocklabs/expo
Yarn:
yarn add @knocklabs/expo
-
Update any import statements from @knocklabs/react-native
to @knocklabs/expo
From:
import {
KnockExpoPushNotificationProvider,
KnockFeedProvider,
KnockProvider,
NotificationIconButton,
} from "@knocklabs/react-native";
To:
import {
KnockExpoPushNotificationProvider,
KnockFeedProvider,
KnockProvider,
NotificationIconButton,
} from "@knocklabs/expo";
Configuration
To configure the feed you will need:
- A public API key (found in the Knock dashboard)
- A user ID, and optionally an auth token for production environments
- If integrating an in-app feed, a feed channel ID (found in the Knock dashboard)
Usage
You can integrate the feed into your app as follows:
import {
KnockFeedProvider,
KnockProvider,
NotificationFeedContainer,
} from "@knocklabs/expo";
const YourAppLayout = () => {
const [isVisible, setIsVisible] = useState(false);
const notifButtonRef = useRef(null);
return (
<KnockProvider apiKey={process.env.KNOCK_PUBLIC_API_KEY} userId={userId}>
<KnockFeedProvider feedId={process.env.KNOCK_FEED_ID}>
<NotificationFeedContainer>
<Text>Notifications go in here!</Text>
</NotificationFeedContainer>
</KnockFeedProvider>
</KnockProvider>
);
};
Headless usage
Alternatively, if you don't want to use our components you can render the feed in a headless mode using our hooks:
import { useAuthenticatedKnockClient, useNotifications } from "@knocklabs/expo";
import create from "zustand";
const YourAppLayout = () => {
const knockClient = useAuthenticatedKnockClient(
process.env.KNOCK_PUBLIC_API_KEY,
currentUser.id,
);
const notificationFeed = useNotifications(
knockClient,
process.env.KNOCK_FEED_ID,
);
const useNotificationStore = create(notificationFeed.store);
const { metadata } = useNotificationStore();
useEffect(() => {
notificationFeed.fetch();
}, [notificationFeed]);
return <Text>Total unread: {metadata.unread_count}</Text>;
};
Related links