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