BlockSuite API Documentation / @blocksuite/blocks / EdgelessTemplatePanel
Class: EdgelessTemplatePanel
Extends
LitElement
<this
> &DisposableClass
<this
>
Constructors
new EdgelessTemplatePanel()
new EdgelessTemplatePanel():
EdgelessTemplatePanel
Returns
Inherited from
WithDisposable(LitElement).constructor
Defined in
node_modules/@lit/reactive-element/development/reactive-element.d.ts:504
Other
_disposables
protected
_disposables:DisposableGroup
Inherited from
WithDisposable(LitElement)._disposables
Defined in
packages/framework/global/dist/utils/with-disposable.d.ts:5
disposables
readonly
disposables:DisposableGroup
Inherited from
WithDisposable(LitElement).disposables
Defined in
packages/framework/global/dist/utils/with-disposable.d.ts:6
draggableController
draggableController:
EdgelessDraggableElementController
<Template
>
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:202
virtualKeyboardPolicy
virtualKeyboardPolicy:
string
Inherited from
WithDisposable(LitElement).virtualKeyboardPolicy
Defined in
packages/framework/global/dist/types/virtual-keyboard.d.ts:20
styles
static
styles:CSSResult
Overrides
WithDisposable(LitElement).styles
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:28
templates
static
templates:object
=builtInTemplates
categories()
categories: () =>
Promise
<string
[]>
Returns
Promise
<string
[]>
list()
list: (
category
) =>Promise
<Template
[]>
Parameters
category
string
Returns
Promise
<Template
[]>
search()
search: (
keyword
,cateName
?) =>Promise
<Template
[]>
Parameters
keyword
string
cateName?
string
Returns
Promise
<Template
[]>
extend()
Parameters
manager
Returns
void
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:198
edgeless
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:508
isDragging
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:511
lifecycle
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
WithDisposable(LitElement).connectedCallback
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:341
rendering
render()
render():
TemplateResult
<1
>
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
>
Overrides
WithDisposable(LitElement).render
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:371
updates
firstUpdated()
firstUpdated():
void
Invoked when the element is first updated. Implement to perform one time work on the element after update.
firstUpdated() {
this.renderRoot.getElementById('my-text-area').focus();
}
Setting properties inside this method will trigger the element to update again after this update cycle completes.
Returns
void
Overrides
WithDisposable(LitElement).firstUpdated
Defined in
packages/blocks/src/root-block/edgeless/components/toolbar/template/template-panel.ts:355