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