Comments - Metadata

In Comments, each thread can be given custom metadata. This is helpful for integrating Comments into various applications, for example it can be used to store:

  • The priority, status, or category of a thread.
  • Coordinates or timestamps related to the thread.
  • Quoted text in a text editor.

Valid metadata

You can store any string, boolean, or number in thread metadata, for example:

metadata: {  priority: "URGENT",  resolved: false,  timestamp: 1703073188013,}

Setting a property to null will remove it.

metadata: {  timestamp: null,}

You can store up to 50 metadata properties per thread, and each property can be 4000 characters long.

Setting metadata

Metadata can be set using the default components, React hooks, or by editing thread using the REST APIs. But before making any changes, it’s recommended to set your metadata type in your config file.

liveblocks.config.ts
import { createClient } from "@liveblocks/client";import { createRoomContext } from "@liveblocks/react";
const client = createClient({ // ... resolveUsers({ userIds }) { // ... }, resolveMentionSuggestions({ text, roomId }) { // ... },});
type Presence = {};type Storage = {};type UserMeta = {};type RoomEvent = {};
// Set your custom metadata propertiesexport type ThreadMetadata = { priority: string; resolved: boolean; timestamp: number;};
export const { RoomProvider, // ...} = createRoomContext< Presence, Storage UserMeta, RoomEvent, ThreadMetadata,>(client);

Composer component

The <Composer /> component is used to create threads and comments, and by default it’ll create a new thread, with optional metadata, when its form is submitted.

Composer

When using it to create a thread, you can pass custom metadata, which will be attached to the thread. You can also import your ThreadMetadata type from your config file to take advantage of TypeScript.

import { Composer } from "@liveblocks/react-comments";import { ThreadMetadata } from "../liveblocks.config";
// Creates a new thread with custom metadatafunction Component() { return ( <Composer<ThreadMetadata> metadata={{ // Custom metadata here priority: "URGENT", resolved: false, timestamp: 1703073188013, }} /> );}

Mutation hooks

Two mutation hooks allow you to edit thread metadata: useEditThreadMetadata and useCreateThread. Here’s one way to create a button that sets the resolved metadata property to true.

import { useEditThreadMetadata } from "../liveblocks.config";
// Button that sets `resolved` metadata to `true`function Component() { const editThreadMetadata = useEditThreadMetadata();
return ( <button onClick={() => editThreadMetadata({ threadId: "th_d75sF3...", metadata: { resolved: true }, }) } > Resolve thread </button> );}

These hooks are exported from your config file and provide full typing.

REST APIs

It’s possible to modify metadata from our REST APIs using the @liveblocks/node package. Here’s an example using liveblocks.editThreadMetadata.

import { Liveblocks } from "@liveblocks/node";
// Create a Node.js clientconst liveblocks = new Liveblocks({ secret: "" });
// Edit a thread's `priority` metadata, passing the user ID that made the changeawait liveblocks.editThreadMetadata({ roomId: "my-room-id", threadId: "th_d75sF3...",
data: { metadata: { priority: "IMPORTANT", }, userId: "florent@example.com", },});

The same result can also be achieved directly through our edit thread metadata REST API.

$curl -X POST https://api.liveblocks.io/v2/rooms/my-room-id/threads/th_d75sF3.../metadata \  -H "Authorization: Bearer YOUR_SECRET_KEY" \  -H "Content-Type: application/json" \  -d '{"metadata": {"priority": "IMPORTANT"}, "userId": "florent@example.com"}'