mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-17 23:47:38 -07:00
582a21912d
Typo, Redundant code, Syntax error の修正
19 lines
905 B
TypeScript
19 lines
905 B
TypeScript
export default function(me, settings, note) {
|
|
const isMyNote = me && (note.userId == me.id);
|
|
const isPureRenote = note.renoteId != null && note.text == null && note.fileIds.length == 0 && note.poll == null;
|
|
|
|
const includesMutedWords = (text: string) =>
|
|
text
|
|
? settings.mutedWords.some(q => q.length > 0 && !q.some(word =>
|
|
word.startsWith('/') && word.endsWith('/') ? !(new RegExp(word.substr(1, word.length - 2)).test(text)) : !text.includes(word)))
|
|
: false;
|
|
|
|
return (
|
|
(!isMyNote && note.reply && includesMutedWords(note.reply.text)) ||
|
|
(!isMyNote && note.renote && includesMutedWords(note.renote.text)) ||
|
|
(!settings.showMyRenotes && isMyNote && isPureRenote) ||
|
|
(!settings.showRenotedMyNotes && isPureRenote && note.renote.userId == me.id) ||
|
|
(!settings.showLocalRenotes && isPureRenote && note.renote.user.host == null) ||
|
|
(!isMyNote && includesMutedWords(note.text))
|
|
);
|
|
}
|