A client-side Javascript library to interact with user-facing Knock features, such as feeds.
Note: this is a lower level library designed for building UI on top of
See the documentation for usage examples.
Via NPM:
npm install @knocklabs/client
Via Yarn:
yarn add @knocklabs/client
To configure the client library you will need:
- A public API key (found in the Knock dashboard)
- A feed channel ID (found in the Knock dashboard)
- A user ID, and optionally an auth token for production environments
import Knock from "@knocklabs/client";
const knockClient = new Knock(process.env.KNOCK_API_KEY);
knockClient.authenticate(
// The id of the user you want to authenticate against
currentUser.id,
// You only need this in production environments
currentUser.knockToken,
);
import Knock from "@knocklabs/client";
const knockClient = new Knock(process.env.KNOCK_API_KEY);
// Authenticate the user
knockClient.authenticate(currentUser.id, currentUser.knockToken);
// Initialize the feed
const feedClient = knockClient.feeds.initialize(
process.env.KNOCK_FEED_CHANNEL_ID,
// Optionally you can provide a default scope here:
// { tenant: "jurassic-park", source: "new-comment" },
);
// Connect to the real-time socket
feedClient.listenForUpdates();
// Setup a callback for when a batch of items is received (including on first load and subsequent page load)
feedClient.on("items.received.page", ({ items }) => {
console.log(items);
});
// Setup a callback for when new items arrive in real-time
feedClient.on("items.received.realtime", ({ items }) => {
console.log(items);
});
// Listen to all received items
feedClient.on("items.received.*", ({ items }) => {
console.log(items);
});
// Fetch the feed items
feedClient.fetch({
// Fetch a particular status only (defaults to all)
status: "all" | "unread" | "unseen",
// Pagination options
after: lastItem.__cursor,
before: firstItem.__cursor,
// Defaults to 50
page_size: 10,
// Filter by a specific source
source: "notification-key",
// Filter by a specific tenant
tenant: "jurassic-park",
});
feedClient.teardown();
// Initialize the feed as in above examples
const feedClient = knockClient.feeds.initialize(
process.env.KNOCK_FEED_CHANNEL_ID,
);
// Gives you all of the items currently in the store
const { items } = feedClient.store.getState();
// The feed store uses zustand
import create from "zustand";
// Initialize the feed as in above examples
const feedClient = knockClient.feeds.initialize(
process.env.KNOCK_FEED_CHANNEL_ID,
);
const useFeedStore = create(feedClient.store);
// Retrieves all of the items
const items = useFeedStore((state) => state.items);
// Retrieve the badge counts
const meta = useFeedStore((state) => state.metadata);
// Initialize the feed as in above examples
const feedClient = knockClient.feeds.initialize(
process.env.KNOCK_FEED_CHANNEL_ID,
);
// Mark one or more items as read
feedClient.markAsRead(feedItemOrItems);
// Mark one or more items as seen
feedClient.markAsSeen(feedItemOrItems);
// Mark one or more items as archived
feedClient.markAsArchived(feedItemOrItems);
// Mark one or more items as unread
feedClient.markAsUnread(feedItemOrItems);
// Mark one or more items as unseen
feedClient.markAsUnseen(feedItemOrItems);
// Mark one or more items as unarchived
feedClient.markAsUnarchived(feedItemOrItems);
// Set an entire preference set
await knockClient.user.setPreferences({
channel_types: { email: true, sms: false },
workflows: {
"dinosaurs-loose": {
channel_types: { email: false, in_app_feed: true },
},
},
});
// Retrieve a whole preference set
const preferences = await knockClient.user.getPreferences();
// Retrieve all preference sets for the user
const preferenceSets = await knockClient.user.getAllPreferences();
// Get user channel data
const channelData = await knockClient.user.getChannelData({
channelId: "uuid-knock-channel-id",
});
// Set push channel data for a user
await knockClient.user.setChannelData({
channelId: "uuid-knock-channel-id",
channelData: {
tokens: ["apns-user-push-token"],
},
});
See provider requirements for setting channel data here.
Optionally, you can configure the client to disconnect socket connections with inactive tabs after a brief delay. If the tab becomes active again, the socket will reconnect to continue receiving real-time notification updates.
// Initialize the feed and configure the automatic disconnect settings
const feedClient = knockClient.feeds.initialize(
process.env.KNOCK_FEED_CHANNEL_ID,
{
// Turn on the automatic connection manager
auto_manage_socket_connection: true,
// Optionally, customize the delay amount in milliseconds. Defaults to 2000ms or 2s
auto_manage_socket_connection_delay: 2500,
},
);