c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
29 lines
842 B
TypeScript
29 lines
842 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { h } from 'vue';
|
|
|
|
export default function(props: { src: string; tag?: string; textTag?: string; }, { slots }) {
|
|
let str = props.src;
|
|
const parsed = [] as (string | { arg: string; })[];
|
|
while (true) {
|
|
const nextBracketOpen = str.indexOf('{');
|
|
const nextBracketClose = str.indexOf('}');
|
|
|
|
if (nextBracketOpen === -1) {
|
|
parsed.push(str);
|
|
break;
|
|
} else {
|
|
if (nextBracketOpen > 0) parsed.push(str.substring(0, nextBracketOpen));
|
|
parsed.push({
|
|
arg: str.substring(nextBracketOpen + 1, nextBracketClose),
|
|
});
|
|
}
|
|
|
|
str = str.substring(nextBracketClose + 1);
|
|
}
|
|
|
|
return h(props.tag ?? 'span', parsed.map(x => typeof x === 'string' ? (props.textTag ? h(props.textTag, x) : x) : slots[x.arg]()));
|
|
}
|