Sharkey/src/misc/extract-mentions.ts

11 lines
382 B
TypeScript
Raw Normal View History

// test is located in test/extract-mentions
2018-12-19 04:16:29 +02:00
import { MentionNode, MfmForest } from '../mfm/parser';
import { preorderF } from '../prelude/tree';
2018-12-19 04:16:29 +02:00
export default function(mfmForest: MfmForest): MentionNode['props'][] {
// TODO: 重複を削除
const mentionNodes = preorderF(mfmForest).filter(x => x.type === 'mention') as MentionNode[];
return mentionNodes.map(x => x.props);
2018-12-19 04:16:29 +02:00
}