BlockSuite API Documentation / @blocksuite/blocks / EdgelessCopilotWidget
Class: EdgelessCopilotWidget
Extends
Constructors
new EdgelessCopilotWidget()
new EdgelessCopilotWidget():
EdgelessCopilotWidget
Returns
Inherited from
Defined in
node_modules/@lit/reactive-element/development/reactive-element.d.ts:504
Other
_disposables
protected
_disposables:DisposableGroup
Inherited from
Defined in
packages/framework/global/dist/utils/with-disposable.d.ts:5
disposables
readonly
disposables:DisposableGroup
Inherited from
Defined in
packages/framework/global/dist/utils/with-disposable.d.ts:6
groups
groups:
AIItemGroupConfig
[] =[]
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:54
handleEvent()
handleEvent: (
name
,handler
,options
?) =>void
Parameters
name
"click"
| "doubleClick"
| "tripleClick"
| "pointerDown"
| "pointerMove"
| "pointerUp"
| "pointerOut"
| "dragStart"
| "dragMove"
| "dragEnd"
| "pinch"
| "pan"
| "keyDown"
| "keyUp"
| "selectionChange"
| "compositionStart"
| "compositionUpdate"
| "compositionEnd"
| "cut"
| "copy"
| "paste"
| "nativeDragStart"
| "nativeDragMove"
| "nativeDragEnd"
| "nativeDrop"
| "beforeInput"
| "blur"
| "focus"
| "contextMenu"
| "wheel"
handler
options?
global
boolean
Returns
void
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:9
virtualKeyboardPolicy
virtualKeyboardPolicy:
string
Inherited from
WidgetComponent
.virtualKeyboardPolicy
Defined in
packages/framework/global/dist/types/virtual-keyboard.d.ts:20
block
Get Signature
get block():
B
Returns
B
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:12
doc
Get Signature
get doc():
Doc
Returns
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:13
edgeless
Get Signature
get edgeless():
EdgelessRootBlockComponent
Returns
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:56
flavour
Get Signature
get flavour():
string
Returns
string
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:14
host
Get Signature
get host():
EditorHost
Returns
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:15
model
Get Signature
get model():
Model
Returns
Model
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:16
selectionElem
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:294
selectionModelRect
Get Signature
get selectionModelRect():
DOMRect
Returns
DOMRect
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:60
selectionRect
Get Signature
get selectionRect():
object
Returns
object
height
height:
number
width
width:
number
x
x:
number
y
y:
number
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:64
service
Get Signature
get service():
S
Returns
S
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:17
std
Get Signature
get std():
BlockStdScope
Returns
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:18
visible
Get Signature
get visible():
boolean
Returns
boolean
Set Signature
set visible(
visible
):void
Parameters
visible
boolean
Returns
void
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:68
widgetId
Get Signature
get widgetId():
string
Returns
string
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:19
bindHotKey()
bindHotKey(
keymap
,options
?):void
Parameters
keymap
Record
<string
, UIEventHandler
>
options?
global
boolean
Returns
void
Inherited from
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:20
connectedCallback()
connectedCallback():
void
Invoked when the component is added to the document's DOM.
In connectedCallback()
you should setup tasks that should only occur when the element is connected to the document. The most common of these is adding event listeners to nodes external to the element, like a keydown event handler added to the window.
connectedCallback() {
super.connectedCallback();
addEventListener('keydown', this._handleKeydown);
}
Typically, anything done in connectedCallback()
should be undone when the element is disconnected, in disconnectedCallback()
.
Returns
void
Overrides
WidgetComponent
.connectedCallback
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:198
determineInsertionBounds()
determineInsertionBounds(
width
,height
):Bound
Parameters
width
number
= 800
height
number
= 95
Returns
Bound
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:238
hideCopilotPanel()
hideCopilotPanel():
void
Returns
void
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:254
lockToolbar()
lockToolbar(
disabled
):void
Parameters
disabled
boolean
Returns
void
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:260
render()
render():
TemplateResult
<1
> | typeofnothing
Invoked on each update to perform rendering tasks. This method may return any value renderable by lit-html's ChildPart
- typically a TemplateResult
. Setting properties inside this method will not trigger the element to update.
Returns
TemplateResult
<1
> | typeof nothing
Overrides
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:264
lifecycle
disconnectedCallback()
disconnectedCallback():
void
Invoked when the component is removed from the document's DOM.
This callback is the main signal to the element that it may no longer be used. disconnectedCallback()
should ensure that nothing is holding a reference to the element (such as event listeners added to nodes external to the element), so that it is free to be garbage collected.
disconnectedCallback() {
super.disconnectedCallback();
window.removeEventListener('keydown', this._handleKeydown);
}
An element may be re-connected after being disconnected.
Returns
void
Inherited from
WidgetComponent
.disconnectedCallback
Defined in
packages/framework/block-std/dist/view/element/widget-component.d.ts:24
styles
styles
static
styles:CSSResult
Array of styles to apply to the element. The styles should be defined using the css tag function, via constructible stylesheets, or imported from native CSS module scripts.
Note on Content Security Policy:
Element styles are implemented with <style>
tags when the browser doesn't support adopted StyleSheets. To use such <style>
tags with the style-src CSP directive, the style-src value must either include 'unsafe-inline' or nonce-<base64-value>
with <base64-value>
replaced be a server-generated nonce.
To provide a nonce to use on generated <style>
elements, set window.litNonce
to a server-generated nonce in your page's HTML, before loading application code:
<script>
// Generated and unique per request:
window.litNonce = 'a1b2c3d4';
</script>
Nocollapse
Overrides
WidgetComponent.styles
Defined in
packages/blocks/src/root-block/widgets/edgeless-copilot/index.ts:37