54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { post } from '@rails/request.js';
|
|
|
|
import { updateDeleteButton } from '../delete';
|
|
import { showNotification, showErrorNotification } from 'utilities/notifications';
|
|
|
|
export function answerEntryHandler(event: Event): void {
|
|
const element: HTMLButtonElement = event.target as HTMLButtonElement;
|
|
const inboxEntry: HTMLElement = element.closest<HTMLElement>('.inbox-entry');
|
|
|
|
element.disabled = true;
|
|
|
|
const shareTo = [];
|
|
inboxEntry.querySelectorAll('input[type=checkbox][name=ib-share]:checked')
|
|
.forEach((element: HTMLInputElement) => {
|
|
shareTo.push(element.getAttribute('data-service'));
|
|
});
|
|
|
|
const data = {
|
|
id: element.getAttribute('data-ib-id'),
|
|
answer: inboxEntry.querySelector<HTMLInputElement>('textarea[name=ib-answer]')?.value,
|
|
share: JSON.stringify(shareTo),
|
|
inbox: 'true'
|
|
};
|
|
|
|
post('/ajax/answer', {
|
|
body: data,
|
|
contentType: 'application/json'
|
|
})
|
|
.then(async response => {
|
|
const data = await response.json;
|
|
|
|
if (!data.success) {
|
|
showErrorNotification(data.message);
|
|
element.disabled = false;
|
|
return false;
|
|
}
|
|
updateDeleteButton(false);
|
|
showNotification(data.message);
|
|
(inboxEntry as HTMLElement).remove();
|
|
})
|
|
.catch(err => {
|
|
console.log(err);
|
|
element.disabled = false;
|
|
});
|
|
}
|
|
|
|
export function answerEntryInputHandler(event: KeyboardEvent): void {
|
|
const input = event.target as HTMLInputElement;
|
|
const inboxId = input.dataset.id;
|
|
|
|
if (event.keyCode == 13 && (event.ctrlKey || event.metaKey)) {
|
|
document.querySelector<HTMLButtonElement>(`button[name="ib-answer"][data-ib-id="${inboxId}"]`).click();
|
|
}
|
|
} |