Skip to main content

Class: HashtagNode

@lexical/hashtag.HashtagNode

Hierarchy

Constructors

constructor

new HashtagNode(text, key?)

Parameters

NameType
textstring
key?string

Overrides

TextNode.constructor

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:29

Methods

canInsertTextBefore

canInsertTextBefore(): boolean

Returns

boolean

Overrides

TextNode.canInsertTextBefore

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:55


createDOM

createDOM(config): HTMLElement

Called during the reconciliation process to determine which nodes to insert into the DOM for this Lexical Node.

This method must return exactly one HTMLElement. Nested elements are not supported.

Do not attempt to update the Lexical EditorState during this phase of the update lifecyle.

Parameters

NameTypeDescription
configEditorConfigallows access to things like the EditorTheme (to apply classes) during reconciliation.

Returns

HTMLElement

Overrides

TextNode.createDOM

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:33


exportJSON

exportJSON(): SerializedTextNode

Controls how the this node is serialized to JSON. This is important for copy and paste between Lexical editors sharing the same namespace. It's also important if you're serializing to JSON for persistent storage somewhere. See Serialization & Deserialization.

Returns

SerializedTextNode

Overrides

TextNode.exportJSON

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:48


isTextEntity

isTextEntity(): true

Returns

true

Overrides

TextNode.isTextEntity

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:59


clone

Static clone(node): HashtagNode

Clones this node, creating a new node with a different key and adding it to the EditorState (but not attaching it anywhere!). All nodes must implement this method.

Parameters

NameType
nodeHashtagNode

Returns

HashtagNode

Overrides

TextNode.clone

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:25


getType

Static getType(): string

Returns the string type of this node. Every node must implement this and it MUST BE UNIQUE amongst nodes registered on the editor.

Returns

string

Overrides

TextNode.getType

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:21


importJSON

Static importJSON(serializedNode): HashtagNode

Controls how the this node is deserialized from JSON. This is usually boilerplate, but provides an abstraction between the node implementation and serialized interface that can be important if you ever make breaking changes to a node schema (by adding or removing properties). See Serialization & Deserialization.

Parameters

NameType
serializedNodeSerializedTextNode

Returns

HashtagNode

Overrides

TextNode.importJSON

Defined in

lexical-hashtag/src/LexicalHashtagNode.ts:39