231 lines
8.4 KiB
TypeScript
231 lines
8.4 KiB
TypeScript
"use client";
|
|
|
|
import type { RFA, RFAItem } from "@/types/rfa";
|
|
import { StatusBadge } from "@/components/common/status-badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { format } from "date-fns";
|
|
import { ArrowLeft, CheckCircle, XCircle, Loader2 } from "lucide-react";
|
|
import Link from "next/link";
|
|
import { useState } from "react";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { useProcessRFA } from "@/hooks/use-rfa";
|
|
|
|
interface RFADetailProps {
|
|
data: RFA;
|
|
}
|
|
|
|
export function RFADetail({ data }: RFADetailProps) {
|
|
const [actionState, setActionState] = useState<"approve" | "reject" | null>(null);
|
|
const [comments, setComments] = useState("");
|
|
const processMutation = useProcessRFA();
|
|
const currentRevision = data.revisions.find((revision) => revision.isCurrent) ?? data.revisions[0];
|
|
const currentItems = currentRevision?.items ?? [];
|
|
const currentStatus = currentRevision?.statusCode?.statusName || currentRevision?.statusCode?.statusCode || "Unknown";
|
|
const createdAt = data.correspondence?.createdAt || currentRevision?.createdAt;
|
|
|
|
const getDrawingNumber = (item: RFAItem) =>
|
|
item.shopDrawingRevision?.shopDrawing?.drawingNumber ||
|
|
item.asBuiltDrawingRevision?.asBuiltDrawing?.drawingNumber ||
|
|
"-";
|
|
|
|
const getRevisionLabel = (item: RFAItem) => {
|
|
if (item.shopDrawingRevision?.revisionLabel) {
|
|
return item.shopDrawingRevision.revisionLabel;
|
|
}
|
|
|
|
if (item.shopDrawingRevision?.revisionNumber !== undefined) {
|
|
return String(item.shopDrawingRevision.revisionNumber);
|
|
}
|
|
|
|
if (item.asBuiltDrawingRevision?.revisionLabel) {
|
|
return item.asBuiltDrawingRevision.revisionLabel;
|
|
}
|
|
|
|
if (item.asBuiltDrawingRevision?.revisionNumber !== undefined) {
|
|
return String(item.asBuiltDrawingRevision.revisionNumber);
|
|
}
|
|
|
|
return "-";
|
|
};
|
|
|
|
const getRevisionTitle = (item: RFAItem) =>
|
|
item.shopDrawingRevision?.title || item.asBuiltDrawingRevision?.title || "-";
|
|
|
|
const handleProcess = () => {
|
|
if (!actionState) return;
|
|
|
|
const apiAction = actionState === "approve" ? "APPROVE" : "REJECT";
|
|
|
|
processMutation.mutate(
|
|
{
|
|
uuid: data.uuid,
|
|
data: {
|
|
action: apiAction,
|
|
comments: comments,
|
|
},
|
|
},
|
|
{
|
|
onSuccess: () => {
|
|
setActionState(null);
|
|
setComments("");
|
|
// Query invalidation handled in hook
|
|
},
|
|
}
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{/* Header / Actions */}
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-4">
|
|
<Link href="/rfas">
|
|
<Button variant="ghost" size="icon">
|
|
<ArrowLeft className="h-5 w-5" />
|
|
</Button>
|
|
</Link>
|
|
<div>
|
|
<h1 className="text-2xl font-bold">{data.correspondence?.correspondenceNumber || "RFA"}</h1>
|
|
{createdAt && (
|
|
<p className="text-muted-foreground">
|
|
Created on {format(new Date(createdAt), "dd MMM yyyy HH:mm")}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{currentStatus === "PENDING" && (
|
|
<div className="flex gap-2">
|
|
<Button
|
|
variant="outline"
|
|
className="text-destructive hover:text-destructive hover:bg-destructive/10"
|
|
onClick={() => setActionState("reject")}
|
|
>
|
|
<XCircle className="mr-2 h-4 w-4" />
|
|
Reject
|
|
</Button>
|
|
<Button
|
|
className="bg-green-600 hover:bg-green-700 text-white"
|
|
onClick={() => setActionState("approve")}
|
|
>
|
|
<CheckCircle className="mr-2 h-4 w-4" />
|
|
Approve
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Action Input Area */}
|
|
{actionState && (
|
|
<Card className="border-primary">
|
|
<CardHeader>
|
|
<CardTitle className="text-lg">
|
|
{actionState === "approve" ? "Confirm Approval" : "Confirm Rejection"}
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label>Comments</Label>
|
|
<Textarea
|
|
value={comments}
|
|
onChange={(e) => setComments(e.target.value)}
|
|
placeholder="Enter comments..."
|
|
/>
|
|
</div>
|
|
<div className="flex justify-end gap-2">
|
|
<Button variant="ghost" onClick={() => setActionState(null)}>Cancel</Button>
|
|
<Button
|
|
variant={actionState === "approve" ? "default" : "destructive"}
|
|
onClick={handleProcess}
|
|
disabled={processMutation.isPending}
|
|
className={actionState === "approve" ? "bg-green-600 hover:bg-green-700" : ""}
|
|
>
|
|
{processMutation.isPending && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
Confirm {actionState === "approve" ? "Approve" : "Reject"}
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)}
|
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
|
{/* Main Content */}
|
|
<div className="lg:col-span-2 space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<div className="flex justify-between items-start">
|
|
<CardTitle className="text-xl">{currentRevision?.subject || "Untitled RFA"}</CardTitle>
|
|
<StatusBadge status={currentStatus} />
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent className="space-y-6">
|
|
<div>
|
|
<h3 className="font-semibold mb-2">Description</h3>
|
|
<p className="text-gray-700 whitespace-pre-wrap">
|
|
{currentRevision?.description || "No description provided."}
|
|
</p>
|
|
</div>
|
|
|
|
<hr className="my-4 border-t" />
|
|
|
|
<div>
|
|
<h3 className="font-semibold mb-3">RFA Items</h3>
|
|
{currentItems.length === 0 ? (
|
|
<p className="text-sm text-muted-foreground">No drawing items linked to this RFA.</p>
|
|
) : (
|
|
<div className="border rounded-lg overflow-hidden">
|
|
<table className="w-full text-sm">
|
|
<thead className="bg-muted/50">
|
|
<tr>
|
|
<th className="px-4 py-3 text-left font-medium">Type</th>
|
|
<th className="px-4 py-3 text-left font-medium">Drawing No.</th>
|
|
<th className="px-4 py-3 text-left font-medium">Revision</th>
|
|
<th className="px-4 py-3 text-left font-medium">Title</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y">
|
|
{currentItems.map((item) => (
|
|
<tr key={item.id}>
|
|
<td className="px-4 py-3 font-medium">{item.itemType}</td>
|
|
<td className="px-4 py-3">{getDrawingNumber(item)}</td>
|
|
<td className="px-4 py-3">{getRevisionLabel(item)}</td>
|
|
<td className="px-4 py-3 text-muted-foreground">{getRevisionTitle(item)}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
|
|
{/* Sidebar Info */}
|
|
<div className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-lg">Project Information</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div>
|
|
<p className="text-sm font-medium text-muted-foreground">Project</p>
|
|
<p className="font-medium mt-1">{data.correspondence?.project?.projectName || "-"}</p>
|
|
</div>
|
|
|
|
<hr className="my-4 border-t" />
|
|
|
|
<div>
|
|
<p className="text-sm font-medium text-muted-foreground">Discipline</p>
|
|
<p className="font-medium mt-1">{data.discipline?.name || data.discipline?.code || "-"}</p>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|