Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/ui/entity-selector/src/common/ |
Upload File : |
import { Type } from 'main.core'; import TextNodeType from './text-node-type'; import type { TextNodeOptions } from './text-node-options'; export default class TextNode { text: ?string = null; type: ?TextNodeType = null; constructor(options: TextNodeOptions | string) { if (Type.isPlainObject(options)) { if (Type.isString(options.text)) { this.text = options.text; } if (TextNodeType.isValid(options.type)) { this.type = options.type; } } else if (Type.isString(options)) { this.text = options; } } getText(): ?string { return this.text; } getType(): ?TextNodeType { return this.type; } isNullable(): boolean { return this.getText() === null; } renderTo(element: HTMLElement): void { const text = this.getText(); if (text === null) { return; } if (this.getType() === null || this.getType() === TextNodeType.TEXT) { element.textContent = text; } else if (this.getType() === TextNodeType.HTML) { element.innerHTML = text; } } toString() { return this.getText() ?? ''; } toJSON() { if (this.getType() === null) { return this.getText(); } else { return { text: this.getText(), type: this.getType() }; } } }