mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 04:21:52 +00:00
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import { Progress, Spacer } from "@nextui-org/react";
|
|
import { usePathname } from "next/navigation";
|
|
import React from "react";
|
|
|
|
import { VerticalSteps } from "./vertical-steps";
|
|
|
|
const steps = [
|
|
{
|
|
title: "Send Invitation",
|
|
description:
|
|
"Enter the email address of the person you want to invite and send the invitation.",
|
|
href: "/invitations/new",
|
|
},
|
|
{
|
|
title: "Review Invitation Details",
|
|
description:
|
|
"Review the invitation details and share the information required for the person to accept the invitation.",
|
|
href: "/invitations/check-details",
|
|
},
|
|
];
|
|
|
|
export const WorkflowSendInvite = () => {
|
|
const pathname = usePathname();
|
|
|
|
// Calculate current step based on pathname
|
|
const currentStepIndex = steps.findIndex((step) =>
|
|
pathname.endsWith(step.href),
|
|
);
|
|
const currentStep = currentStepIndex === -1 ? 0 : currentStepIndex;
|
|
|
|
return (
|
|
<section className="max-w-sm">
|
|
<h1 className="mb-2 text-xl font-medium" id="getting-started">
|
|
Send invitation
|
|
</h1>
|
|
<p className="mb-5 text-small text-default-500">
|
|
Follow the steps to send an invitation to the users.
|
|
</p>
|
|
<Progress
|
|
classNames={{
|
|
base: "px-0.5 mb-5",
|
|
label: "text-small",
|
|
value: "text-small text-default-400",
|
|
}}
|
|
label="Steps"
|
|
maxValue={steps.length - 1}
|
|
minValue={0}
|
|
showValueLabel={true}
|
|
size="md"
|
|
value={currentStep}
|
|
valueLabel={`${currentStep + 1} of ${steps.length}`}
|
|
/>
|
|
<VerticalSteps
|
|
hideProgressBars
|
|
currentStep={currentStep}
|
|
stepClassName="border border-default-200 dark:border-default-50 aria-[current]:bg-default-100 dark:aria-[current]:bg-prowler-blue-800 cursor-default"
|
|
steps={steps}
|
|
/>
|
|
<Spacer y={4} />
|
|
</section>
|
|
);
|
|
};
|