63 lines
2.7 KiB
TypeScript
63 lines
2.7 KiB
TypeScript
import type { AdfMark, AdfNode, AttributeVocabulary } from './adf-document.ts'
|
|
import type { AttributeFault } from './directive-attributes.ts'
|
|
import { failure, success, type ConvertErrorPath, type Result } from './result.ts'
|
|
import { attributeFailure, spellAttributes, vocabularyPairs } from './directive-attributes.ts'
|
|
|
|
export type InlineDirective = {
|
|
attributes: AttributeVocabulary
|
|
slot?: string
|
|
}
|
|
|
|
const inlineDirectives: Readonly<Record<string, InlineDirective>> = {
|
|
date: { attributes: { localId: 'string', timestamp: 'string' } },
|
|
emoji: { attributes: { id: 'string', localId: 'string', shortName: 'string' }, slot: 'text' },
|
|
inlineCard: { attributes: { data: 'json', localId: 'string', url: 'string' } },
|
|
mediaInline: {
|
|
attributes: {
|
|
alt: 'string',
|
|
collection: 'string',
|
|
data: 'json',
|
|
height: 'number',
|
|
id: 'string',
|
|
localId: 'string',
|
|
occurrenceKey: 'string',
|
|
type: 'string',
|
|
width: 'number',
|
|
},
|
|
},
|
|
mention: { attributes: { accessLevel: 'string', id: 'string', localId: 'string', userType: 'string' }, slot: 'text' },
|
|
status: { attributes: { color: 'string', localId: 'string', style: 'string' }, slot: 'text' },
|
|
}
|
|
|
|
const markDirectives: Readonly<Record<string, AttributeVocabulary>> = {
|
|
border: { color: 'string', size: 'number' },
|
|
subsup: { type: 'string' },
|
|
textColor: { color: 'string' },
|
|
underline: {},
|
|
}
|
|
|
|
export function inlineDirective(type: string): InlineDirective | undefined {
|
|
return Object.hasOwn(inlineDirectives, type) ? inlineDirectives[type] : undefined
|
|
}
|
|
|
|
export function markDirective(type: string): AttributeVocabulary | undefined {
|
|
return Object.hasOwn(markDirectives, type) ? markDirectives[type] : undefined
|
|
}
|
|
|
|
export function spellInlineNodeAttributes(node: AdfNode, directive: InlineDirective, path: ConvertErrorPath): Result<string> {
|
|
const spelled = vocabularyPairs(node.attrs ?? {}, directive.attributes, directive.slot)
|
|
if (spelled.fault !== undefined) return attributeFailure(node.type, spelled.fault, path)
|
|
return success(spellAttributes(spelled.pairs))
|
|
}
|
|
|
|
export function spellMarkAttributes(mark: AdfMark, vocabulary: AttributeVocabulary, path: ConvertErrorPath): Result<string> {
|
|
const spelled = vocabularyPairs(mark.attrs ?? {}, vocabulary, undefined)
|
|
if (spelled.fault !== undefined) return markFailure(mark.type, spelled.fault, path)
|
|
return success(spellAttributes(spelled.pairs))
|
|
}
|
|
|
|
function markFailure<T>(type: string, fault: AttributeFault, path: ConvertErrorPath): Result<T> {
|
|
if (fault.kind === undefined) return failure('unspellable-mark', `the ${type} spelling holds no ${fault.key} attribute`, path)
|
|
return failure('unspellable-mark', `the ${type} attribute ${fault.key} holds no ${fault.kind}`, path)
|
|
}
|