2018-11-11 12:17:51 +00:00
|
|
|
export default function(me, settings, note) {
|
|
|
|
const isMyNote = note.userId == me.id;
|
|
|
|
const isPureRenote = note.renoteId != null && note.text == null && note.fileIds.length == 0 && note.poll == null;
|
|
|
|
|
2018-12-28 20:51:17 +00:00
|
|
|
const includesMutedWords = (text: string) =>
|
|
|
|
text
|
2019-02-16 10:37:05 +00:00
|
|
|
? 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)))
|
2018-12-28 20:51:17 +00:00
|
|
|
: false;
|
|
|
|
|
|
|
|
return (
|
|
|
|
(!isMyNote && note.reply && includesMutedWords(note.reply.text)) ||
|
|
|
|
(!isMyNote && note.renote && includesMutedWords(note.renote.text)) ||
|
|
|
|
(settings.showMyRenotes === false && isMyNote && isPureRenote) ||
|
|
|
|
(settings.showRenotedMyNotes === false && isPureRenote && note.renote.userId == me.id) ||
|
|
|
|
(settings.showLocalRenotes === false && isPureRenote && note.renote.user.host == null) ||
|
|
|
|
(!isMyNote && includesMutedWords(note.text))
|
|
|
|
);
|
2018-11-11 12:17:51 +00:00
|
|
|
}
|