| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- import { marked, type Tokens } from "marked"
- import remend from "remend"
- export type Block = {
- raw: string
- src: string
- mode: "full" | "live" | "code"
- language?: string
- complete?: boolean
- }
- export type Projection = {
- text: string
- blocks: Block[]
- }
- function refs(text: string) {
- if (!text.includes("]:")) return false
- return /^[ \t]{0,3}\[[^\]]+\]:[ \t]*(?:\S+|\r?\n[ \t]+\S+)/m.test(text)
- }
- function language(value: string | undefined) {
- return value?.trim().split(/\s+/, 1)[0] || undefined
- }
- function openCode(raw: string) {
- const newline = raw.indexOf("\n")
- return newline < 0 ? "" : raw.slice(newline + 1)
- }
- function open(raw: string) {
- const match = raw.match(/^[ \t]{0,3}(`{3,}|~{3,})/)
- if (!match) return false
- const mark = match[1]
- if (!mark) return false
- const char = mark[0]
- const size = mark.length
- const last = raw.trimEnd().split("\n").at(-1)?.trim() ?? ""
- return !new RegExp(`^[\\t ]{0,3}${char}{${size},}[\\t ]*$`).test(last)
- }
- function closesFence(raw: string, suffix: string) {
- const mark = raw.match(/^[ \t]{0,3}(`{3,}|~{3,})/)?.[1]
- if (!mark) return suffix.includes("```") || suffix.includes("~~~")
- return `${raw.slice(-(mark.length - 1))}${suffix}`.includes(mark)
- }
- function heal(text: string) {
- return remend(text, { linkMode: "text-only" })
- }
- export function stream(text: string, live: boolean): Block[] {
- if (!live) return [{ raw: text, src: text, mode: "full" }] satisfies Block[]
- if (refs(text)) return [{ raw: text, src: heal(text), mode: "live" }] satisfies Block[]
- const tokens = marked.lexer(text)
- const tail = tokens.findLastIndex((token) => token.type !== "space")
- if (tail < 0) return [{ raw: text, src: heal(text), mode: "live" }] satisfies Block[]
- const last = tokens[tail]
- if (!last) return [{ raw: text, src: heal(text), mode: "live" }] satisfies Block[]
- const result: Block[] = []
- for (let index = 0; index < tail; index++) {
- const token = tokens[index]
- if (!token || token.type === "space") continue
- let raw = token.raw
- while (tokens[index + 1]?.type === "space" && index + 1 < tail) raw += tokens[++index]!.raw
- if (token.type === "code") {
- const code = token as Tokens.Code
- result.push({ raw, src: code.text, mode: "code", language: language(code.lang), complete: true })
- continue
- }
- result.push({ raw, src: raw, mode: "full" })
- }
- const raw = tokens
- .slice(tail)
- .map((token) => token.raw)
- .join("")
- if (last.type !== "code") return [...result, { raw, src: heal(raw), mode: "live" }]
- const code = last as Tokens.Code
- if (!open(code.raw))
- return [...result, { raw, src: code.text, mode: "code", language: language(code.lang), complete: true }]
- return [...result, { raw, src: openCode(code.raw), mode: "code", language: language(code.lang) }]
- }
- export function canReusePendingBlock(current: Pick<Block, "mode" | "raw"> | undefined, next: Block) {
- if (!current || current.mode !== next.mode) return false
- if (next.mode === "code") return next.raw.startsWith(current.raw)
- return current.raw === next.raw
- }
- export function project(previous: Projection | undefined, text: string, live: boolean): Projection {
- if (!live || !previous || !text.startsWith(previous.text)) return { text, blocks: stream(text, live) }
- const tail = previous.blocks.at(-1)
- const suffix = text.slice(previous.text.length)
- if (!suffix || tail?.mode !== "code" || tail.complete || closesFence(tail.raw, suffix))
- return { text, blocks: stream(text, live) }
- return {
- text,
- blocks: [
- ...previous.blocks.slice(0, -1),
- {
- ...tail,
- raw: tail.raw + suffix,
- src: tail.src + suffix,
- },
- ],
- }
- }
|