Custom directives
An abstract Directive base class whose disconnected method will be called when the part containing the directive is cleared as a result of re-rendering, or when the user calls part.setConnected(false) on a part that was previously rendered containing the directive (as happens when e.g. a LitElement disconnects from the DOM).
导入
详情
If part.setConnected(true) is subsequently called on a containing part, the directive's reconnected method will be called prior to its next update/render callbacks. When implementing disconnected, reconnected should also be implemented to be compatible with reconnection. Note that updates may occur while the directive is disconnected. As such, directives should generally check the this.isConnected flag during render/update to determine whether it is safe to subscribe to resources that may prevent garbage collection.
方法和属性
new AsyncDirective(_partInfo): AsyncDirective
永久链接到 constructor参数
- _partInfo
PartInfo
The connection state for this Directive.
User callbacks for implementing logic to release any resources/subscriptions that may have been retained by this directive. Since directives may also be re-connected, reconnected should also be implemented to restore the working state of the directive prior to the next render.
参数
- props
Array<unknown>
Sets the value of the directive's Part outside the normal update/render lifecycle of a directive.
参数
- value
unknownThe value to set
详情
This method should not be called synchronously from a directive's update or render.
参数
- _part
Part- props
Array<unknown>
导入
方法和属性
new AttributePart(element, name, strings, parent, options): AttributePart
永久链接到 constructor参数
- element
HTMLElement- name
string- strings
ReadonlyArray<string>- parent
Disconnectable- options
undefined | RenderOptions
If this attribute part represents an interpolation, this contains the static strings of the interpolation. For single-value, complete bindings, this is undefined.
导入
方法和属性
new BooleanAttributePart(element, name, strings, parent, options): BooleanAttributePart
永久链接到 constructor参数
- element
HTMLElement- name
string- strings
ReadonlyArray<string>- parent
Disconnectable- options
undefined | RenderOptions
If this attribute part represents an interpolation, this contains the static strings of the interpolation. For single-value, complete bindings, this is undefined.
导入
方法和属性
new ChildPart(startNode, endNode, parent, options): ChildPart
永久链接到 constructor参数
- startNode
ChildNode- endNode
null | ChildNode- parent
undefined | ChildPart | TemplateInstance- options
undefined | RenderOptions
The part's trailing marker node, if any. See .parentNode for more information.
The parent node into which the part renders its content.
详情
A ChildPart's content consists of a range of adjacent child nodes of .parentNode, possibly bordered by 'marker nodes' (.startNode and .endNode).
- If both
.startNodeand.endNodeare non-null, then the part's content consists of all siblings between.startNodeand.endNode, exclusively. - If
.startNodeis non-null but.endNodeis null, then the part's content consists of all siblings following.startNode, up to and including the last child of.parentNode. If.endNodeis non-null, then.startNodewill always be non-null. - If both
.endNodeand.startNodeare null, then the part's content consists of all child nodes of.parentNode.
The part's leading marker node, if any. See .parentNode for more information.
Creates a user-facing directive function from a Directive class. This function has the same parameters as the directive's render() method.
导入
签名
directive(c): (values: Parameters<InstanceType<C>["render"]>) => DirectiveResult<C>
参数
- c
C
Base class for creating custom directives. Users should extend this class, implement render and/or update, and then pass their subclass to directive.
导入
方法和属性
new Directive(_partInfo): Directive
永久链接到 constructor参数
- _partInfo
PartInfo
参数
- props
Array<unknown>
参数
- _part
Part- props
Array<unknown>
导入
方法和属性
new ElementPart(element, parent, options): ElementPart
永久链接到 constructor参数
- element
Element- parent
Disconnectable- options
undefined | RenderOptions
导入
方法和属性
new EventPart(element, name, strings, parent, options): EventPart
永久链接到 constructor参数
- element
HTMLElement- name
string- strings
ReadonlyArray<string>- parent
Disconnectable- options
undefined | RenderOptions
If this attribute part represents an interpolation, this contains the static strings of the interpolation. For single-value, complete bindings, this is undefined.
参数
- event
Event
导入
类型
{ATTRIBUTE: 1, BOOLEAN_ATTRIBUTE: 4, CHILD: 2, ELEMENT: 6, EVENT: 5, PROPERTY: 3}导入
方法和属性
new PropertyPart(element, name, strings, parent, options): PropertyPart
永久链接到 constructor参数
- element
HTMLElement- name
string- strings
ReadonlyArray<string>- parent
Disconnectable- options
undefined | RenderOptions
If this attribute part represents an interpolation, this contains the static strings of the interpolation. For single-value, complete bindings, this is undefined.
导入
方法和属性
导入
方法和属性
导入
This utility type extracts the signature of a directive class's render() method so we can use it for the type of the generated directive function.
导入
类型
Parameters<C["render"]>A generated directive function doesn't evaluate the directive, but just returns a DirectiveResult object that captures the arguments.
导入
导入
方法和属性
导入
类型
ChildPart | AttributePart | PropertyPart | BooleanAttributePart | ElementPart | EventPartInformation about the part a directive is bound to.
导入
类型
ChildPartInfo | AttributePartInfo | ElementPartInfo详情
This is useful for checking that a directive is attached to a valid part, such as with directive that can only be used on attribute bindings.
导入
签名
clearPart(part): void
参数
- part
ChildPart
Returns the committed value of a ChildPart.
导入
签名
getCommittedValue(part): unknown
参数
- part
ChildPart
详情
The committed value is used for change detection and efficient updates of the part. It can differ from the value set by the template or directive in cases where the template value is transformed before being committed.
TemplateResults are committed as aTemplateInstance- Iterables are committed as
Array<ChildPart> - All other types are committed as the template value or value returned or set by a directive.
Retrieves the Directive class for a DirectiveResult
导入
签名
getDirectiveClass(value): undefined | DirectiveClass
参数
- value
unknown
Inserts a ChildPart into the given container ChildPart's DOM, either at the end of the container ChildPart, or before the optional refPart.
导入
签名
insertPart(containerPart, refPart?, part?): ChildPart
参数
- containerPart
ChildPartPart within which to add the new ChildPart
- refPart?
ChildPartPart before which to add the new ChildPart; when omitted the part added to the end of the
containerPart- part?
ChildPartPart to insert, or undefined to create a new part
详情
This does not add the part to the containerPart's committed value. That must be done by callers.
Tests if a value is a DirectiveResult.
导入
签名
isDirectiveResult(value): value
参数
- value
unknown
Tests if a value is a primitive value.
导入
签名
isPrimitive(value): value
参数
- value
unknown
详情
See https://tc39.github.io/ecma262/#sec-typeof-operator
Tests whether a part has only a single-expression with no strings to interpolate between.
导入
签名
isSingleExpression(part): boolean
参数
- part
PartInfo
详情
Only AttributePart and PropertyPart can have multiple expressions. Multi-expression parts have a strings property and single-expression parts do not.
Tests if a value is a TemplateResult.
导入
签名
isTemplateResult(value, type?): value
参数
- value
unknown- type?
TemplateResultType
Removes a ChildPart from the DOM, including any of its content.
导入
签名
removePart(part): void
参数
- part
ChildPartThe Part to remove
Sets the value of a Part.
导入
签名
setChildPartValue(part, value, directiveParent?): T
参数
- part
TPart to set
- value
unknownValue to set
- directiveParent?
DirectiveParentUsed internally; should not be set by user
详情
Note that this should only be used to set/update the value of user-created parts (i.e. those created using insertPart); it should not be used by directives to set the value of the directive's container part. Directives should return a value from update/render to update their part state. For directives that require setting their part value asynchronously, they should extend AsyncDirective and call this.setValue().
Sets the committed value of a ChildPart directly without triggering the commit stage of the part.
导入
签名
setCommittedValue(part, value?): unknown
参数
- part
Part- value?
unknown
详情
This is useful in cases where a directive needs to update the part such that the next update detects a value change or not. When value is omitted, the next update will be guaranteed to be detected as a change.
导入
类型
{HTML: 1, SVG: 2}A sentinel value that signals that a value was handled by a directive and should not be written to the DOM.
导入
类型
symbol