2022-02-07 21:11:25 +01:00
|
|
|
import * as Survey from 'survey-react';
|
|
|
|
import RawAnswers from './raw-answers';
|
|
|
|
import useSurvey from './use-survey';
|
|
|
|
|
|
|
|
export default function Questions({
|
|
|
|
hosts,
|
|
|
|
onComplete,
|
|
|
|
}: {
|
|
|
|
hosts: string[];
|
|
|
|
onComplete: (data: RawAnswers) => void;
|
|
|
|
}) {
|
|
|
|
const survey = useSurvey(hosts, {
|
|
|
|
onComplete: (sender) => onComplete(sender.data),
|
|
|
|
});
|
|
|
|
if (!survey) {
|
2022-04-25 20:02:20 +02:00
|
|
|
return <div>Wczytywanie...</div>;
|
2022-02-07 21:11:25 +01:00
|
|
|
}
|
|
|
|
return <Survey.Survey model={survey} />;
|
|
|
|
}
|