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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
|
import { useState } from "react";
import type {
Order,
OrderStatus,
OrderPriority,
OrderType,
UpdateOrderRequest,
DirectiveSummary,
} from "../../lib/api";
const STATUS_BADGE: Record<OrderStatus, { color: string; label: string }> = {
open: { color: "text-[#75aafc] border-[rgba(117,170,252,0.4)]", label: "OPEN" },
in_progress: { color: "text-yellow-400 border-yellow-800", label: "IN PROGRESS" },
under_review: { color: "bg-purple-400/20 text-purple-400 border-purple-800", label: "UNDER REVIEW" },
done: { color: "text-emerald-400 border-emerald-800", label: "DONE" },
archived: { color: "text-[#556677] border-[#2a3a5a]", label: "ARCHIVED" },
};
const PRIORITY_OPTIONS: { value: OrderPriority; color: string; label: string }[] = [
{ value: "critical", color: "text-red-400 border-red-800", label: "Critical" },
{ value: "high", color: "text-orange-400 border-orange-800", label: "High" },
{ value: "medium", color: "text-yellow-400 border-yellow-800", label: "Medium" },
{ value: "low", color: "text-[#75aafc] border-[rgba(117,170,252,0.4)]", label: "Low" },
{ value: "none", color: "text-[#556677] border-[#2a3a5a]", label: "None" },
];
const TYPE_OPTIONS: { value: OrderType; color: string; label: string }[] = [
{ value: "feature", color: "text-[#75aafc]", label: "Feature" },
{ value: "bug", color: "text-red-400", label: "Bug" },
{ value: "spike", color: "text-yellow-400", label: "Spike" },
{ value: "chore", color: "text-[#7788aa]", label: "Chore" },
{ value: "improvement", color: "text-emerald-400", label: "Improvement" },
];
const STATUS_OPTIONS: OrderStatus[] = ["open", "in_progress", "under_review", "done", "archived"];
interface OrderDetailProps {
order: Order;
directives: DirectiveSummary[];
onUpdate: (req: UpdateOrderRequest) => Promise<void>;
onDelete: () => void;
onLinkDirective: (directiveId: string) => Promise<void>;
onConvertToStep: () => Promise<void>;
onRefresh: () => void;
}
export function OrderDetail({
order,
directives,
onUpdate,
onDelete,
onLinkDirective,
onConvertToStep,
onRefresh,
}: OrderDetailProps) {
const [editingTitle, setEditingTitle] = useState(false);
const [titleText, setTitleText] = useState(order.title);
const [editingDesc, setEditingDesc] = useState(false);
const [descText, setDescText] = useState(order.description || "");
const [editingLabels, setEditingLabels] = useState(false);
const [labelsText, setLabelsText] = useState(order.labels.join(", "));
const [showLinkDirective, setShowLinkDirective] = useState(false);
const [directiveSearch, setDirectiveSearch] = useState("");
const badge = STATUS_BADGE[order.status] || STATUS_BADGE.open;
const currentPriority = PRIORITY_OPTIONS.find((p) => p.value === order.priority) || PRIORITY_OPTIONS[4];
const currentType = TYPE_OPTIONS.find((t) => t.value === order.orderType) || TYPE_OPTIONS[0];
const handleTitleSave = async () => {
if (titleText.trim() && titleText !== order.title) {
await onUpdate({ title: titleText.trim() });
}
setEditingTitle(false);
};
const handleDescSave = async () => {
const newDesc = descText.trim() || null;
if (newDesc !== order.description) {
await onUpdate({ description: newDesc });
}
setEditingDesc(false);
};
const handleLabelsSave = async () => {
const newLabels = labelsText
.split(",")
.map((l) => l.trim())
.filter((l) => l.length > 0);
await onUpdate({ labels: newLabels });
setEditingLabels(false);
};
const handleStatusChange = async (status: OrderStatus) => {
await onUpdate({ status });
};
const handlePriorityChange = async (priority: OrderPriority) => {
await onUpdate({ priority });
};
const handleTypeChange = async (orderType: OrderType) => {
await onUpdate({ orderType });
};
const handleLinkDirective = async (directiveId: string) => {
await onLinkDirective(directiveId);
setShowLinkDirective(false);
};
return (
<div className="flex flex-col h-full overflow-y-auto">
{/* Header */}
<div className="px-4 py-2 border-b border-dashed border-[rgba(117,170,252,0.2)]">
<div className="flex items-center justify-between mb-1">
{editingTitle ? (
<div className="flex-1 flex items-center gap-2 pr-2">
<input
value={titleText}
onChange={(e) => setTitleText(e.target.value)}
onKeyDown={(e) => {
if (e.key === "Enter") handleTitleSave();
if (e.key === "Escape") setEditingTitle(false);
}}
autoFocus
className="flex-1 bg-[#0a1628] border border-[rgba(117,170,252,0.2)] rounded px-2 py-1 text-[14px] font-mono text-white"
/>
<button
type="button"
onClick={handleTitleSave}
className="text-[10px] font-mono text-emerald-400 hover:text-emerald-300"
>
[save]
</button>
<button
type="button"
onClick={() => setEditingTitle(false)}
className="text-[10px] font-mono text-[#556677] hover:text-white"
>
[cancel]
</button>
</div>
) : (
<h2
className="text-[14px] font-mono text-white font-medium truncate pr-2 cursor-pointer hover:text-[#9bc3ff]"
onClick={() => {
setTitleText(order.title);
setEditingTitle(true);
}}
>
{order.title}
</h2>
)}
<button
type="button"
onClick={onRefresh}
className="text-[10px] font-mono text-[#7788aa] hover:text-white shrink-0"
title="Refresh"
>
[refresh]
</button>
</div>
{/* Metadata badges row */}
<div className="flex flex-wrap items-center gap-1.5">
<span
className={`text-[10px] font-mono ${badge.color} border rounded px-1.5 py-0.5`}
>
{badge.label}
</span>
<span
className={`text-[10px] font-mono ${currentType.color} border border-current rounded px-1.5 py-0.5`}
>
{currentType.label}
</span>
<span
className={`text-[10px] font-mono ${currentPriority.color} border rounded px-1.5 py-0.5`}
>
{currentPriority.label}
</span>
{order.directiveId && (
<a
href={`/directives/${order.directiveId}`}
className="text-[10px] font-mono text-[#75aafc] border border-[rgba(117,170,252,0.3)] rounded px-1.5 py-0.5 hover:text-white hover:border-[rgba(117,170,252,0.5)] truncate max-w-[160px]"
title={order.directiveName || order.directiveId}
>
↗ {order.directiveName || order.directiveId.slice(0, 8) + "..."}
</a>
)}
{order.directiveStepId && (
<span className="text-[10px] font-mono text-[#7788aa] border border-[#2a3a5a] rounded px-1.5 py-0.5">
step:{order.directiveStepId.slice(0, 8)}
</span>
)}
<button
type="button"
onClick={onDelete}
className="text-[10px] font-mono text-red-400 hover:text-red-300 border border-red-800 rounded px-1.5 py-0.5 ml-auto"
>
Delete
</button>
</div>
</div>
{/* Status selector */}
<div className="px-4 py-3 border-b border-[rgba(117,170,252,0.1)]">
<div className="flex items-center justify-between mb-1.5">
<span className="text-[10px] font-mono text-[#9bc3ff] uppercase tracking-wide">
Status
</span>
</div>
<div className="flex gap-1.5 flex-wrap">
{STATUS_OPTIONS.map((s) => {
const sBadge = STATUS_BADGE[s];
return (
<button
key={s}
type="button"
onClick={() => handleStatusChange(s)}
className={`text-[10px] font-mono border rounded px-2 py-0.5 transition-colors ${
s === order.status
? `${sBadge.color} bg-[rgba(117,170,252,0.1)]`
: "text-[#556677] border-[#2a3a5a] hover:text-[#7788aa]"
}`}
>
{sBadge.label}
</button>
);
})}
</div>
</div>
{/* Priority selector */}
<div className="px-4 py-3 border-b border-[rgba(117,170,252,0.1)]">
<div className="flex items-center justify-between mb-1.5">
<span className="text-[10px] font-mono text-[#9bc3ff] uppercase tracking-wide">
Priority
</span>
</div>
<div className="flex gap-1.5 flex-wrap">
{PRIORITY_OPTIONS.map((p) => (
<button
key={p.value}
type="button"
onClick={() => handlePriorityChange(p.value)}
className={`text-[10px] font-mono border rounded px-2 py-0.5 transition-colors ${
p.value === order.priority
? `${p.color} bg-[rgba(117,170,252,0.1)]`
: "text-[#556677] border-[#2a3a5a] hover:text-[#7788aa]"
}`}
>
{p.label}
</button>
))}
</div>
</div>
{/* Type selector */}
<div className="px-4 py-3 border-b border-[rgba(117,170,252,0.1)]">
<div className="flex items-center justify-between mb-1.5">
<span className="text-[10px] font-mono text-[#9bc3ff] uppercase tracking-wide">
Type
</span>
</div>
<div className="flex gap-1.5 flex-wrap">
{TYPE_OPTIONS.map((t) => (
<button
key={t.value}
type="button"
onClick={() => handleTypeChange(t.value)}
className={`text-[10px] font-mono border rounded px-2 py-0.5 transition-colors ${
t.value === order.orderType
? `${t.color} border-current bg-[rgba(117,170,252,0.1)]`
: "text-[#556677] border-[#2a3a5a] hover:text-[#7788aa]"
}`}
>
{t.label}
</button>
))}
</div>
</div>
{/* Description */}
<div className="px-4 py-3 border-b border-[rgba(117,170,252,0.1)]">
<div className="flex items-center justify-between mb-1">
<span className="text-[10px] font-mono text-[#9bc3ff] uppercase tracking-wide">
Description
</span>
{!editingDesc && (
<button
type="button"
onClick={() => {
setDescText(order.description || "");
setEditingDesc(true);
}}
className="text-[9px] font-mono text-[#556677] hover:text-[#75aafc]"
>
[edit]
</button>
)}
</div>
{editingDesc ? (
<div className="flex flex-col gap-1.5">
<textarea
value={descText}
onChange={(e) => setDescText(e.target.value)}
className="w-full bg-[#0a1628] border border-[rgba(117,170,252,0.2)] rounded px-2 py-1.5 text-[11px] font-mono text-white resize-y min-h-[80px]"
rows={4}
autoFocus
/>
<div className="flex gap-1.5">
<button
type="button"
onClick={handleDescSave}
className="text-[10px] font-mono text-emerald-400 hover:text-emerald-300 border border-emerald-800 rounded px-2 py-0.5"
>
Save
</button>
<button
type="button"
onClick={() => setEditingDesc(false)}
className="text-[10px] font-mono text-[#7788aa] hover:text-white border border-[#2a3a5a] rounded px-2 py-0.5"
>
Cancel
</button>
</div>
</div>
) : (
<p className="text-[11px] font-mono text-[#c0d0e0] whitespace-pre-wrap">
{order.description || <span className="text-[#556677] italic">No description</span>}
</p>
)}
</div>
{/* Labels */}
<div className="px-4 py-3 border-b border-[rgba(117,170,252,0.1)]">
<div className="flex items-center justify-between mb-1">
<span className="text-[10px] font-mono text-[#9bc3ff] uppercase tracking-wide">
Labels
</span>
{!editingLabels && (
<button
type="button"
onClick={() => {
setLabelsText(order.labels.join(", "));
setEditingLabels(true);
}}
className="text-[9px] font-mono text-[#556677] hover:text-[#75aafc]"
>
[edit]
</button>
)}
</div>
{editingLabels ? (
<div className="flex flex-col gap-1.5">
<input
value={labelsText}
onChange={(e) => setLabelsText(e.target.value)}
placeholder="label1, label2, ..."
className="w-full bg-[#0a1628] border border-[rgba(117,170,252,0.2)] rounded px-2 py-1.5 text-[11px] font-mono text-white"
autoFocus
/>
<div className="flex gap-1.5">
<button
type="button"
onClick={handleLabelsSave}
className="text-[10px] font-mono text-emerald-400 hover:text-emerald-300 border border-emerald-800 rounded px-2 py-0.5"
>
Save
</button>
<button
type="button"
onClick={() => setEditingLabels(false)}
className="text-[10px] font-mono text-[#7788aa] hover:text-white border border-[#2a3a5a] rounded px-2 py-0.5"
>
Cancel
</button>
</div>
</div>
) : (
<div className="flex gap-1 flex-wrap">
{order.labels.length > 0 ? (
order.labels.map((l) => (
<span
key={l}
className="text-[10px] font-mono text-[#9bc3ff] bg-[rgba(117,170,252,0.1)] border border-[rgba(117,170,252,0.2)] rounded px-1.5 py-0.5"
>
{l}
</span>
))
) : (
<span className="text-[10px] font-mono text-[#556677] italic">No labels</span>
)}
</div>
)}
</div>
{/* Actions */}
<div className="px-4 py-3 flex-1">
<span className="text-[10px] font-mono text-[#9bc3ff] uppercase tracking-wide block mb-2">
Actions
</span>
<div className="flex flex-col gap-2">
{/* Link to Directive */}
<div>
<div className="flex items-center gap-1.5">
<button
type="button"
onClick={() => {
setShowLinkDirective(!showLinkDirective);
setDirectiveSearch("");
}}
className="text-[10px] font-mono text-[#75aafc] hover:text-white border border-[rgba(117,170,252,0.3)] rounded px-2 py-1 flex-1 text-left"
>
{order.directiveId ? "Change Directive" : "Link to Directive"}
</button>
{order.directiveId && (
<button
type="button"
onClick={() => onUpdate({ directiveId: null, directiveStepId: null })}
className="text-[10px] font-mono text-red-400 hover:text-red-300 border border-red-800 rounded px-2 py-1"
title="Unlink directive"
>
Unlink
</button>
)}
</div>
{showLinkDirective && (
<div className="mt-1 border border-[rgba(117,170,252,0.2)] bg-[#0a1525] rounded">
<div className="px-2 py-1.5 border-b border-[rgba(117,170,252,0.1)]">
<input
type="text"
value={directiveSearch}
onChange={(e) => setDirectiveSearch(e.target.value)}
placeholder="Search directives..."
autoFocus
className="w-full bg-transparent border-none outline-none text-[10px] font-mono text-[#75aafc] placeholder-[#556677]"
/>
</div>
<div className="max-h-32 overflow-y-auto">
{directives.length === 0 ? (
<div className="px-3 py-2 text-[10px] font-mono text-[#556677]">
No directives available
</div>
) : (
(() => {
const filtered = directives.filter((d) =>
d.title.toLowerCase().includes(directiveSearch.toLowerCase())
);
if (filtered.length === 0) {
return (
<div className="px-3 py-2 text-[10px] font-mono text-[#556677]">
No matching directives
</div>
);
}
return filtered.map((d) => {
const isLinked = d.id === order.directiveId;
const statusColors: Record<string, string> = {
draft: "text-[#556677] border-[#2a3a5a]",
active: "text-emerald-400 border-emerald-800",
idle: "text-[#7788aa] border-[#2a3a5a]",
paused: "text-yellow-400 border-yellow-800",
archived: "text-[#556677] border-[#2a3a5a]",
};
const sColor = statusColors[d.status] || statusColors.draft;
return (
<button
key={d.id}
type="button"
onClick={() => handleLinkDirective(d.id)}
className={`w-full text-left px-3 py-1.5 text-[10px] font-mono hover:bg-[rgba(117,170,252,0.1)] border-b border-[rgba(117,170,252,0.1)] last:border-b-0 ${
isLinked ? "bg-[rgba(117,170,252,0.08)] text-white" : "text-[#9bc3ff]"
}`}
>
<div className="flex items-center gap-1.5">
<span className={`shrink-0 text-[8px] font-mono ${sColor} border rounded px-1 py-0.5 uppercase`}>
{d.status}
</span>
<span className="truncate">{d.title}</span>
{isLinked && (
<span className="shrink-0 text-[8px] text-emerald-400">●</span>
)}
</div>
{d.repositoryUrl && (
<div className="text-[8px] text-[#556677] truncate mt-0.5">
{d.repositoryUrl}
</div>
)}
</button>
);
});
})()
)}
</div>
</div>
)}
</div>
{/* Convert to Directive Step */}
{!order.directiveStepId && order.directiveId && (
<button
type="button"
onClick={() => onConvertToStep()}
className="text-[10px] font-mono text-yellow-400 hover:text-yellow-300 border border-yellow-800 rounded px-2 py-1 w-full text-left"
>
Convert to Directive Step
</button>
)}
</div>
</div>
{/* Metadata */}
<div className="px-4 py-2 border-t border-[rgba(117,170,252,0.1)]">
<div className="flex items-center justify-between text-[9px] font-mono text-[#556677]">
<span>Created {new Date(order.createdAt).toLocaleDateString()}</span>
<span>Updated {new Date(order.updatedAt).toLocaleDateString()}</span>
</div>
</div>
</div>
);
}
|