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.
32 lines
729 B
32 lines
729 B
2 years ago
|
import { expandSpoilers } from 'flavours/glitch/initial_state';
|
||
3 years ago
|
|
||
2 years ago
|
function _autoUnfoldCW(spoiler_text, skip_unfold_regex) {
|
||
|
if (!expandSpoilers)
|
||
6 years ago
|
return false;
|
||
6 years ago
|
|
||
2 years ago
|
if (!skip_unfold_regex)
|
||
6 years ago
|
return true;
|
||
|
|
||
2 years ago
|
let regex = null;
|
||
6 years ago
|
|
||
|
try {
|
||
2 years ago
|
regex = new RegExp(skip_unfold_regex.trim(), 'i');
|
||
6 years ago
|
} catch (e) {
|
||
2 years ago
|
// Bad regex, skip filters
|
||
|
return true;
|
||
6 years ago
|
}
|
||
|
|
||
2 years ago
|
return !regex.test(spoiler_text);
|
||
|
}
|
||
|
|
||
|
export function autoHideCW(settings, spoiler_text) {
|
||
|
return !_autoUnfoldCW(spoiler_text, settings.getIn(['content_warnings', 'filter']));
|
||
|
}
|
||
|
|
||
|
export function autoUnfoldCW(settings, status) {
|
||
|
if (!status)
|
||
|
return false;
|
||
|
|
||
|
return _autoUnfoldCW(status.get('spoiler_text'), settings.getIn(['content_warnings', 'filter']));
|
||
6 years ago
|
}
|