From 0feb05828a22fb43cd627fb60b9d638c32bceca9 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 9 Jan 2022 00:55:40 +0100 Subject: [PATCH] Port answerbox destroy functionality to TypeScript --- .../retrospring/features/answerbox/destroy.ts | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 app/javascript/retrospring/features/answerbox/destroy.ts diff --git a/app/javascript/retrospring/features/answerbox/destroy.ts b/app/javascript/retrospring/features/answerbox/destroy.ts new file mode 100644 index 00000000..733a326f --- /dev/null +++ b/app/javascript/retrospring/features/answerbox/destroy.ts @@ -0,0 +1,46 @@ +import Rails from '@rails/ujs'; +import { showErrorNotification, showNotification } from 'utilities/notifications'; +import swal from 'sweetalert'; + +import I18n from '../../../legacy/i18n'; + +export function answerboxDestroyHandler(event: Event): void { + event.preventDefault(); + const button = event.target as HTMLButtonElement; + const answerId = button.dataset.aId; + + swal({ + title: I18n.translate('frontend.destroy_own.confirm.title'), + text: I18n.translate('frontend.destroy_own.confirm.text'), + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: I18n.translate('views.actions.y'), + cancelButtonText: I18n.translate('views.actions.n'), + closeOnConfirm: true + }, (returnValue) => { + if (returnValue === false) { + button.disabled = false; + return; + } + + Rails.ajax({ + url: '/ajax/destroy_answer', + type: 'POST', + data: new URLSearchParams({ + answer: answerId + }).toString(), + success: (data) => { + if (data.success) { + document.querySelector(`.answerbox[data-id="${answerId}"]`).remove(); + } + + showNotification(data.message, data.success); + }, + error: (data, status, xhr) => { + console.log(data, status, xhr); + showErrorNotification(I18n.translate('frontend.error.message')); + } + }); + }); +} \ No newline at end of file