Sharkey/src/misc/extract-mentions.ts

17 lines
363 B
TypeScript
Raw Normal View History

// test is located in test/extract-mentions
2018-12-19 04:16:29 +02:00
import * as mfm from 'mfm-js';
2018-12-19 04:16:29 +02:00
export function extractMentions(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
// TODO: 重複を削除
const mentions = [] as mfm.MfmMention['props'][];
mfm.inspect(nodes, (node) => {
if (node.type === 'mention') {
mentions.push(node.props);
}
});
return mentions;
2018-12-19 04:16:29 +02:00
}