2022-06-25 14:38:43 +00:00
|
|
|
import { createClient } from '@liveblocks/client'
|
|
|
|
import type { EnsureJson, LiveMap, LiveObject } from '@liveblocks/client'
|
|
|
|
import { createRoomContext } from '@liveblocks/react'
|
2022-08-02 13:56:12 +00:00
|
|
|
import type { TDAsset, TDBinding, TDDocument, TDShape, TDUser } from '@tldraw/tldraw'
|
2022-06-25 14:38:43 +00:00
|
|
|
|
|
|
|
const client = createClient({
|
|
|
|
publicApiKey: process.env.NEXT_PUBLIC_LIVEBLOCKS_PUBLIC_API_KEY || '',
|
|
|
|
throttle: 80,
|
|
|
|
})
|
|
|
|
|
|
|
|
// Presence represents the properties that will exist on every User in the
|
|
|
|
// Liveblocks Room and that will automatically be kept in sync. Accessible
|
|
|
|
// through the `user.presence` property.
|
|
|
|
type Presence = {
|
|
|
|
id?: string
|
|
|
|
user: EnsureJson<TDUser>
|
|
|
|
}
|
|
|
|
|
|
|
|
// Storage represents the shared document that persists in the Room, even after
|
|
|
|
// all Users leave, and for which updates are automatically persisted and
|
|
|
|
// synced to all connected clients.
|
|
|
|
export type Storage = {
|
|
|
|
version: number
|
|
|
|
doc: LiveObject<{
|
|
|
|
uuid: string
|
|
|
|
document: EnsureJson<TDDocument>
|
|
|
|
migrated?: boolean
|
|
|
|
}>
|
|
|
|
shapes: LiveMap<string, EnsureJson<TDShape>>
|
|
|
|
bindings: LiveMap<string, EnsureJson<TDBinding>>
|
|
|
|
assets: LiveMap<string, EnsureJson<TDAsset>>
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optionally, UserMeta represents static/readonly metadata on each User, as
|
|
|
|
// provided by your own custom auth backend. This isn't used for TLDraw.
|
|
|
|
// type UserMeta = {
|
|
|
|
// id?: string, // Accessible through `user.id`
|
|
|
|
// info?: Json, // Accessible through `user.info`
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Optionally, the type of custom events broadcasted and listened for in this
|
|
|
|
// room.
|
|
|
|
// type RoomEvent = {};
|
|
|
|
|
|
|
|
const { RoomProvider, useHistory, useRedo, useUndo, useRoom, useUpdateMyPresence } =
|
|
|
|
createRoomContext<
|
|
|
|
Presence,
|
|
|
|
Storage
|
|
|
|
/* UserMeta, RoomEvent */
|
|
|
|
>(client)
|
|
|
|
|
|
|
|
export { RoomProvider, useHistory, useRedo, useUndo, useRoom, useUpdateMyPresence }
|