linkedom
Version:
A triple-linked lists based DOM implementation
45 lines (39 loc) • 1.13 kB
JavaScript
;
const {TEXT_NODE} = require('../shared/constants.js');
const {VALUE} = require('../shared/symbols.js');
const {escape} = require('../shared/text-escaper.js');
const {CharacterData} = require('./character-data.js');
/**
* @implements globalThis.Text
*/
class Text extends CharacterData {
constructor(ownerDocument, data = '') {
super(ownerDocument, '#text', TEXT_NODE, data);
}
get wholeText() {
const text = [];
let {previousSibling, nextSibling} = this;
while (previousSibling) {
if (previousSibling.nodeType === TEXT_NODE)
text.unshift(previousSibling[VALUE]);
else
break;
previousSibling = previousSibling.previousSibling;
}
text.push(this[VALUE]);
while (nextSibling) {
if (nextSibling.nodeType === TEXT_NODE)
text.push(nextSibling[VALUE]);
else
break;
nextSibling = nextSibling.nextSibling;
}
return text.join('');
}
cloneNode() {
const {ownerDocument, [VALUE]: data} = this;
return new Text(ownerDocument, data);
}
toString() { return escape(this[VALUE]); }
}
exports.Text = Text