-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathcreateStreamingRenderer.ts
More file actions
436 lines (344 loc) · 14.1 KB
/
createStreamingRenderer.ts
File metadata and controls
436 lines (344 loc) · 14.1 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/* eslint-disable no-magic-numbers */
import katex from 'katex';
import { compile, parse, postprocess, preprocess } from 'micromark';
import { gfm, gfmHtml } from 'micromark-extension-gfm';
import type { Event, Options } from 'micromark-util-types';
import { betterLinkDocumentMod } from 'botframework-webchat-component/internal.js';
import { math, mathHtml } from './mathExtension';
import { createDecorate } from './private/createDecorate';
import extractDefinitionsFromEvents, { type MarkdownLinkDefinition } from './private/extractDefinitionsFromEvents';
import { pre as respectCRLFPre } from './private/respectCRLF';
type StreamingRenderInit = Readonly<{
externalLinkAlt: string;
}>;
type StreamingRenderOptions = Readonly<{
markdownRenderHTML?: boolean | undefined;
markdownRespectCRLF: boolean;
}>;
type StreamingNextOptions = Readonly<{
container: HTMLElement;
containerClassName?: string | undefined;
transformFragment?: ((fragment: DocumentFragment) => DocumentFragment) | undefined;
}>;
type StreamingNextResult = Readonly<{
definitions: readonly MarkdownLinkDefinition[];
}>;
type StreamingRenderer = Readonly<{
finalize: (options: StreamingNextOptions) => StreamingNextResult;
next: (chunk: string, options: StreamingNextOptions) => void;
reset: () => void;
}>;
export const STREAMING_ERROR = Symbol('markdown streaming error');
// Top-level block token types emitted by micromark.
// An exit event at depth 0 for one of these types marks a committed block boundary.
const TOP_LEVEL_BLOCK_TYPES: ReadonlySet<string> = new Set([
'atxHeading',
'blockQuote',
'codeFenced',
'codeIndented',
'content',
'htmlFlow',
'listOrdered',
'listUnordered',
'setextHeading',
'table',
'thematicBreak',
'math'
]);
type BlockBoundary = {
readonly endOffset: number;
readonly startOffset: number;
readonly type: string;
};
function findTopLevelBlocks(events: ReadonlyArray<Event>): readonly BlockBoundary[] {
const blocks: Array<{ endOffset: number; startOffset: number; type: string }> = [];
let depth = 0;
for (const [action, token] of events) {
if (!TOP_LEVEL_BLOCK_TYPES.has(token.type)) {
continue;
}
if (action === 'enter') {
if (!depth) {
blocks.push({ endOffset: -1, startOffset: token.start.offset, type: token.type });
}
depth++;
} else {
depth--;
if (!depth && blocks.length) {
blocks.at(-1).endOffset = token.end.offset;
}
}
}
return blocks;
}
export default function createStreamingRenderer(
{ markdownRenderHTML, markdownRespectCRLF }: StreamingRenderOptions,
{ externalLinkAlt }: StreamingRenderInit
): StreamingRenderer {
const micromarkOptions: Options = {
allowDangerousHtml: markdownRenderHTML ?? true,
allowDangerousProtocol: true,
extensions: [gfm(), math()],
htmlExtensions: [
gfmHtml(),
mathHtml({
renderMath: (content, isDisplay) =>
katex.renderToString(content, {
displayMode: isDisplay,
output: 'mathml'
})
})
]
};
const domParser = new DOMParser();
// Parser state.
let previousMarkdown = '';
const emptyDefinitions: readonly MarkdownLinkDefinition[] = Object.freeze([]);
// DOM reconciliation state.
let wrapperDiv: HTMLDivElement | null = null;
let activeSentinel: Comment | null = null;
function parseEvents(source: string): Event[] {
return postprocess(
parse(micromarkOptions)
.document()
.write(preprocess()(source, undefined, true))
);
}
function applyTransform(
fragment: DocumentFragment,
transformFragment: ((fragment: DocumentFragment) => DocumentFragment) | undefined
): DocumentFragment {
return transformFragment ? transformFragment(fragment) : fragment;
}
function ensureWrapper(container: HTMLElement, containerClassName: string | undefined): HTMLDivElement {
if (wrapperDiv && container.contains(wrapperDiv)) {
wrapperDiv.className = containerClassName || '';
return wrapperDiv;
}
const wrapper = document.createElement('div');
wrapper.className = containerClassName || '';
container.textContent = '';
container.appendChild(wrapper);
wrapperDiv = wrapper;
activeSentinel = null;
return wrapper;
}
function setError(error: unknown, wrapper: HTMLElement) {
wrapper.dataset.renderError = String(error instanceof Error ? error.message : error);
wrapper.dataset.renderErrorCount = String(Number(wrapper.dataset.renderErrorCount || '0') + 1);
// eslint-disable-next-line security/detect-object-injection
(wrapper as any)[STREAMING_ERROR] = error;
}
const knownDefinitions: Set<string> = new Set();
function extractDefinitions(events: ReadonlyArray<Event>) {
for (const [action, token, ctx] of events) {
token.type === 'definition' && action === 'exit' && knownDefinitions.add(ctx.sliceSerialize(token) + '\n');
}
}
let lastStepDefinitionOffset = 0;
let lastCommittedBlockEndOffset = 0;
let stepEvents: Event[] = [];
function step(markdown: string): Event[] {
const markdownTail = markdown.slice(lastCommittedBlockEndOffset);
const doc = parse(micromarkOptions).document();
const prep = preprocess();
// Ensure definitions are resolved during parse phase
if (knownDefinitions.size) {
for (const definition of knownDefinitions) {
doc.write(prep(definition, undefined, false));
}
const lastDefinitionTokenOffset = doc.events.at(-1)?.[1].end.offset;
if (typeof lastDefinitionTokenOffset !== 'number') {
throw new Error('Failed to extract definition token offset');
}
lastStepDefinitionOffset = lastDefinitionTokenOffset;
} else {
lastStepDefinitionOffset = 0;
}
const tailEvents = doc.write(prep(markdownTail, undefined, true));
stepEvents = postprocess(tailEvents);
return stepEvents;
}
function commit(block: BlockBoundary): string {
const compiler = compile(micromarkOptions);
// Extract all available definitions to prevent compiler crashes
// on definitions appearing after the block boundary.
extractDefinitions(stepEvents);
// Rather than trying to restore compiler state, we parse and fed the definitions
// back to the compiler as if they appear in the markdown.
if (knownDefinitions.size) {
const doc = parse(micromarkOptions).document();
const prep = preprocess();
for (const definition of knownDefinitions) {
doc.write(prep(definition, undefined, false));
}
compiler(postprocess(doc.write(prep('', undefined, true))));
}
const newCommittedOffset = block.startOffset;
const newCommittedEvents = stepEvents.filter(([, token]) => token.start.offset < newCommittedOffset);
// Offset the committed block by the provided boundary start
// excluding the offset of definitions upserted during the step.
lastCommittedBlockEndOffset += newCommittedOffset - lastStepDefinitionOffset;
return compiler(newCommittedEvents);
}
function revert() {
lastStepDefinitionOffset = 0;
stepEvents = [];
}
function cleanup() {
revert();
activeSentinel = null;
lastCommittedBlockEndOffset = 0;
knownDefinitions.clear();
}
function renderNext(chunk: string, options: StreamingNextOptions): void {
const isAppend = !!previousMarkdown;
previousMarkdown += chunk;
if (!previousMarkdown) {
cleanup();
const wrapper = ensureWrapper(options.container, options.containerClassName);
wrapper.replaceChildren();
return;
}
let processedMarkdown = previousMarkdown;
if (markdownRespectCRLF) {
processedMarkdown = respectCRLFPre(processedMarkdown);
}
try {
// Incremental path: re-parse only from the last committed block boundary.
if (isAppend) {
const wrapper = ensureWrapper(options.container, options.containerClassName);
if (activeSentinel && wrapper.contains(activeSentinel)) {
const tailEvents = step(processedMarkdown);
const tailBlocks = findTopLevelBlocks(tailEvents);
const decorate = createDecorate(emptyDefinitions, externalLinkAlt);
if (tailBlocks.length <= 1) {
// Fast path: active block grew, no new committed blocks.
// Replace only the active zone (after sentinel).
const tailHTML = compile(micromarkOptions)(tailEvents);
const activeDoc = domParser.parseFromString(tailHTML.trim(), 'text/html');
const activeFragment = activeDoc.createDocumentFragment();
activeFragment.append(...Array.from(activeDoc.body.childNodes));
betterLinkDocumentMod(activeFragment, decorate);
const activeRange = document.createRange();
activeRange.setStartAfter(activeSentinel);
activeRange.setEndAfter(wrapper.lastChild!);
activeRange.deleteContents();
wrapper.append(applyTransform(activeFragment, options.transformFragment));
} else {
// New block boundary in tail: commit newly-finished blocks, replace active.
const committedTailHTML = commit(tailBlocks.at(-1));
const committedDoc = domParser.parseFromString(committedTailHTML, 'text/html');
const committedFragment = committedDoc.createDocumentFragment();
const activeEvents = step(processedMarkdown);
const activeHTML = compile(micromarkOptions)(activeEvents);
const activeDoc = domParser.parseFromString(activeHTML.trim(), 'text/html');
const activeFragment = activeDoc.createDocumentFragment();
committedFragment.append(...Array.from(committedDoc.body.childNodes));
betterLinkDocumentMod(committedFragment, decorate);
activeFragment.append(...Array.from(activeDoc.body.childNodes));
betterLinkDocumentMod(activeFragment, decorate);
// Remove old sentinel and active zone.
const tailRange = document.createRange();
tailRange.setStartBefore(activeSentinel);
tailRange.setEndAfter(wrapper.lastChild!);
tailRange.deleteContents();
// Append newly committed, new sentinel, active.
activeSentinel = document.createComment('');
wrapper.append(
applyTransform(committedFragment, options.transformFragment),
activeSentinel,
applyTransform(activeFragment, options.transformFragment)
);
}
return;
}
}
} catch (error) {
setError(error, ensureWrapper(options.container, options.containerClassName));
}
// Full reparse path.
cleanup();
const fullEvents = step(processedMarkdown);
const blocks = findTopLevelBlocks(fullEvents);
const wrapper = ensureWrapper(options.container, options.containerClassName);
const decorate = createDecorate(emptyDefinitions, externalLinkAlt);
try {
if (blocks.length >= 2) {
const committedHTML = commit(blocks.at(-1));
const committedDoc = domParser.parseFromString(committedHTML, 'text/html');
const committedFragment = committedDoc.createDocumentFragment();
const activeEvents = step(processedMarkdown);
const activeHTML = compile(micromarkOptions)(activeEvents);
const activeDoc = domParser.parseFromString(activeHTML.trim(), 'text/html');
const activeFragment = activeDoc.createDocumentFragment();
committedFragment.append(...Array.from(committedDoc.body.childNodes));
betterLinkDocumentMod(committedFragment, decorate);
activeFragment.append(...Array.from(activeDoc.body.childNodes));
betterLinkDocumentMod(activeFragment, decorate);
activeSentinel = document.createComment('');
wrapper.replaceChildren(
applyTransform(committedFragment, options.transformFragment),
activeSentinel,
applyTransform(activeFragment, options.transformFragment)
);
return;
}
} catch (error) {
setError(error, ensureWrapper(options.container, options.containerClassName));
cleanup();
}
// Single block — full replace, no sentinel.
activeSentinel = null;
const rawHTML = compile(micromarkOptions)(fullEvents);
const parsedDocument = domParser.parseFromString(rawHTML.trim(), 'text/html');
const fragment = parsedDocument.createDocumentFragment();
fragment.append(...Array.from(parsedDocument.body.childNodes));
betterLinkDocumentMod(fragment, decorate);
wrapper.replaceChildren(applyTransform(fragment, options.transformFragment));
}
return Object.freeze({
finalize(options: StreamingNextOptions): StreamingNextResult {
if (!previousMarkdown) {
const wrapper = ensureWrapper(options.container, options.containerClassName);
wrapper.replaceChildren();
return Object.freeze({ definitions: Object.freeze([]) });
}
let processedMarkdown = previousMarkdown;
if (markdownRespectCRLF) {
processedMarkdown = respectCRLFPre(processedMarkdown);
}
const fullEvents = parseEvents(processedMarkdown);
const rawHTML = compile(micromarkOptions)(fullEvents);
const finalDoc = domParser.parseFromString(rawHTML.trim(), 'text/html');
const fragment = finalDoc.createDocumentFragment();
const definitions = extractDefinitionsFromEvents(fullEvents);
const wrapper = ensureWrapper(options.container, options.containerClassName);
const decorate = createDecorate(definitions, externalLinkAlt);
fragment.append(...Array.from(finalDoc.body.childNodes));
betterLinkDocumentMod(fragment, decorate);
activeSentinel = null;
// Full replace on finalize — no incremental path needed.
wrapper.replaceChildren(applyTransform(fragment, options.transformFragment));
return Object.freeze({ definitions });
},
next(chunk: string, options: StreamingNextOptions): void {
try {
renderNext(chunk, options);
} finally {
revert();
}
},
reset(): void {
previousMarkdown = '';
cleanup();
}
});
}
export {
type MarkdownLinkDefinition,
type StreamingNextOptions,
type StreamingNextResult,
type StreamingRenderer,
type StreamingRenderOptions
};