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
protectedreadonly_yBlocks:Map<State[keyofState]>
Source
packages/framework/store/src/store/space.ts:28
_ySpaceDoc
Internal
protectedreadonly_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
readonlyawarenessStore:AwarenessStore<BlockSuiteFlags>
Source
packages/framework/store/src/store/space.ts:17
id
readonlyid:string
Source
packages/framework/store/src/store/space.ts:15
rootDoc
readonlyrootDoc:BlockSuiteDoc
Source
packages/framework/store/src/store/space.ts:16
Accessors
loaded
getloaded():boolean
Returns
boolean
Source
packages/framework/store/src/store/space.ts:48
spaceDoc
getspaceDoc():Doc
Returns
Source
packages/framework/store/src/store/space.ts:52
yBlocks
getyBlocks():Map<State[keyofState]>
Returns
Map<State[keyof State]>
Source
packages/framework/store/src/store/space.ts:44
Methods
_initSubDoc()
private_initSubDoc():Doc
Returns
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