Refactor comment destroy to use request.js

This commit is contained in:
Andreas Nedbal 2022-09-03 05:03:04 +02:00
parent eb0271210b
commit 2c5da2bc5c
1 changed files with 12 additions and 13 deletions

View File

@ -1,4 +1,4 @@
import Rails from '@rails/ujs'; import { post } from '@rails/request.js';
import swal from 'sweetalert'; import swal from 'sweetalert';
import I18n from 'retrospring/i18n'; import I18n from 'retrospring/i18n';
@ -25,24 +25,23 @@ export function commentDestroyHandler(event: Event): void {
return; return;
} }
Rails.ajax({ post('/ajax/destroy_comment', {
url: '/ajax/destroy_comment', body: {
type: 'POST',
data: new URLSearchParams({
comment: id comment: id
}).toString(), },
success: (data) => { contentType: 'application/json'
if (!data.success) return false; })
.then(async response => {
const data = await response.json;
showNotification(data.message); showNotification(data.message);
document.querySelector(`[data-comment-id="${id}"]`).remove(); document.querySelector(`[data-comment-id="${id}"]`).remove();
}, })
error: (data, status, xhr) => { .catch(err => {
console.log(data, status, xhr); console.log(err);
showErrorNotification(I18n.translate('frontend.error.message')); showErrorNotification(I18n.translate('frontend.error.message'));
button.disabled = false; button.disabled = false;
} });
});
}); });
} }