forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaseStatusView.tsx
More file actions
142 lines (128 loc) · 4.76 KB
/
Copy pathCaseStatusView.tsx
File metadata and controls
142 lines (128 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
'use client';
import { cn } from '@/lib/utils';
const STAGE_META: Record<string, { label: string; dot: string; text: string; bg: string }> = {
none: { label: 'Normal', dot: 'bg-green-400', text: 'text-green-400', bg: 'bg-green-500/[0.06]' },
warning: { label: 'Warning', dot: 'bg-amber-400', text: 'text-amber-400', bg: 'bg-amber-500/[0.06]' },
throttle: { label: 'Throttled', dot: 'bg-orange-400', text: 'text-orange-400', bg: 'bg-orange-500/[0.06]' },
restrict: { label: 'Restricted', dot: 'bg-red-400', text: 'text-red-400', bg: 'bg-red-500/[0.06]' },
};
const SUPPORT_EMAIL = 'team@basedhardware.com';
interface CaseStatus {
case_ref: string;
stage: 'none' | 'warning' | 'throttle' | 'restrict';
message: string;
created_at: string;
updated_at: string;
support_email?: string;
}
function formatDate(iso: string): string {
try {
return new Date(iso).toLocaleDateString('en-US', {
year: 'numeric',
month: 'short',
day: 'numeric',
hour: '2-digit',
minute: '2-digit',
});
} catch {
return iso;
}
}
function daysSince(iso: string): number {
try {
return Math.floor((Date.now() - new Date(iso).getTime()) / (1000 * 60 * 60 * 24));
} catch {
return 0;
}
}
export function CaseStatusView({
caseRef,
status,
}: {
caseRef: string;
status: CaseStatus | null;
}) {
if (!status) {
return (
<div className="min-h-screen bg-zinc-950 flex items-center justify-center p-6">
<div className="max-w-md w-full text-center">
<h1 className="text-lg font-semibold text-white mb-2">Case Not Found</h1>
<p className="text-sm text-zinc-400 mb-1">
No case found for reference <span className="font-mono text-zinc-300">{caseRef}</span>
</p>
<p className="text-xs text-zinc-500 mt-4">
If you believe this is an error, contact{' '}
<a href={`mailto:${SUPPORT_EMAIL}`} className="text-purple-400 hover:text-purple-300">
{SUPPORT_EMAIL}
</a>
</p>
</div>
</div>
);
}
const meta = STAGE_META[status.stage] ?? STAGE_META['none'];
const updatedDays = daysSince(status.updated_at);
const email = status.support_email || SUPPORT_EMAIL;
return (
<div className="min-h-screen bg-zinc-950 flex items-center justify-center p-6">
<div className="max-w-md w-full space-y-5">
{/* Header */}
<div className="text-center">
<h1 className="text-lg font-semibold text-white">Case Status</h1>
<p className="text-xs text-zinc-500 font-mono mt-1">{status.case_ref}</p>
</div>
{/* Status */}
<div
className={cn(
'rounded-2xl p-5',
'bg-gradient-to-b from-white/[0.03] to-white/[0.01]',
'shadow-[0_0_0_1px_rgba(255,255,255,0.04),0_2px_4px_rgba(0,0,0,0.1),0_8px_16px_rgba(0,0,0,0.1)]'
)}
>
{/* Stage */}
<div className={cn('flex items-center gap-2.5 px-3 py-2 rounded-xl mb-4', meta.bg)}>
<div className={cn('w-2 h-2 rounded-full', meta.dot)} />
<span className={cn('text-sm font-medium', meta.text)}>{meta.label}</span>
</div>
{/* Details */}
<div className="space-y-3">
<div className="flex justify-between items-center">
<span className="text-xs text-zinc-500">Created</span>
<span className="text-sm text-zinc-300">{formatDate(status.created_at)}</span>
</div>
<div className="h-px bg-zinc-800" />
<div className="flex justify-between items-center">
<span className="text-xs text-zinc-500">Last Updated</span>
<span className="text-sm text-zinc-300">{formatDate(status.updated_at)}</span>
</div>
</div>
{/* Message */}
{status.message && (
<>
<div className="h-px bg-zinc-800 my-3" />
<p className="text-sm text-zinc-400 leading-relaxed">{status.message}</p>
</>
)}
</div>
{/* Support note */}
{updatedDays >= 3 && (
<div className="rounded-xl bg-zinc-900/50 px-4 py-3">
<p className="text-xs text-zinc-400 leading-relaxed">
This case hasn't been updated in {updatedDays} days. If you need assistance, please contact{' '}
<a href={`mailto:${email}`} className="text-purple-400 hover:text-purple-300">
{email}
</a>
</p>
</div>
)}
{/* Footer */}
<p className="text-center text-xs text-zinc-600">
Need help?{' '}
<a href={`mailto:${email}`} className="text-purple-400/70 hover:text-purple-300">
{email}
</a>
</p>
</div>
</div>
);
}