mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-31 03:19:06 -06:00
* Add new screens for surveys with different status (not found, paused, completed) --------- Co-authored-by: Johannes <johannes@formbricks.com>
101 lines
3.8 KiB
TypeScript
101 lines
3.8 KiB
TypeScript
"use client";
|
|
|
|
import LoadingSpinner from "@/components/shared/LoadingSpinner";
|
|
import SurveyStatusIndicator from "@/components/shared/SurveyStatusIndicator";
|
|
import { useSurveyMutation } from "@/lib/surveys/mutateSurveys";
|
|
import { useSurvey } from "@/lib/surveys/surveys";
|
|
import {
|
|
ErrorComponent,
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@formbricks/ui";
|
|
import { CheckCircleIcon, PauseCircleIcon, PlayCircleIcon } from "@heroicons/react/24/solid";
|
|
import toast from "react-hot-toast";
|
|
|
|
export default function SurveyStatusDropdown({
|
|
surveyId,
|
|
environmentId,
|
|
updateLocalSurveyStatus,
|
|
}: {
|
|
surveyId: string;
|
|
environmentId: string;
|
|
updateLocalSurveyStatus?: (status: "draft" | "inProgress" | "paused" | "completed" | "archived") => void;
|
|
}) {
|
|
const { survey, isLoadingSurvey, isErrorSurvey } = useSurvey(environmentId, surveyId);
|
|
const { triggerSurveyMutate } = useSurveyMutation(environmentId, surveyId);
|
|
|
|
if (isLoadingSurvey) {
|
|
return <LoadingSpinner />;
|
|
}
|
|
|
|
if (isErrorSurvey) {
|
|
return <ErrorComponent />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{survey.status === "draft" || survey.status === "archived" ? (
|
|
<div className="flex items-center">
|
|
<SurveyStatusIndicator status={survey.status} environmentId={environmentId} />
|
|
{survey.status === "draft" && <p className="text-sm italic text-slate-600">Draft</p>}
|
|
{survey.status === "archived" && <p className="text-sm italic text-slate-600">Archived</p>}
|
|
</div>
|
|
) : (
|
|
<Select
|
|
onValueChange={(value) => {
|
|
triggerSurveyMutate({ status: value })
|
|
.then(() => {
|
|
toast.success(
|
|
value === "inProgress"
|
|
? "Survey live"
|
|
: value === "paused"
|
|
? "Survey paused"
|
|
: value === "completed"
|
|
? "Survey completed"
|
|
: ""
|
|
);
|
|
})
|
|
.catch((error) => {
|
|
toast.error(`Error: ${error.message}`);
|
|
});
|
|
|
|
if (updateLocalSurveyStatus)
|
|
updateLocalSurveyStatus(value as "draft" | "inProgress" | "paused" | "completed" | "archived");
|
|
}}>
|
|
<SelectTrigger className="w-[170px] bg-white py-6 md:w-[200px]">
|
|
<SelectValue>
|
|
<div className="flex items-center">
|
|
<SurveyStatusIndicator status={survey.status} environmentId={environmentId} />
|
|
<span className="ml-2 text-sm text-slate-700">
|
|
{survey.status === "draft" && "Survey draft"}
|
|
{survey.status === "inProgress" && "Collecting insights"}
|
|
{survey.status === "paused" && "Survey paused"}
|
|
{survey.status === "completed" && "Survey complete"}
|
|
{survey.status === "archived" && "Survey archived"}
|
|
</span>
|
|
</div>
|
|
</SelectValue>
|
|
</SelectTrigger>
|
|
<SelectContent className="bg-white">
|
|
<SelectItem className="group font-normal hover:text-slate-900" value="inProgress">
|
|
<PlayCircleIcon className="-mt-1 mr-1 inline h-5 w-5 text-slate-500 group-hover:text-slate-800" />
|
|
Collect insights
|
|
</SelectItem>
|
|
<SelectItem className="group font-normal hover:text-slate-900" value="paused">
|
|
<PauseCircleIcon className="-mt-1 mr-1 inline h-5 w-5 text-slate-500 group-hover:text-slate-800" />
|
|
Pause Survey
|
|
</SelectItem>
|
|
<SelectItem className="group font-normal hover:text-slate-900" value="completed">
|
|
<CheckCircleIcon className="-mt-1 mr-1 inline h-5 w-5 text-slate-500 group-hover:text-slate-800" />
|
|
Complete Survey
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
)}
|
|
</>
|
|
);
|
|
}
|