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
|
import React, { useEffect, useState } from 'react'
import { listDirectives, DirectiveSummary } from '../../services/directiveApi'
interface DirectiveFileTreeProps {
selectedDirectiveId: string | null
onSelectDirective: (id: string) => void
onNewDirective: () => void
}
interface GroupState {
[key: string]: boolean
}
const STATUS_GROUPS = [
{ key: 'active', label: 'Active', defaultExpanded: true },
{ key: 'idle', label: 'Idle', defaultExpanded: true },
{ key: 'draft', label: 'Draft', defaultExpanded: false },
{ key: 'archived', label: 'Archived', defaultExpanded: false },
] as const
function statusColor(status: string): string {
switch (status.toLowerCase()) {
case 'active':
case 'running':
return '#4caf50'
case 'idle':
case 'paused':
return '#ffc107'
case 'draft':
case 'pending':
return '#9e9e9e'
case 'archived':
case 'failed':
return '#f44336'
default:
return '#9e9e9e'
}
}
function groupDirectives(directives: DirectiveSummary[]): Record<string, DirectiveSummary[]> {
const groups: Record<string, DirectiveSummary[]> = {
active: [],
idle: [],
draft: [],
archived: [],
}
for (const d of directives) {
const s = d.status.toLowerCase()
if (s === 'active' || s === 'running') {
groups.active.push(d)
} else if (s === 'idle' || s === 'paused') {
groups.idle.push(d)
} else if (s === 'draft' || s === 'pending') {
groups.draft.push(d)
} else {
groups.archived.push(d)
}
}
return groups
}
export function DirectiveFileTree({ selectedDirectiveId, onSelectDirective, onNewDirective }: DirectiveFileTreeProps) {
const [directives, setDirectives] = useState<DirectiveSummary[]>([])
const [loading, setLoading] = useState(true)
const [error, setError] = useState<string | null>(null)
const [expanded, setExpanded] = useState<GroupState>(() => {
const state: GroupState = {}
for (const g of STATUS_GROUPS) {
state[g.key] = g.defaultExpanded
}
return state
})
useEffect(() => {
async function load() {
try {
setLoading(true)
const data = await listDirectives()
setDirectives(data)
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to load directives')
} finally {
setLoading(false)
}
}
load()
}, [])
const toggleGroup = (key: string) => {
setExpanded(prev => ({ ...prev, [key]: !prev[key] }))
}
const grouped = groupDirectives(directives)
return (
<div className="directive-file-tree">
<div className="file-tree-header">
<span className="file-tree-title">Directives</span>
<button className="file-tree-new-btn" onClick={onNewDirective} title="New Directive">
+
</button>
</div>
{loading && <div className="file-tree-loading">Loading...</div>}
{error && <div className="file-tree-error">{error}</div>}
{!loading && !error && (
<div className="file-tree-groups">
{STATUS_GROUPS.map(group => {
const items = grouped[group.key]
if (!items || items.length === 0) return null
return (
<div key={group.key} className="file-tree-group">
<button
className="file-tree-group-header"
onClick={() => toggleGroup(group.key)}
>
<span className={`file-tree-chevron ${expanded[group.key] ? 'expanded' : ''}`}>
{'\u25B6'}
</span>
<span className="file-tree-group-label">{group.label}</span>
<span className="file-tree-group-count">{items.length}</span>
</button>
{expanded[group.key] && (
<div className="file-tree-items">
{items.map(directive => (
<button
key={directive.id}
className={`file-tree-item ${selectedDirectiveId === directive.id ? 'selected' : ''}`}
onClick={() => onSelectDirective(directive.id)}
title={directive.title}
>
<span
className="file-tree-status-dot"
style={{ backgroundColor: statusColor(directive.status) }}
/>
<span className="file-tree-doc-icon">{'\u{1F4C4}'}</span>
<span className="file-tree-item-title">{directive.title || 'Untitled'}</span>
{directive.stepCounts && (
<span className="file-tree-step-count" title="Contract steps">
{directive.stepCounts.completed}/{
directive.stepCounts.pending +
directive.stepCounts.ready +
directive.stepCounts.running +
directive.stepCounts.completed +
directive.stepCounts.failed +
directive.stepCounts.skipped
}
</span>
)}
</button>
))}
</div>
)}
</div>
)
})}
</div>
)}
</div>
)
}
|