jormungandr-bite/packages/backend/src/misc/extract-mentions.ts

14 lines
340 B
TypeScript
Raw Normal View History

// test is located in test/extract-mentions
2018-12-18 19:16:29 -07:00
2023-01-12 21:40:33 -07:00
import * as mfm from "mfm-js";
2018-12-18 19:16:29 -07:00
2023-01-12 21:40:33 -07:00
export function extractMentions(
nodes: mfm.MfmNode[],
): mfm.MfmMention["props"][] {
// TODO: 重複を削除
2023-01-12 21:40:33 -07:00
const mentionNodes = mfm.extract(nodes, (node) => node.type === "mention");
const mentions = mentionNodes.map((x) => x.props);
return mentions;
2018-12-18 19:16:29 -07:00
}