elk/composables/content-render.ts

118 wiersze
3.7 KiB
TypeScript
Czysty Zwykły widok Historia

2022-12-13 14:03:30 +00:00
import { TEXT_NODE } from 'ultrahtml'
import type { Node } from 'ultrahtml'
import { Fragment, h, isVNode } from 'vue'
import type { VNode } from 'vue'
import { RouterLink } from 'vue-router'
import { decode } from 'tiny-decode'
2023-01-07 09:31:48 +00:00
import type { ContentParseOptions } from './content-parse'
import { parseMastodonHTML } from './content-parse'
2022-12-13 14:03:30 +00:00
import ContentCode from '~/components/content/ContentCode.vue'
2023-01-13 00:08:56 +00:00
import ContentMentionGroup from '~/components/content/ContentMentionGroup.vue'
2022-12-13 14:03:30 +00:00
import AccountHoverWrapper from '~/components/account/AccountHoverWrapper.vue'
function getTexualAstComponents(astChildren: Node[]): string {
return astChildren
.filter(({ type }) => type === TEXT_NODE)
.map(({ value }) => value)
.reduce((accumulator, current) => accumulator + current, '')
.trim()
}
2022-12-13 14:03:30 +00:00
/**
* Raw HTML to VNodes
*/
export function contentToVNode(
content: string,
2023-01-07 09:31:48 +00:00
options?: ContentParseOptions,
2022-12-13 14:03:30 +00:00
): VNode {
let tree = parseMastodonHTML(content, options)
const textContents = getTexualAstComponents(tree.children)
// if the username only contains emojis, we should probably show the emojis anyway to avoid a blank name
if (!options?.showEmojis && textContents.length === 0)
tree = parseMastodonHTML(content, { ...options, showEmojis: true })
2023-01-13 00:08:56 +00:00
return h(Fragment, (tree.children as Node[] || []).map(n => treeToVNode(n)))
2022-12-13 14:03:30 +00:00
}
function nodeToVNode(node: Node): VNode | string | null {
2022-12-13 14:03:30 +00:00
if (node.type === TEXT_NODE)
return node.value
2023-01-13 00:08:56 +00:00
if (node.name === 'mention-group')
return h(ContentMentionGroup, node.attributes, () => node.children.map(treeToVNode))
2022-12-13 14:03:30 +00:00
if ('children' in node) {
if (node.name === 'a' && (node.attributes.href?.startsWith('/') || node.attributes.href?.startsWith('.'))) {
node.attributes.to = node.attributes.href
2022-12-26 18:39:29 +00:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { href, target, ...attrs } = node.attributes
2022-12-13 14:03:30 +00:00
return h(
RouterLink as any,
2022-12-26 18:39:29 +00:00
attrs,
2022-12-13 14:03:30 +00:00
() => node.children.map(treeToVNode),
)
}
return h(
node.name,
node.attributes,
node.children.map(treeToVNode),
)
}
return null
}
2022-12-13 14:03:30 +00:00
function treeToVNode(
input: Node,
): VNode | string | null {
if (input.type === TEXT_NODE)
return decode(input.value)
2022-12-13 14:03:30 +00:00
if ('children' in input) {
const node = handleNode(input)
if (node == null)
return null
if (isVNode(node))
return node
return nodeToVNode(node)
}
return null
}
function handleMention(el: Node) {
// Redirect mentions to the user page
if (el.name === 'a' && el.attributes.class?.includes('mention')) {
const href = el.attributes.href
if (href) {
const matchUser = href.match(UserLinkRE)
if (matchUser) {
const [, server, username] = matchUser
const handle = `${username}@${server.replace(/(.+\.)(.+\..+)/, '$2')}`
2022-12-13 14:03:30 +00:00
el.attributes.href = `/${server}/@${username}`
return h(AccountHoverWrapper, { handle, class: 'inline-block' }, () => nodeToVNode(el))
}
const matchTag = href.match(TagLinkRE)
if (matchTag) {
const [, , name] = matchTag
el.attributes.href = `/${currentServer.value}/tags/${name}`
}
}
}
return undefined
}
function handleCodeBlock(el: Node) {
if (el.name === 'pre' && el.children[0]?.name === 'code') {
const codeEl = el.children[0] as Node
const classes = codeEl.attributes.class as string
const lang = classes?.split(/\s/g).find(i => i.startsWith('language-'))?.replace('language-', '')
const code = codeEl.children[0] ? treeToText(codeEl.children[0]) : ''
return h(ContentCode, { lang, code: encodeURIComponent(code) })
}
}
function handleNode(el: Node) {
return handleCodeBlock(el) || handleMention(el) || el
}