2022-01-28 21:00:11 +00:00
|
|
|
import $ from 'jquery';
|
2023-09-19 00:50:30 +00:00
|
|
|
import {POST} from '../../modules/fetch.js';
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2023-05-28 01:34:18 +00:00
|
|
|
export function initCompReactionSelector($parent) {
|
|
|
|
$parent.find(`.select-reaction .item.reaction, .comment-reaction-button`).on('click', async function (e) {
|
2021-10-16 17:28:04 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
2024-03-27 16:09:34 +00:00
|
|
|
if (this.classList.contains('disabled')) return;
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-25 04:30:38 +00:00
|
|
|
const actionUrl = this.closest('[data-action-url]')?.getAttribute('data-action-url');
|
|
|
|
const reactionContent = this.getAttribute('data-reaction-content');
|
|
|
|
const hasReacted = this.closest('.ui.segment.reactions')?.querySelector(`a[data-reaction-content="${reactionContent}"]`)?.getAttribute('data-has-reacted') === 'true';
|
2023-05-28 01:34:18 +00:00
|
|
|
|
2023-09-19 00:50:30 +00:00
|
|
|
const res = await POST(`${actionUrl}/${hasReacted ? 'unreact' : 'react'}`, {
|
|
|
|
data: new URLSearchParams({content: reactionContent}),
|
2023-05-28 01:34:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const data = await res.json();
|
|
|
|
if (data && (data.html || data.empty)) {
|
2024-03-16 12:22:16 +00:00
|
|
|
const $content = $(this).closest('.content');
|
|
|
|
let $react = $content.find('.segment.reactions');
|
|
|
|
if ((!data.empty || data.html === '') && $react.length > 0) {
|
|
|
|
$react.remove();
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2023-05-28 01:34:18 +00:00
|
|
|
if (!data.empty) {
|
2024-03-16 12:22:16 +00:00
|
|
|
const $attachments = $content.find('.segment.bottom:first');
|
|
|
|
$react = $(data.html);
|
|
|
|
if ($attachments.length > 0) {
|
|
|
|
$react.insertBefore($attachments);
|
2023-05-28 01:34:18 +00:00
|
|
|
} else {
|
2024-03-16 12:22:16 +00:00
|
|
|
$react.appendTo($content);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2024-03-16 12:22:16 +00:00
|
|
|
$react.find('.dropdown').dropdown();
|
|
|
|
initCompReactionSelector($react);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2023-05-28 01:34:18 +00:00
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
}
|