2018-12-20 10:41:04 +00:00
|
|
|
// test is located in test/extract-mentions
|
2018-12-19 02:16:29 +00:00
|
|
|
|
2021-04-02 01:36:11 +00:00
|
|
|
import * as mfm from 'mfm-js';
|
2018-12-19 02:16:29 +00:00
|
|
|
|
2021-04-02 01:36:11 +00:00
|
|
|
export default function(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
|
2018-12-20 10:41:04 +00:00
|
|
|
// TODO: 重複を削除
|
2021-04-02 01:36:11 +00:00
|
|
|
const mentionNodes = [] as mfm.MfmMention[];
|
|
|
|
|
|
|
|
function scan(nodes: mfm.MfmNode[]) {
|
|
|
|
for (const node of nodes) {
|
|
|
|
if (node.type === 'mention') mentionNodes.push(node);
|
|
|
|
else if (node.children) scan(node.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scan(nodes);
|
|
|
|
|
2018-12-20 10:41:04 +00:00
|
|
|
return mentionNodes.map(x => x.props);
|
2018-12-19 02:16:29 +00:00
|
|
|
}
|