1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import type { LexicalNode, NodeKey, SerializedLexicalNode } from 'lexical'
- import { DecoratorNode } from 'lexical'
- import type { WorkflowVariableBlockType } from '../../types'
- import WorkflowVariableBlockComponent from './component'
- export type WorkflowNodesMap = WorkflowVariableBlockType['workflowNodesMap']
- export type SerializedNode = SerializedLexicalNode & {
- variables: string[]
- workflowNodesMap: WorkflowNodesMap
- }
- export class WorkflowVariableBlockNode extends DecoratorNode<JSX.Element> {
- __variables: string[]
- __workflowNodesMap: WorkflowNodesMap
- static getType(): string {
- return 'workflow-variable-block'
- }
- static clone(node: WorkflowVariableBlockNode): WorkflowVariableBlockNode {
- return new WorkflowVariableBlockNode(node.__variables, node.__workflowNodesMap)
- }
- isInline(): boolean {
- return true
- }
- constructor(variables: string[], workflowNodesMap: WorkflowNodesMap, key?: NodeKey) {
- super(key)
- this.__variables = variables
- this.__workflowNodesMap = workflowNodesMap
- }
- createDOM(): HTMLElement {
- const div = document.createElement('div')
- div.classList.add('inline-flex', 'items-center', 'align-middle')
- return div
- }
- updateDOM(): false {
- return false
- }
- decorate(): JSX.Element {
- return (
- <WorkflowVariableBlockComponent
- nodeKey={this.getKey()}
- variables={this.__variables}
- workflowNodesMap={this.__workflowNodesMap}
- />
- )
- }
- static importJSON(serializedNode: SerializedNode): WorkflowVariableBlockNode {
- const node = $createWorkflowVariableBlockNode(serializedNode.variables, serializedNode.workflowNodesMap)
- return node
- }
- exportJSON(): SerializedNode {
- return {
- type: 'workflow-variable-block',
- version: 1,
- variables: this.getVariables(),
- workflowNodesMap: this.getWorkflowNodesMap(),
- }
- }
- getVariables(): string[] {
- const self = this.getLatest()
- return self.__variables
- }
- getWorkflowNodesMap(): WorkflowNodesMap {
- const self = this.getLatest()
- return self.__workflowNodesMap
- }
- getTextContent(): string {
- return `{{#${this.getVariables().join('.')}#}}`
- }
- }
- export function $createWorkflowVariableBlockNode(variables: string[], workflowNodesMap: WorkflowNodesMap): WorkflowVariableBlockNode {
- return new WorkflowVariableBlockNode(variables, workflowNodesMap)
- }
- export function $isWorkflowVariableBlockNode(
- node: WorkflowVariableBlockNode | LexicalNode | null | undefined,
- ): node is WorkflowVariableBlockNode {
- return node instanceof WorkflowVariableBlockNode
- }
|