This commit is contained in:
Stefan Pejcic 2024-02-11 19:23:21 +01:00
parent 51c18709cc
commit e91e495668

View File

@ -54,29 +54,30 @@ export const DocSurveyWidget = ({ className }: Props) => {
} }
}; };
const handleSurveyTextSubmit = async (text: string) => { const handleSurveyTextSubmit = async (text: string) => {
if (text.trim() === "") { if (text.trim() === "") {
return; return;
} }
const surveyIdToUpdate = survey?.id; // Use the existing survey ID if available
const data = await updateSurvey({ const data = await updateSurvey({
surveyId: survey.id, surveyId: surveyIdToUpdate,
body: { response: selectedOption, responseText: text }, body: { response: selectedOption, responseText: text },
}); });
if (!data) return; if (!data) return;
setSurvey(data); setSurvey(data);
// when the user submits text feedback, we show a thank you message
setIsFinished(true); setIsFinished(true);
// reset the survey after N seconds so that the user can submit another survey
setTimeout(() => { setTimeout(() => {
setSelectedOption(null); setSelectedOption(null);
setSurvey(null); setSurvey(null);
setIsFinished(false); setIsFinished(false);
setIsSurveyTextVisible(false); setIsSurveyTextVisible(false);
}, 3000); }, 3000);
}; };
return ( return (
<div <div