update mfm.js (#7435)
* use mfm.js 0.14.0 * use mfm.extract * use mfm.extract * use mfm.extract
This commit is contained in:
parent
bffcfd92da
commit
1ec3338d2e
5 changed files with 12 additions and 33 deletions
|
@ -4,13 +4,8 @@ import * as mfm from 'mfm-js';
|
|||
|
||||
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);
|
||||
}
|
||||
});
|
||||
const mentionNodes = mfm.extract(nodes, (node) => node.type === 'mention');
|
||||
const mentions = mentionNodes.map(x => x.props);
|
||||
|
||||
return mentions;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue