mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-26 19:34:35 +02:00
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
25 lines
749 B
TypeScript
25 lines
749 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import * as mfm from 'mfm-js';
|
|
import * as misskey from 'misskey-js';
|
|
import { extractUrlFromMfm } from './extract-url-from-mfm';
|
|
|
|
export function shouldCollapsed(note: misskey.entities.Note): boolean {
|
|
const urls = note.text ? extractUrlFromMfm(mfm.parse(note.text)) : null;
|
|
const collapsed = note.cw == null && note.text != null && (
|
|
(note.text.includes('$[x2')) ||
|
|
(note.text.includes('$[x3')) ||
|
|
(note.text.includes('$[x4')) ||
|
|
(note.text.includes('$[scale')) ||
|
|
(note.text.split('\n').length > 9) ||
|
|
(note.text.length > 500) ||
|
|
(note.files.length >= 5) ||
|
|
(!!urls && urls.length >= 4)
|
|
);
|
|
|
|
return collapsed;
|
|
}
|