BlockSuite API Documentation / @blocksuite/block-std / Clipboard
Class: Clipboard
Defined in: packages/framework/block-std/src/clipboard/index.ts:63
A life cycle watcher is an extension that watches the life cycle of the editor. It is used to perform actions when the editor is created, mounted, rendered, or unmounted.
When creating a life cycle watcher, you must define a key that is unique to the watcher. The key is used to identify the watcher in the dependency injection container.
class MyLifeCycleWatcher extends LifeCycleWatcher {
static override readonly key = 'my-life-cycle-watcher';
In the life cycle watcher, the methods will be called in the following order:
created
: Called when the std is created.rendered
: Called whenstd.render
is called.mounted
: Called when the editor host is mounted.unmounted
: Called when the editor host is unmounted.
Extends
Constructors
new Clipboard()
new Clipboard(
std
):Clipboard
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:28
Parameters
std
Returns
Clipboard
Inherited from
Properties
std
readonly
std:BlockStdScope
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:28
Inherited from
key
readonly
static
key:"clipboard"
='clipboard'
Defined in: packages/framework/block-std/src/clipboard/index.ts:64
Overrides
Accessors
configs
Get Signature
get configs():
Map
<string
,string
>
Defined in: packages/framework/block-std/src/clipboard/index.ts:268
Returns
Map
<string
, string
>
Methods
copy()
copy(
slice
):Promise
<void
>
Defined in: packages/framework/block-std/src/clipboard/index.ts:160
Parameters
slice
Returns
Promise
<void
>
copySlice()
copySlice(
slice
):Promise
<void
>
Defined in: packages/framework/block-std/src/clipboard/index.ts:165
Parameters
slice
Returns
Promise
<void
>
created()
created():
void
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:52
Called when std is created.
Returns
void
Inherited from
duplicateSlice()
duplicateSlice(
slice
,doc
,parent
?,index
?,type
?):Promise
<void
>
Defined in: packages/framework/block-std/src/clipboard/index.ts:183
Parameters
slice
doc
parent?
string
index?
number
type?
string
= 'BLOCKSUITE/SNAPSHOT'
Returns
Promise
<void
>
mounted()
mounted():
void
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:58
Called when editor host is mounted. Which means the editor host emit the connectedCallback
lifecycle event.
Returns
void
Inherited from
paste()
paste(
event
,doc
,parent
?,index
?):Promise
<undefined
|null
|Slice
>
Defined in: packages/framework/block-std/src/clipboard/index.ts:202
Parameters
event
ClipboardEvent
doc
parent?
string
index?
number
Returns
Promise
<undefined
| null
| Slice
>
pasteBlockSnapshot()
pasteBlockSnapshot(
snapshot
,doc
,parent
?,index
?):Promise
<undefined
|BlockModel
<object
>>
Defined in: packages/framework/block-std/src/clipboard/index.ts:239
Parameters
snapshot
doc
parent?
string
index?
number
Returns
Promise
<undefined
| BlockModel
<object
>>
readFromClipboard()
readFromClipboard(
clipboardData
):any
Defined in: packages/framework/block-std/src/clipboard/index.ts:291
Parameters
clipboardData
DataTransfer
Returns
any
registerAdapter()
registerAdapter<
T
>(mimeType
,adapter
,priority
):void
Defined in: packages/framework/block-std/src/clipboard/index.ts:248
Type Parameters
T
T
extends BaseAdapter
<unknown
>
Parameters
mimeType
string
adapter
AdapterConstructor
<T
>
priority
number
= 0
Returns
void
rendered()
rendered():
void
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:63
Called when std.render
is called.
Returns
void
Inherited from
sliceToSnapshot()
sliceToSnapshot(
slice
):undefined
|SliceSnapshot
Defined in: packages/framework/block-std/src/clipboard/index.ts:311
Parameters
slice
Returns
undefined
| SliceSnapshot
unmounted()
unmounted():
void
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:69
Called when editor host is unmounted. Which means the editor host emit the disconnectedCallback
lifecycle event.
Returns
void
Inherited from
unregisterAdapter()
unregisterAdapter(
mimeType
):void
Defined in: packages/framework/block-std/src/clipboard/index.ts:256
Parameters
mimeType
string
Returns
void
unuse()
unuse(
middleware
):void
Defined in: packages/framework/block-std/src/clipboard/index.ts:260
Parameters
middleware
Returns
void
use()
use(
middleware
):void
Defined in: packages/framework/block-std/src/clipboard/index.ts:264
Parameters
middleware
Returns
void
writeToClipboard()
writeToClipboard(
updateItems
):Promise
<void
>
Defined in: packages/framework/block-std/src/clipboard/index.ts:316
Parameters
updateItems
(items
) => Record
<string
, unknown
> | Promise
<Record
<string
, unknown
>>
Returns
Promise
<void
>
setup()
static
setup(di
):void
Defined in: packages/framework/block-std/src/extension/lifecycle-watcher.ts:32
Parameters
di
Container
Returns
void