File size: 5,748 Bytes
4e1096a 2d8be8f 4e1096a 2d8be8f 4e1096a 2d8be8f 4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | const blockTags = new Set([
'article',
'aside',
'blockquote',
'caption',
'details',
'div',
'dl',
'dt',
'dd',
'figure',
'footer',
'figcaption',
'h1',
'h2',
'h3',
'h4',
'h5',
'h6',
'header',
'hgroup',
'li',
'main',
'nav',
'ol',
'p',
'pre',
'section',
'tr',
]);
const MAX_BLOCKS = 5000;
const INVISIBLE_TEXT_PATTERN =
/[\s\u00a0\u1680\u180e\u2000-\u200a\u202f\u205f\u3000\u200b-\u200d\u2060\ufeff]/g;
const MEDIA_SELECTOR = 'img, svg, video, audio, canvas, math, iframe, object, embed, hr';
const hasMeaningfulText = (text?: string | null): boolean =>
(text ?? '').replace(INVISIBLE_TEXT_PATTERN, '').length > 0;
const rangeHasContent = (range: Range): boolean => {
try {
const text = range.toString();
if (hasMeaningfulText(text)) return true;
const fragment = range.cloneContents();
return !!fragment.querySelector?.(MEDIA_SELECTOR);
} catch {
return false;
}
};
const hasDirectText = (node: Element): boolean =>
Array.from(node.childNodes).some(
(child) => child.nodeType === Node.TEXT_NODE && hasMeaningfulText(child.textContent),
);
const hasBlockChild = (node: Element): boolean =>
Array.from(node.children).some((child) => blockTags.has(child.tagName.toLowerCase()));
const yieldToMain = (): Promise<void> =>
new Promise((resolve) => {
if (typeof requestAnimationFrame === 'function') {
requestAnimationFrame(() => resolve());
} else {
setTimeout(resolve, 0);
}
});
export class ParagraphIterator {
#blocks: Range[] = [];
#index = -1;
private constructor(blocks: Range[]) {
this.#blocks = blocks;
}
static async createAsync(doc: Document, batchSize = 50): Promise<ParagraphIterator> {
if (!doc?.body) {
return new ParagraphIterator([]);
}
const blocks: Range[] = [];
let last: Range | null = null;
let count = 0;
let processed = 0;
const walker = doc.createTreeWalker(doc.body, NodeFilter.SHOW_ELEMENT);
for (let node = walker.nextNode(); node && count < MAX_BLOCKS; node = walker.nextNode()) {
processed++;
if (processed % batchSize === 0) {
await yieldToMain();
}
const element = node as Element;
const name = element.tagName?.toLowerCase();
if (name && blockTags.has(name)) {
if (hasBlockChild(element) && !hasDirectText(element)) {
continue;
}
if (last) {
try {
last.setEndBefore(node);
if (rangeHasContent(last)) {
blocks.push(last);
count++;
}
} catch {
// ignore invalid ranges
}
}
try {
last = doc.createRange();
last.setStart(node, 0);
} catch {
last = null;
}
}
}
if (count >= MAX_BLOCKS) {
console.warn('ParagraphIterator: Maximum block limit reached');
return new ParagraphIterator(blocks);
}
if (!last) {
try {
last = doc.createRange();
const startNode = doc.body.firstChild ?? doc.body;
last.setStart(startNode, 0);
} catch {
return new ParagraphIterator(blocks);
}
}
try {
const endNode = doc.body.lastChild ?? doc.body;
last.setEndAfter(endNode);
if (rangeHasContent(last)) {
blocks.push(last);
}
} catch {
// ignore
}
return new ParagraphIterator(blocks);
}
get length(): number {
return this.#blocks.length;
}
get currentIndex(): number {
return this.#index;
}
current(): Range | null {
return this.#blocks[this.#index] ?? null;
}
first(): Range | null {
if (this.#blocks.length === 0) return null;
this.#index = 0;
return this.#blocks[0] ?? null;
}
last(): Range | null {
if (this.#blocks.length === 0) return null;
this.#index = this.#blocks.length - 1;
return this.#blocks[this.#index] ?? null;
}
next(): Range | null {
const newIndex = this.#index + 1;
if (newIndex < this.#blocks.length) {
this.#index = newIndex;
return this.#blocks[newIndex] ?? null;
}
return null;
}
prev(): Range | null {
const newIndex = this.#index - 1;
if (newIndex >= 0) {
this.#index = newIndex;
return this.#blocks[newIndex] ?? null;
}
return null;
}
goTo(index: number): Range | null {
if (index >= 0 && index < this.#blocks.length) {
this.#index = index;
return this.#blocks[index] ?? null;
}
return null;
}
findByNode(targetNode: Node | null): Range | null {
if (!targetNode) return this.first();
for (let i = 0; i < this.#blocks.length; i++) {
const block = this.#blocks[i];
try {
if (block?.intersectsNode(targetNode)) {
this.#index = i;
return block;
}
} catch {
continue;
}
}
return this.first();
}
async findByRangeAsync(targetRange: Range | null, batchSize = 50): Promise<Range | null> {
if (!targetRange) return this.first();
for (let i = 0; i < this.#blocks.length; i++) {
if (i > 0 && i % batchSize === 0) {
await yieldToMain();
}
const block = this.#blocks[i];
if (!block) continue;
try {
const startToEnd = block.compareBoundaryPoints(Range.START_TO_END, targetRange);
const endToStart = block.compareBoundaryPoints(Range.END_TO_START, targetRange);
if (startToEnd >= 0 && endToStart <= 0) {
this.#index = i;
return block;
}
} catch {
continue;
}
}
try {
return this.findByNode(targetRange.startContainer);
} catch {
return this.first();
}
}
}
|