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.
20 lines
460 B
20 lines
460 B
6 years ago
|
export function autoUnfoldCW (settings, status) {
|
||
|
if (!settings.getIn(['content_warnings', 'auto_unfold'])) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
const rawRegex = settings.getIn(['content_warnings', 'filter']);
|
||
|
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'));
|
||
|
}
|