You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
502 B
24 lines
502 B
export function autoUnfoldCW (settings, status) {
|
|
if (!settings.getIn(['content_warnings', 'auto_unfold'])) {
|
|
return false;
|
|
}
|
|
|
|
const rawRegex = settings.getIn(['content_warnings', 'filter']);
|
|
|
|
if (!rawRegex) {
|
|
return true;
|
|
}
|
|
|
|
let regex = null;
|
|
|
|
try {
|
|
regex = rawRegex && new RegExp(rawRegex.trim(), 'i');
|
|
} catch (e) {
|
|
// Bad regex, don't affect filters
|
|
}
|
|
|
|
if (!(status && regex)) {
|
|
return undefined;
|
|
}
|
|
return !regex.test(status.get('spoiler_text'));
|
|
}
|
|
|