Refactor answer smile to use request.js

This commit is contained in:
Andreas Nedbal 2022-09-03 05:05:21 +02:00
parent 508c7e844b
commit 0aff344581
1 changed files with 15 additions and 14 deletions

View File

@ -1,4 +1,4 @@
import Rails from '@rails/ujs';
import { post } from '@rails/request.js';
import I18n from 'retrospring/i18n';
import { showNotification, showErrorNotification } from 'utilities/notifications';
@ -22,25 +22,27 @@ export function answerboxSmileHandler(event: Event): void {
button.disabled = true;
Rails.ajax({
url: targetUrl,
type: 'POST',
data: new URLSearchParams({
post(targetUrl, {
body: {
id: id
}).toString(),
success: (data) => {
},
contentType: 'application/json'
})
.then(async response => {
const data = await response.json;
success = data.success;
if (success) {
document.querySelector(`#ab-smile-count-${id}`).innerHTML = String(count);
}
showNotification(data.message, data.success);
},
error: (data, status, xhr) => {
console.log(data, status, xhr);
})
.catch(err => {
console.log(err);
showErrorNotification(I18n.translate('frontend.error.message'));
},
complete: () => {
})
.finally(() => {
button.disabled = false;
if (success) {
@ -53,6 +55,5 @@ export function answerboxSmileHandler(event: Event): void {
break;
}
}
}
});
});
}