2020-10-12 23:19:35 +00:00
|
|
|
import './public-path';
|
2020-03-21 02:14:50 +00:00
|
|
|
import { delegate } from '@rails/ujs';
|
2019-09-03 20:53:27 +00:00
|
|
|
import ready from '../mastodon/ready';
|
2017-07-18 14:38:22 +00:00
|
|
|
|
|
|
|
const batchCheckboxClassName = '.batch-checkbox input[type="checkbox"]';
|
|
|
|
|
|
|
|
delegate(document, '#batch_checkbox_all', 'change', ({ target }) => {
|
|
|
|
[].forEach.call(document.querySelectorAll(batchCheckboxClassName), (content) => {
|
|
|
|
content.checked = target.checked;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, batchCheckboxClassName, 'change', () => {
|
|
|
|
const checkAllElement = document.querySelector('#batch_checkbox_all');
|
2018-10-20 06:02:44 +00:00
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
if (checkAllElement) {
|
|
|
|
checkAllElement.checked = [].every.call(document.querySelectorAll(batchCheckboxClassName), (content) => content.checked);
|
2018-04-20 00:28:48 +00:00
|
|
|
checkAllElement.indeterminate = !checkAllElement.checked && [].some.call(document.querySelectorAll(batchCheckboxClassName), (content) => content.checked);
|
2017-07-18 14:38:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '.media-spoiler-show-button', 'click', () => {
|
2018-01-24 12:29:46 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('button.media-spoiler'), (element) => {
|
|
|
|
element.click();
|
2017-07-18 14:38:22 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
delegate(document, '.media-spoiler-hide-button', 'click', () => {
|
2018-01-24 12:29:46 +00:00
|
|
|
[].forEach.call(document.querySelectorAll('.spoiler-button.spoiler-button--visible button'), (element) => {
|
|
|
|
element.click();
|
2017-07-18 14:38:22 +00:00
|
|
|
});
|
|
|
|
});
|
2018-08-25 11:26:17 +00:00
|
|
|
|
2020-04-03 11:06:34 +00:00
|
|
|
delegate(document, '.filter-subset--with-select select', 'change', ({ target }) => {
|
|
|
|
target.form.submit();
|
|
|
|
});
|
|
|
|
|
2019-09-03 20:53:27 +00:00
|
|
|
const onDomainBlockSeverityChange = (target) => {
|
2018-10-20 06:02:44 +00:00
|
|
|
const rejectMediaDiv = document.querySelector('.input.with_label.domain_block_reject_media');
|
|
|
|
const rejectReportsDiv = document.querySelector('.input.with_label.domain_block_reject_reports');
|
|
|
|
|
2018-08-25 11:26:17 +00:00
|
|
|
if (rejectMediaDiv) {
|
|
|
|
rejectMediaDiv.style.display = (target.value === 'suspend') ? 'none' : 'block';
|
|
|
|
}
|
2018-10-20 06:02:44 +00:00
|
|
|
|
|
|
|
if (rejectReportsDiv) {
|
|
|
|
rejectReportsDiv.style.display = (target.value === 'suspend') ? 'none' : 'block';
|
|
|
|
}
|
2019-09-03 20:53:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
delegate(document, '#domain_block_severity', 'change', ({ target }) => onDomainBlockSeverityChange(target));
|
|
|
|
|
2019-12-16 22:55:50 +00:00
|
|
|
const onEnableBootstrapTimelineAccountsChange = (target) => {
|
|
|
|
const bootstrapTimelineAccountsField = document.querySelector('#form_admin_settings_bootstrap_timeline_accounts');
|
|
|
|
|
|
|
|
if (bootstrapTimelineAccountsField) {
|
|
|
|
bootstrapTimelineAccountsField.disabled = !target.checked;
|
|
|
|
if (target.checked) {
|
|
|
|
bootstrapTimelineAccountsField.parentElement.classList.remove('disabled');
|
|
|
|
} else {
|
|
|
|
bootstrapTimelineAccountsField.parentElement.classList.add('disabled');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
delegate(document, '#form_admin_settings_enable_bootstrap_timeline_accounts', 'change', ({ target }) => onEnableBootstrapTimelineAccountsChange(target));
|
|
|
|
|
2019-09-03 20:53:27 +00:00
|
|
|
ready(() => {
|
2019-12-16 22:55:50 +00:00
|
|
|
const domainBlockSeverityInput = document.getElementById('domain_block_severity');
|
|
|
|
if (domainBlockSeverityInput) onDomainBlockSeverityChange(domainBlockSeverityInput);
|
|
|
|
|
|
|
|
const enableBootstrapTimelineAccounts = document.getElementById('form_admin_settings_enable_bootstrap_timeline_accounts');
|
|
|
|
if (enableBootstrapTimelineAccounts) onEnableBootstrapTimelineAccountsChange(enableBootstrapTimelineAccounts);
|
2018-08-25 11:26:17 +00:00
|
|
|
});
|