egirlskey/packages/backend/src/misc/extract-custom-emojis-from-...

16 lines
486 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2023-12-18 02:03:05 +00:00
import * as mfm from '@sharkey/sfm-js';
2022-09-17 18:27:08 +00:00
import { unique } from '@/misc/prelude/array.js';
export function extractCustomEmojisFromMfm(nodes: mfm.MfmNode[]): string[] {
const emojiNodes = mfm.extract(nodes, (node) => {
return (node.type === 'emojiCode' && node.props.name.length <= 100);
2023-02-01 08:29:28 +00:00
}) as mfm.MfmEmojiCode[];
return unique(emojiNodes.map(x => x.props.name));
}