2018-12-20 02:41:04 -08:00
|
|
|
// test is located in test/extract-mentions
|
2018-12-18 18:16:29 -08:00
|
|
|
|
2021-04-01 18:36:11 -07:00
|
|
|
import * as mfm from 'mfm-js';
|
2018-12-18 18:16:29 -08:00
|
|
|
|
2021-04-10 01:50:18 -07:00
|
|
|
export function extractMentions(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
|
2018-12-20 02:41:04 -08:00
|
|
|
// TODO: 重複を削除
|
2021-04-10 08:18:29 -07:00
|
|
|
const mentionNodes = mfm.extract(nodes, (node) => node.type === 'mention');
|
|
|
|
const mentions = mentionNodes.map(x => x.props);
|
2021-04-01 18:36:11 -07:00
|
|
|
|
2021-04-10 01:50:18 -07:00
|
|
|
return mentions;
|
2018-12-18 18:16:29 -08:00
|
|
|
}
|