2022-01-08 15:56:59 -08:00
|
|
|
import Rails from '@rails/ujs';
|
|
|
|
import swal from 'sweetalert';
|
|
|
|
|
2022-01-13 14:25:46 -08:00
|
|
|
import I18n from 'retrospring/i18n';
|
2022-01-08 15:56:59 -08:00
|
|
|
import { showNotification, showErrorNotification } from 'utilities/notifications';
|
|
|
|
|
|
|
|
export function commentDestroyHandler(event: Event): void {
|
|
|
|
const button = event.target as HTMLButtonElement;
|
|
|
|
const id = button.dataset.cId;
|
|
|
|
event.preventDefault();
|
|
|
|
button.disabled = true;
|
|
|
|
|
|
|
|
swal({
|
|
|
|
title: I18n.translate('frontend.destroy_comment.confirm.title'),
|
|
|
|
text: I18n.translate('frontend.destroy_comment.confirm.text'),
|
|
|
|
type: 'warning',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonColor: '#DD6B55',
|
2022-07-30 09:50:46 -07:00
|
|
|
confirmButtonText: I18n.translate('voc.delete'),
|
|
|
|
cancelButtonText: I18n.translate('voc.cancel'),
|
2022-01-08 15:56:59 -08:00
|
|
|
closeOnConfirm: true
|
|
|
|
}, (returnValue) => {
|
|
|
|
if (returnValue === false) {
|
|
|
|
button.disabled = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rails.ajax({
|
|
|
|
url: '/ajax/destroy_comment',
|
|
|
|
type: 'POST',
|
|
|
|
data: new URLSearchParams({
|
|
|
|
comment: id
|
|
|
|
}).toString(),
|
|
|
|
success: (data) => {
|
|
|
|
if (!data.success) return false;
|
|
|
|
|
|
|
|
showNotification(data.message);
|
|
|
|
|
|
|
|
document.querySelector(`[data-comment-id="${id}"]`).remove();
|
|
|
|
},
|
|
|
|
error: (data, status, xhr) => {
|
|
|
|
console.log(data, status, xhr);
|
|
|
|
showErrorNotification(I18n.translate('frontend.error.message'));
|
|
|
|
button.disabled = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|