📦 EqualifyEverything / equalify-viewer

📄 Dashboard.tsx · 274 lines
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
import { useState, useEffect, useMemo } from 'react';
import {
    loadDataset,
    type Dataset,
    getIgnoredIds,
    toggleIgnoreId,
    bulkIgnoreIds
} from '../services/DataManager';
import Overview from './Overview';
import ChartSection from './ChartSection';
import TableSection from './TableSection';
import { Loader2, AlertCircle, Trash2, Plus } from 'lucide-react';

const Dashboard = () => {
    const [inputUrl, setInputUrl] = useState('');
    const [datasets, setDatasets] = useState<Dataset[]>([]);
    const [loading, setLoading] = useState(false);
    const [ignoredIds, setIgnoredIds] = useState<string[]>([]);
    const [error, setError] = useState<string | null>(null);

    // Initial Load
    useEffect(() => {
        setIgnoredIds(getIgnoredIds());
    }, []);

    const handleLoadUrl = async (url: string) => {
        setLoading(true);
        setError(null);
        try {
            const newDataset = await loadDataset(url);

            // Assign color and index
            const nextIndex = datasets.length + 1;
            const colors = [
                '#3B82F6', // Blue
                '#10B981', // Emerald
                '#8B5CF6', // Violet
                '#F97316', // Orange
                '#EC4899', // Pink
                '#06B6D4', // Cyan
            ];
            const color = colors[(nextIndex - 1) % colors.length];

            newDataset.index = nextIndex;
            newDataset.color = color;

            setDatasets(prev => [...prev, newDataset]);
            setInputUrl(''); // Clear input on success
        } catch (err: any) {
            console.error("Failed to load data", err);
            setError(err.message || "Failed to load dataset");
        } finally {
            setLoading(false);
        }
    };

    const handleLoadClick = () => {
        if (inputUrl) {
            const trimmed = inputUrl.trim();
            if (trimmed.startsWith('http')) {
                handleLoadUrl(trimmed);
            } else {
                setError("Please enter a valid URL starting with http:// or https://");
            }
        }
    };

    const handleRemoveDataset = (id: string) => {
        setDatasets(prev => prev.filter(d => d.id !== id));
    };

    // Derived State
    const allBlockers = useMemo(() => {
        return datasets.flatMap(d => d.blockers.map(b => ({
            ...b,
            datasetName: d.name,
            datasetColor: d.color,
            datasetIndex: d.index
        })));
    }, [datasets]);

    const activeData = useMemo(() => {
        return allBlockers.filter(d => !ignoredIds.includes(d.id));
    }, [allBlockers, ignoredIds]);

    const handleToggleIgnore = (id: string) => {
        const newIds = toggleIgnoreId(id);
        setIgnoredIds(newIds);
    };

    const handleBulkIgnore = (ids: string[], shouldIgnore: boolean) => {
        const newIds = bulkIgnoreIds(ids, shouldIgnore);
        setIgnoredIds(newIds);
    };

    return (
        <div className="container" style={{ paddingBottom: '4rem' }}>
            {/* Header / Selector */}
            <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', margin: '2rem 0', flexWrap: 'wrap', gap: '1rem' }}>
                <div>
                    <h1 style={{ fontSize: '1.5rem', fontWeight: 700, color: 'var(--neutral-900)' }}>Equalify Data Navigator</h1>
                    <p style={{ color: 'var(--neutral-500)', marginTop: '0.25rem' }}>Accessibility Insights Dashboard</p>
                </div>

                <div style={{ flex: 1, minWidth: '300px', maxWidth: '800px' }}>
                    <div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
                        <input
                            type="text"
                            placeholder="Enter API URL..."
                            value={inputUrl}
                            onChange={(e) => setInputUrl(e.target.value)}
                            onKeyDown={(e) => {
                                if (e.key === 'Enter') handleLoadClick();
                            }}
                            style={{
                                padding: '0.625rem',
                                borderRadius: 'var(--radius-md)',
                                border: '1px solid var(--neutral-300)',
                                flex: 1,
                                fontSize: '0.875rem',
                                outline: 'none',
                                transition: 'border-color 0.2s'
                            }}
                        />
                        <button
                            className="btn btn-primary"
                            onClick={handleLoadClick}
                            disabled={loading}
                            style={{ whiteSpace: 'nowrap', display: 'flex', alignItems: 'center', gap: '0.5rem' }}
                        >
                            {loading ? <Loader2 className="animate-spin" size={16} /> : <Plus size={16} />}
                            Add Dataset
                        </button>
                    </div>
                </div>
            </div>

            {error && (
                <div style={{
                    padding: '1rem',
                    background: '#FEF2F2',
                    border: '1px solid #FECACA',
                    borderRadius: 'var(--radius-md)',
                    color: '#B91C1C',
                    marginBottom: '2rem',
                    display: 'flex',
                    alignItems: 'flex-start',
                    gap: '0.75rem',
                    fontSize: '0.9rem'
                }}>
                    <AlertCircle size={20} style={{ marginTop: '0.1rem', flexShrink: 0 }} />
                    <div>
                        <div style={{ fontWeight: 600 }}>Data Loading Issue</div>
                        <div style={{ marginTop: '0.25rem' }}>{error}</div>
                    </div>
                </div>
            )}

            {/* Loaded Datasets List */}
            {datasets.length > 0 && (
                <div style={{ marginBottom: '2rem', display: 'flex', flexWrap: 'wrap', gap: '0.75rem' }}>
                    {datasets.map(ds => (
                        <div key={ds.id} style={{
                            display: 'flex',
                            alignItems: 'center',
                            gap: '0.75rem',
                            padding: '0.5rem 0.75rem',
                            background: 'white',
                            border: '1px solid var(--neutral-200)',
                            borderRadius: '2rem',
                            fontSize: '0.875rem',
                            boxShadow: '0 1px 2px rgba(0,0,0,0.05)',
                            borderLeft: `4px solid ${ds.color || 'var(--neutral-300)'}`
                        }}>
                            <span style={{
                                background: ds.color || 'var(--neutral-300)',
                                color: 'white',
                                borderRadius: '50%',
                                width: '20px',
                                height: '20px',
                                display: 'flex',
                                alignItems: 'center',
                                justifyContent: 'center',
                                fontSize: '0.75rem',
                                fontWeight: 600
                            }}>
                                {ds.index}
                            </span>
                            <span style={{ fontWeight: 500, color: 'var(--neutral-700)' }}>{ds.name}</span>
                            <span style={{ color: 'var(--neutral-400)', fontSize: '0.75rem' }}>({ds.blockers.length} items)</span>
                            <button
                                type="button"
                                onClick={() => handleRemoveDataset(ds.id)}
                                style={{
                                    display: 'flex',
                                    alignItems: 'center',
                                    justifyContent: 'center',
                                    color: 'var(--neutral-400)',
                                    cursor: 'pointer',
                                    padding: '0.4rem',
                                    borderRadius: '50%',
                                    transition: 'all 0.2s',
                                    background: 'var(--neutral-100)',
                                    border: 'none',
                                    marginLeft: '0.25rem'
                                }}
                                onMouseOver={(e) => {
                                    e.currentTarget.style.color = '#B91C1C';
                                    e.currentTarget.style.background = '#FEE2E2';
                                }}
                                onMouseOut={(e) => {
                                    e.currentTarget.style.color = 'var(--neutral-400)';
                                    e.currentTarget.style.background = 'var(--neutral-100)';
                                }}
                                title="Remove dataset"
                            >
                                <Trash2 size={16} />
                            </button>
                        </div>
                    ))}
                </div>
            )}

            {loading && datasets.length === 0 ? (
                <div style={{ height: '400px', display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', color: 'var(--neutral-500)' }}>
                    <Loader2 className="animate-spin" size={48} style={{ animation: 'spin 1s linear infinite' }} />
                    <p style={{ marginTop: '1rem' }}>Loading dataset...</p>
                    <style>{`@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } `}</style>
                </div>
            ) : datasets.length === 0 ? (
                <div style={{
                    height: '400px',
                    display: 'flex',
                    flexDirection: 'column',
                    alignItems: 'center',
                    justifyContent: 'center',
                    color: 'var(--neutral-500)',
                    background: 'white',
                    borderRadius: 'var(--radius-lg)',
                    border: '2px dashed var(--neutral-200)',
                    margin: '2rem 0'
                }}>
                    <h3 style={{ color: 'var(--neutral-800)', fontWeight: 600 }}>Ready to analyze?</h3>
                    <p style={{ marginTop: '0.5rem', textAlign: 'center', maxWidth: '400px' }}>
                        Enter an Equalify API URL or a direct JSON link above to get started with your accessibility audit data.
                    </p>
                </div>
            ) : (
                <>
                    <Overview
                        datasets={datasets}
                        ignoredIds={ignoredIds}
                    />

                    <ChartSection
                        aggregatedData={activeData}
                        datasets={datasets}
                    />

                    <TableSection
                        data={allBlockers}
                        ignoredIds={ignoredIds}
                        onToggleIgnore={handleToggleIgnore}
                        onBulkIgnore={handleBulkIgnore}
                    />
                </>
            )}
        </div>
    );
};

export default Dashboard;