2022-01-08 15:56:14 -08:00
|
|
|
import Rails from '@rails/ujs';
|
|
|
|
|
2022-01-13 14:25:46 -08:00
|
|
|
import I18n from 'retrospring/i18n';
|
2022-01-08 15:56:14 -08:00
|
|
|
import { showNotification, showErrorNotification } from 'utilities/notifications';
|
|
|
|
|
|
|
|
export function commentSmileHandler(event: Event): void {
|
|
|
|
const button = event.target as HTMLButtonElement;
|
|
|
|
const id = button.dataset.cId;
|
|
|
|
const action = button.dataset.action;
|
|
|
|
let count = Number(document.querySelector(`#ab-comment-smile-count-${id}`).innerHTML);
|
|
|
|
let success = false;
|
|
|
|
let targetUrl;
|
|
|
|
|
|
|
|
if (action === 'smile') {
|
|
|
|
count++;
|
|
|
|
targetUrl = '/ajax/create_comment_smile';
|
|
|
|
}
|
|
|
|
else if (action === 'unsmile') {
|
|
|
|
count--;
|
|
|
|
targetUrl = '/ajax/destroy_comment_smile';
|
|
|
|
}
|
|
|
|
|
|
|
|
button.disabled = true;
|
|
|
|
|
|
|
|
Rails.ajax({
|
|
|
|
url: targetUrl,
|
|
|
|
type: 'POST',
|
|
|
|
data: new URLSearchParams({
|
|
|
|
id: id
|
|
|
|
}).toString(),
|
|
|
|
success: (data) => {
|
|
|
|
success = data.success;
|
|
|
|
if (success) {
|
|
|
|
document.querySelector(`#ab-comment-smile-count-${id}`).innerHTML = String(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
showNotification(data.message, data.success);
|
|
|
|
},
|
|
|
|
error: (data, status, xhr) => {
|
|
|
|
console.log(data, status, xhr);
|
|
|
|
showErrorNotification(I18n.translate('frontend.error.message'));
|
|
|
|
},
|
|
|
|
complete: () => {
|
|
|
|
button.disabled = false;
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
switch(action) {
|
|
|
|
case 'smile':
|
|
|
|
button.dataset.action = 'unsmile';
|
|
|
|
break;
|
|
|
|
case 'unsmile':
|
|
|
|
button.dataset.action = 'smile';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|