@@ -12,6 +12,8 @@ import {
|
||||
AlertCircle,
|
||||
Film,
|
||||
MessageSquare,
|
||||
ShieldCheck,
|
||||
Eye,
|
||||
} from "lucide-react";
|
||||
import type { ShotWithDetails } from "@/types";
|
||||
|
||||
@@ -22,19 +24,23 @@ interface ShotQueueProps {
|
||||
}
|
||||
|
||||
const STATUS_STYLES: Record<string, string> = {
|
||||
WAITING: "text-zinc-400",
|
||||
IN_PROGRESS: "text-blue-400",
|
||||
IN_REVIEW: "text-purple-400",
|
||||
REVISIONS: "text-orange-400",
|
||||
COMPLETE: "text-emerald-400",
|
||||
WAITING: "text-zinc-400",
|
||||
IN_PROGRESS: "text-blue-400",
|
||||
INTERNAL_REVIEW: "text-purple-400",
|
||||
READY_FOR_CLIENT: "text-sky-400",
|
||||
CLIENT_REVIEW: "text-indigo-400",
|
||||
REVISIONS: "text-orange-400",
|
||||
COMPLETE: "text-emerald-400",
|
||||
};
|
||||
|
||||
const STATUS_ICONS: Record<string, React.ElementType> = {
|
||||
WAITING: Clock,
|
||||
IN_PROGRESS: Film,
|
||||
IN_REVIEW: AlertCircle,
|
||||
REVISIONS: AlertCircle,
|
||||
COMPLETE: CheckCircle2,
|
||||
WAITING: Clock,
|
||||
IN_PROGRESS: Film,
|
||||
INTERNAL_REVIEW: AlertCircle,
|
||||
READY_FOR_CLIENT: ShieldCheck,
|
||||
CLIENT_REVIEW: Eye,
|
||||
REVISIONS: AlertCircle,
|
||||
COMPLETE: CheckCircle2,
|
||||
};
|
||||
|
||||
const PRIORITY_DOT: Record<string, string> = {
|
||||
|
||||
Reference in New Issue
Block a user