egirlskey/packages/backend/src/misc/extract-mentions.ts

17 lines
483 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
// test is located in test/extract-mentions
2018-12-19 02:16:29 +00:00
2024-02-03 14:01:09 +00:00
import * as mfm from '@transfem-org/sfm-js';
2018-12-19 02:16:29 +00:00
export function extractMentions(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
// TODO: 重複を削除
2022-09-17 18:27:08 +00:00
const mentionNodes = mfm.extract(nodes, (node) => node.type === 'mention') as mfm.MfmMention[];
const mentions = mentionNodes.map(x => x.props);
return mentions;
2018-12-19 02:16:29 +00:00
}