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
|
@ -2,13 +2,9 @@ import * as mfm from 'mfm-js';
|
|||
import { unique } from '@/prelude/array';
|
||||
|
||||
export function extractCustomEmojisFromMfm(nodes: mfm.MfmNode[]): string[] {
|
||||
const emojis = [] as string[];
|
||||
|
||||
mfm.inspect(nodes, (node) => {
|
||||
if (node.type === 'emojiCode' && node.props.name.length <= 100) {
|
||||
emojis.push(node.props.name);
|
||||
}
|
||||
const emojiNodes = mfm.extract(nodes, (node) => {
|
||||
return (node.type === 'emojiCode' && node.props.name.length <= 100);
|
||||
});
|
||||
|
||||
return unique(emojis);
|
||||
return unique(emojiNodes.map(x => x.props.name));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue