Port questionbox all (followers) functionality to TypeScript

This commit is contained in:
Andreas Nedbal 2022-01-03 22:22:17 +01:00 committed by Andreas Nedbal
parent 5888b0ff04
commit 172fc0b84b
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
import Rails from '@rails/ujs';
import { showErrorNotification, showNotification } from 'utilities/notifications';
import I18n from '../../../legacy/i18n';
export function questionboxAllHandler(event: Event): void {
const button = event.target as HTMLButtonElement;
button.disabled = true;
document.querySelector<HTMLInputElement>('textarea[name=qb-all-question]').readOnly = true;
Rails.ajax({
url: '/ajax/ask',
type: 'POST',
data: new URLSearchParams({
rcpt: 'followers',
question: document.querySelector<HTMLInputElement>('textarea[name=qb-all-question]').value,
anonymousQuestion: 'false'
}).toString(),
success: (data) => {
if (data.success) {
document.querySelector<HTMLInputElement>('textarea[name=qb-all-question]').value = '';
window['$']('#modal-ask-followers').modal('hide');
}
showNotification(data.message, data.success);
},
error: (data, status, xhr) => {
console.log(data, status, xhr);
showErrorNotification(I18n.translate('frontend.error.message'));
},
complete: () => {
button.disabled = false;
document.querySelector<HTMLInputElement>('textarea[name=qb-all-question]').readOnly = false;
}
});
}
export function questionboxAllInputHandler(event: KeyboardEvent) {
if (event.keyCode == 13 && (event.ctrlKey || event.metaKey)) {
document.querySelector<HTMLButtonElement>(`button[name=qb-all-ask]`).click();
}
}