mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
129 lines
3.9 KiB
TypeScript
129 lines
3.9 KiB
TypeScript
import {
|
|
Check,
|
|
FileSignature,
|
|
FileText,
|
|
Train,
|
|
Wallet,
|
|
type LucideIcon,
|
|
} from "lucide-react";
|
|
import { Paper, Group, Stack, Text, Box } from "@mantine/core";
|
|
|
|
import {
|
|
getWorkflowStageIndex,
|
|
WORKFLOW_STAGES,
|
|
} from "@/features/bookings/booking-status.config";
|
|
import { SectionCard } from "./detail/SectionCard";
|
|
import { BRAND_GREEN, detailStyles } from "./detail/booking-detail.styles";
|
|
|
|
const STAGE_ICONS: LucideIcon[] = [
|
|
FileText,
|
|
FileSignature,
|
|
FileSignature,
|
|
Wallet,
|
|
Train,
|
|
Check,
|
|
];
|
|
|
|
interface BookingWorkflowStepperProps {
|
|
status: string;
|
|
title: string;
|
|
description: string;
|
|
titleColor: string;
|
|
}
|
|
|
|
export function BookingWorkflowStepper({
|
|
status,
|
|
title,
|
|
description,
|
|
}: BookingWorkflowStepperProps) {
|
|
const currentStage = getWorkflowStageIndex(status);
|
|
const isTerminal = currentStage < 0;
|
|
|
|
return (
|
|
<SectionCard icon={Train} title="Workflow progress">
|
|
<Group gap={0} wrap="nowrap" align="flex-start" mb="lg">
|
|
{WORKFLOW_STAGES.map((stage, index) => {
|
|
const Icon = STAGE_ICONS[index] ?? FileText;
|
|
const isComplete = !isTerminal && index < currentStage;
|
|
const isActive = !isTerminal && index === currentStage;
|
|
const isLast = index === WORKFLOW_STAGES.length - 1;
|
|
|
|
return (
|
|
<Box key={stage.label} style={{ flex: isLast ? "0 0 auto" : 1, minWidth: 0 }}>
|
|
<Group gap={0} wrap="nowrap" align="center">
|
|
<Stack gap={6} align="center" style={{ flexShrink: 0 }}>
|
|
<Box
|
|
style={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
width: 34,
|
|
height: 34,
|
|
borderRadius: "50%",
|
|
background: isComplete
|
|
? BRAND_GREEN
|
|
: isActive
|
|
? "white"
|
|
: "var(--mantine-color-gray-1)",
|
|
border: isActive
|
|
? `2px solid ${BRAND_GREEN}`
|
|
: isComplete
|
|
? "2px solid transparent"
|
|
: "2px solid var(--mantine-color-gray-2)",
|
|
color: isComplete
|
|
? "white"
|
|
: isActive
|
|
? "var(--freight-brand-dark)"
|
|
: "var(--mantine-color-gray-5)",
|
|
transition: "all 0.2s ease",
|
|
}}
|
|
>
|
|
{isComplete ? <Check size={16} strokeWidth={3} /> : <Icon size={15} />}
|
|
</Box>
|
|
<Text
|
|
size="xs"
|
|
fw={isActive ? 600 : 500}
|
|
c={isActive ? "green.7" : isComplete ? "dark" : "dimmed"}
|
|
ta="center"
|
|
style={{ whiteSpace: "nowrap" }}
|
|
>
|
|
{stage.label}
|
|
</Text>
|
|
</Stack>
|
|
{!isLast && (
|
|
<Box
|
|
style={{
|
|
flex: 1,
|
|
height: 2,
|
|
marginInline: 8,
|
|
marginBottom: 20,
|
|
borderRadius: 2,
|
|
background: isComplete ? BRAND_GREEN : "var(--mantine-color-gray-2)",
|
|
}}
|
|
/>
|
|
)}
|
|
</Group>
|
|
</Box>
|
|
);
|
|
})}
|
|
</Group>
|
|
|
|
<Paper
|
|
radius="md"
|
|
withBorder
|
|
p="md"
|
|
style={
|
|
isTerminal ? detailStyles.statusBannerTerminal : detailStyles.statusBanner
|
|
}
|
|
>
|
|
<Text size="sm" fw={600} c={isTerminal ? "red.7" : "dark"}>
|
|
{title}
|
|
</Text>
|
|
<Text size="sm" c="dimmed" mt={4}>
|
|
{description}
|
|
</Text>
|
|
</Paper>
|
|
</SectionCard>
|
|
);
|
|
}
|