2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2018-12-20 12:41:04 +02:00
|
|
|
// test is located in test/extract-mentions
|
2018-12-19 04:16:29 +02:00
|
|
|
|
2021-04-02 04:36:11 +03:00
|
|
|
import * as mfm from 'mfm-js';
|
2018-12-19 04:16:29 +02:00
|
|
|
|
2021-04-10 11:50:18 +03:00
|
|
|
export function extractMentions(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
|
2018-12-20 12:41:04 +02:00
|
|
|
// TODO: 重複を削除
|
2022-09-17 21:27:08 +03:00
|
|
|
const mentionNodes = mfm.extract(nodes, (node) => node.type === 'mention') as mfm.MfmMention[];
|
2021-04-10 18:18:29 +03:00
|
|
|
const mentions = mentionNodes.map(x => x.props);
|
2021-04-02 04:36:11 +03:00
|
|
|
|
2021-04-10 11:50:18 +03:00
|
|
|
return mentions;
|
2018-12-19 04:16:29 +02:00
|
|
|
}
|