Refactor removal of anon blocks to use request.js
This commit is contained in:
parent
af137cc445
commit
d521800a59
|
@ -1,27 +1,21 @@
|
|||
import Rails from '@rails/ujs';
|
||||
import { destroy } from '@rails/request.js';
|
||||
import { showNotification, showErrorNotification } from 'utilities/notifications';
|
||||
import I18n from 'retrospring/i18n';
|
||||
|
||||
export function unblockAnonymousHandler(event: Event): void {
|
||||
const button: HTMLButtonElement = event.currentTarget as HTMLButtonElement;
|
||||
const targetId = button.dataset.target;
|
||||
let success = false;
|
||||
|
||||
Rails.ajax({
|
||||
url: `/ajax/block_anon/${targetId}`,
|
||||
type: 'DELETE',
|
||||
success: (data) => {
|
||||
success = data.success;
|
||||
destroy(`/ajax/block_anon/${targetId}`)
|
||||
.then(async response => {
|
||||
if (!response.ok) return;
|
||||
|
||||
const data = await response.json;
|
||||
showNotification(data.message, data.success);
|
||||
},
|
||||
error: (data, status, xhr) => {
|
||||
console.log(data, status, xhr);
|
||||
showErrorNotification(I18n.translate('frontend.error.message'));
|
||||
},
|
||||
complete: () => {
|
||||
if (!success) return;
|
||||
|
||||
button.closest('.list-group-item').remove();
|
||||
}
|
||||
});
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
showErrorNotification(I18n.translate('frontend.error.message'));
|
||||
});
|
||||
}
|
Loading…
Reference in New Issue