Skip to content

BlockSuite API Documentation / @blocksuite/store / Space

Class: Space<State>

Extended by

Type parameters

State extends Record<string, unknown> = Record<string, any>

Constructors

new Space(id, rootDoc, awarenessStore)

new Space<State>(id, rootDoc, awarenessStore): Space<State>

Parameters

id: string

rootDoc: BlockSuiteDoc

awarenessStore: AwarenessStore<BlockSuiteFlags>

Returns

Space<State>

Source

packages/framework/store/src/store/space.ts:30

Properties

_loaded

private _loaded: boolean

Source

packages/framework/store/src/store/space.ts:19


_onLoadSlot

private _onLoadSlot: Slot<void>

Source

packages/framework/store/src/store/space.ts:21


_yBlocks

protected readonly _yBlocks: Map<State[keyof State]>

Source

packages/framework/store/src/store/space.ts:28


_ySpaceDoc

Internal

protected readonly _ySpaceDoc: Doc

Used for convenient access to the underlying Yjs map, can be used interchangeably with ySpace

Source

packages/framework/store/src/store/space.ts:27


awarenessStore

readonly awarenessStore: AwarenessStore<BlockSuiteFlags>

Source

packages/framework/store/src/store/space.ts:17


id

readonly id: string

Source

packages/framework/store/src/store/space.ts:15


rootDoc

readonly rootDoc: BlockSuiteDoc

Source

packages/framework/store/src/store/space.ts:16

Accessors

loaded

get loaded(): boolean

Returns

boolean

Source

packages/framework/store/src/store/space.ts:48


spaceDoc

get spaceDoc(): Doc

Returns

Doc

Source

packages/framework/store/src/store/space.ts:52


yBlocks

get yBlocks(): Map<State[keyof State]>

Returns

Map<State[keyof State]>

Source

packages/framework/store/src/store/space.ts:44

Methods

_initSubDoc()

private _initSubDoc(): Doc

Returns

Doc

Source

packages/framework/store/src/store/space.ts:77


_onSubdocEvent()

private _onSubdocEvent(__namedParameters): void

Parameters

__namedParameters

__namedParameters.loaded: Set<Doc>

Returns

void

Source

packages/framework/store/src/store/space.ts:94


clear()

clear(): void

Returns

void

Source

packages/framework/store/src/store/space.ts:73


destroy()

destroy(): void

Returns

void

Source

packages/framework/store/src/store/space.ts:67


load()

load(): Space<State>

Returns

Space<State>

Source

packages/framework/store/src/store/space.ts:56


remove()

remove(): void

Returns

void

Source

packages/framework/store/src/store/space.ts:62


transact()

transact(fn, shouldTransact): void

If shouldTransact is false, the transaction will not be push to the history stack.

Parameters

fn

shouldTransact: boolean= true

Returns

void

Source

packages/framework/store/src/store/space.ts:109