mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-05 02:58:36 -06:00
109 lines
3.7 KiB
TypeScript
109 lines
3.7 KiB
TypeScript
import { getActionsByEnvironmentId } from "@formbricks/lib/action/service";
|
|
import { getEnvironment, updateEnvironment } from "@formbricks/lib/environment/service";
|
|
import { timeSince } from "@formbricks/lib/time";
|
|
import { ArrowDownIcon, CheckIcon, ExclamationTriangleIcon } from "@heroicons/react/24/solid";
|
|
import clsx from "clsx";
|
|
import Link from "next/link";
|
|
|
|
interface WidgetStatusIndicatorProps {
|
|
environmentId: string;
|
|
type: "large" | "mini";
|
|
}
|
|
|
|
export default async function WidgetStatusIndicator({ environmentId, type }: WidgetStatusIndicatorProps) {
|
|
const [environment, actions] = await Promise.all([
|
|
getEnvironment(environmentId),
|
|
getActionsByEnvironmentId(environmentId, 1),
|
|
]);
|
|
const latestAction = actions.length > 0 ? actions[0] : null;
|
|
|
|
if (!environment?.widgetSetupCompleted && latestAction) {
|
|
await updateEnvironment(environment.id, { widgetSetupCompleted: true });
|
|
}
|
|
|
|
const stati = {
|
|
notImplemented: {
|
|
icon: ArrowDownIcon,
|
|
color: "slate",
|
|
title: "Connect Formbricks to your app.",
|
|
subtitle: "You have not yet connected Formbricks to your app. Follow setup guide.",
|
|
},
|
|
running: { icon: CheckIcon, color: "green", title: "Receiving data.", subtitle: "Last action received:" },
|
|
issue: {
|
|
icon: ExclamationTriangleIcon,
|
|
color: "amber",
|
|
title: "There might be an issue.",
|
|
subtitle: "Last action received:",
|
|
},
|
|
};
|
|
|
|
let status: "notImplemented" | "running" | "issue";
|
|
|
|
if (latestAction) {
|
|
const currentTime = new Date();
|
|
const timeDifference = currentTime.getTime() - new Date(latestAction.createdAt).getTime();
|
|
|
|
if (timeDifference <= 24 * 60 * 60 * 1000) {
|
|
status = "running";
|
|
} else {
|
|
status = "issue";
|
|
}
|
|
} else {
|
|
status = "notImplemented";
|
|
}
|
|
|
|
const currentStatus = stati[status];
|
|
|
|
if (type === "large") {
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
"flex flex-col items-center justify-center space-y-2 rounded-lg py-6 text-center",
|
|
status === "notImplemented" && "bg-slate-100",
|
|
status === "running" && "bg-green-100",
|
|
status === "issue" && "bg-amber-100"
|
|
)}>
|
|
<div
|
|
className={clsx(
|
|
"h-12 w-12 rounded-full bg-white p-2",
|
|
status === "notImplemented" && "text-slate-700",
|
|
status === "running" && "text-green-700",
|
|
status === "issue" && "text-amber-700"
|
|
)}>
|
|
<currentStatus.icon />
|
|
</div>
|
|
<p className="text-md font-bold text-slate-800 md:text-xl">{currentStatus.title}</p>
|
|
<p className="text-sm text-slate-700">
|
|
{currentStatus.subtitle}{" "}
|
|
{latestAction && <span>{timeSince(latestAction.createdAt.toISOString())}</span>}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
if (type === "mini") {
|
|
return (
|
|
<Link href={`/environments/${environment.id}/settings/setup`}>
|
|
<div className="group my-4 flex justify-center">
|
|
<div className=" flex rounded-full bg-slate-100 px-2 py-1">
|
|
<p className="mr-2 text-sm text-slate-400 group-hover:underline">
|
|
{currentStatus.subtitle}{" "}
|
|
{latestAction && <span>{timeSince(latestAction.createdAt.toISOString())}</span>}
|
|
</p>
|
|
<div
|
|
className={clsx(
|
|
"h-5 w-5 rounded-full p-0.5",
|
|
status === "notImplemented" && "bg-slate-100 text-slate-700",
|
|
status === "running" && "bg-green-100 text-green-700",
|
|
status === "issue" && "bg-amber-100 text-amber-700"
|
|
)}>
|
|
<currentStatus.icon />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|