solidstats 0.0.4 โ†’ 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,46 +1,314 @@
1
1
  <div class="solidstats-dashboard">
2
2
  <header class="dashboard-header">
3
- <h1><span class="icon">๐Ÿšฅ</span> Solidstats Dashboard</h1>
4
- <p class="dashboard-last-updated">Last updated: <%= Time.now.strftime("%B %d, %Y at %H:%M") %></p>
3
+ <div class="header-main">
4
+ <h1><span class="icon">๐Ÿšฅ</span> Solidstats Dashboard</h1>
5
+ <% created_at = @audit_output.dig("created_at") %>
6
+ <span class="audit-date">Last updated: <%= created_at ? DateTime.parse(created_at).strftime("%B %d, %Y at %H:%M") : Time.now.strftime("%B %d, %Y at %H:%M") %></span>
7
+ </div>
8
+
9
+ <nav class="dashboard-nav">
10
+ <ul>
11
+ <li><a href="#overview" class="nav-item active" data-section="overview">Overview</a></li>
12
+ <li><a href="#security" class="nav-item" data-section="security">Security</a></li>
13
+ <li><a href="#code-quality" class="nav-item" data-section="code-quality">Code Quality</a></li>
14
+ <li><a href="#tasks" class="nav-item" data-section="tasks">Tasks</a></li>
15
+ </ul>
16
+
17
+ <div class="dashboard-actions">
18
+ <a href="#" class="action-button" onclick="refreshAudit(); return false;">
19
+ <span class="action-icon">โ†ป</span> Refresh
20
+ </a>
21
+ <button class="action-button" disabled title="Export is currently disabled" style="cursor: not-allowed;">
22
+ <span class="action-icon">โ†“</span> Export
23
+ </button>
24
+ </div>
25
+ </nav>
5
26
  </header>
6
27
 
7
- <div class="stats-cards">
8
- <%= render 'solidstats/dashboard/audit/security_audit' %>
9
-
10
- <%= render partial: 'todos' %>
28
+ <!-- Overview Section with Key Metrics -->
29
+ <section id="overview" class="dashboard-section active">
30
+ <h2 class="section-title">Overview</h2>
31
+
32
+ <div class="stats-summary">
33
+ <div class="summary-card <%= @audit_output.dig('results').present? ? 'status-warning' : 'status-ok' %>" data-section="security" data-tab="security-overview">
34
+ <div class="summary-icon">๐Ÿ”’</div>
35
+ <div class="summary-data">
36
+ <div class="summary-value"><%= @audit_output.dig('results')&.size || 0 %></div>
37
+ <div class="summary-label">Security Issues</div>
38
+ </div>
39
+ </div>
40
+
41
+ <div class="summary-card <%= @todo_items&.present? ? 'status-warning' : 'status-ok' %>" data-section="tasks" data-tab="todos">
42
+ <div class="summary-icon">๐Ÿ“</div>
43
+ <div class="summary-data">
44
+ <div class="summary-value"><%= @todo_items&.count || 0 %></div>
45
+ <div class="summary-label">TODO Items</div>
46
+ </div>
47
+ </div>
48
+
49
+ <div class="summary-card <%= @coverage.to_f > 80 ? 'status-ok' : (@coverage.to_f > 60 ? 'status-warning' : 'status-danger') %>" data-section="code-quality" data-tab="test-coverage">
50
+ <div class="summary-icon">๐Ÿงช</div>
51
+ <div class="summary-data">
52
+ <div class="summary-value"><%= @coverage %>%</div>
53
+ <div class="summary-label">Test Coverage</div>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </section>
11
58
 
12
- <div class="stat-card">
13
- <h2><span class="icon">๐Ÿงน</span> Code Quality</h2>
14
- <div class="card-content">
15
- <div class="metric">
16
- <!-- Your code quality metrics -->
59
+ <!-- Security Section -->
60
+ <section id="security" class="dashboard-section">
61
+ <h2 class="section-title">Security</h2>
62
+
63
+ <div class="security-overview">
64
+ <% results = @audit_output.dig("results") || [] %>
65
+ <% vulnerabilities_count = results.size %>
66
+ <% high_severity = results.count { |r| %w[high critical].include?(r.dig("advisory", "criticality").to_s.downcase) } %>
67
+ <% affected_gems = results.map { |r| r.dig("gem", "name") }.uniq.size %>
68
+
69
+ <div class="security-score-container">
70
+ <div class="security-score <%= vulnerabilities_count == 0 ? 'score-excellent' : (high_severity > 0 ? 'score-critical' : 'score-warning') %>">
71
+ <div class="score-value"><%= vulnerabilities_count == 0 ? 'A+' : (high_severity > 0 ? 'C' : 'B') %></div>
72
+ <div class="score-label">Security<br>Rating</div>
73
+ </div>
74
+
75
+ <div class="security-metrics">
76
+ <div class="metric-item <%= high_severity > 0 ? 'metric-critical' : '' %>">
77
+ <div class="metric-icon">โš ๏ธ</div>
78
+ <div class="metric-data">
79
+ <div class="metric-value"><%= high_severity %></div>
80
+ <div class="metric-label">Critical Issues</div>
81
+ </div>
82
+ </div>
83
+
84
+ <div class="metric-item <%= vulnerabilities_count > 0 ? 'metric-warning' : '' %>">
85
+ <div class="metric-icon">๐Ÿ”</div>
86
+ <div class="metric-data">
87
+ <div class="metric-value"><%= vulnerabilities_count %></div>
88
+ <div class="metric-label">Total Vulnerabilities</div>
89
+ </div>
90
+ </div>
91
+
92
+ <div class="metric-item <%= affected_gems > 0 ? 'metric-warning' : '' %>">
93
+ <div class="metric-icon">๐Ÿ’Ž</div>
94
+ <div class="metric-data">
95
+ <div class="metric-value"><%= affected_gems %></div>
96
+ <div class="metric-label">Affected Gems</div>
97
+ </div>
98
+ </div>
17
99
  </div>
18
100
  </div>
19
101
  </div>
102
+
103
+ <div class="tabs-container">
104
+ <div class="tabs-header security-tabs">
105
+ <button class="tab-button active" data-tab="security-overview">
106
+ <span class="tab-icon">๐Ÿ“Š</span> Overview
107
+ </button>
108
+ <button class="tab-button" data-tab="security-gems">
109
+ <span class="tab-icon">๐Ÿ’Ž</span> Affected Gems
110
+ </button>
111
+ <button class="tab-button" data-tab="security-timeline">
112
+ <span class="tab-icon">๐Ÿ“ˆ</span> Timeline
113
+ </button>
114
+ </div>
115
+
116
+ <div class="tabs-content">
117
+ <div class="tab-content active" id="security-overview">
118
+ <%= render partial: 'solidstats/dashboard/audit/security_audit', locals: { results: results } %>
119
+ </div>
120
+ <div class="tab-content" id="security-gems">
121
+ <div class="gem-impact-analysis">
122
+ <h3>Gem Impact Analysis</h3>
123
+ <% results = @audit_output.dig("results") || [] %>
124
+ <% if results.any? %>
125
+ <div class="gems-container">
126
+ <% results.map { |r| r.dig("gem", "name") }.uniq.each do |gem_name| %>
127
+ <% gem_vulns = results.select { |r| r.dig("gem", "name") == gem_name } %>
128
+ <% highest_severity = gem_vulns.map { |v| v.dig("advisory", "criticality").to_s.downcase }.select { |c| %w[critical high medium low].include?(c) }.min_by { |s| %w[critical high medium low].index(s) || 999 } || "unknown" %>
129
+
130
+ <div class="gem-card severity-<%= highest_severity %>">
131
+ <div class="gem-header">
132
+ <div class="gem-name"><%= gem_name %></div>
133
+ <div class="gem-severity <%= highest_severity %>"><%= highest_severity.capitalize %></div>
134
+ </div>
135
+ <div class="gem-details">
136
+ <div class="gem-versions">
137
+ <div class="current-version">
138
+ <span class="version-label">Current:</span>
139
+ <span class="version-value"><%= gem_vulns.first.dig("gem", "version") rescue "Unknown" %></span>
140
+ </div>
141
+ <div class="target-version">
142
+ <span class="version-label">Target:</span>
143
+ <span class="version-value"><%= gem_vulns.first.dig("advisory", "patched_versions")&.first || "N/A" %></span>
144
+ </div>
145
+ </div>
146
+ <div class="gem-vulnerabilities-count">
147
+ <%= gem_vulns.size %> <%= "vulnerability".pluralize(gem_vulns.size) %> found
148
+ </div>
149
+ </div>
150
+ <div class="gem-actions">
151
+ <button class="action-button gem-update-button">
152
+ <span class="action-icon">โ†‘</span> Update Gem
153
+ </button>
154
+ </div>
155
+ </div>
156
+ <% end %>
157
+ </div>
158
+ <% else %>
159
+ <div class="empty-state">
160
+ <div class="empty-icon">โœ…</div>
161
+ <div class="empty-message">No vulnerable gems found</div>
162
+ <div class="empty-description">Your application is secure. Keep up with regular security audits!</div>
163
+ </div>
164
+ <% end %>
165
+ </div>
166
+ </div>
167
+ <div class="tab-content" id="security-timeline">
168
+ <div class="security-timeline-container">
169
+ <h3>Security Timeline</h3>
170
+ <div class="timeline-chart-placeholder">
171
+ <div class="chart-header">
172
+ <div class="chart-title">Vulnerability History</div>
173
+ <div class="chart-legend">
174
+ <div class="legend-item">
175
+ <span class="legend-color" style="background-color: #dc3545;"></span>
176
+ <span class="legend-label">Critical</span>
177
+ </div>
178
+ <div class="legend-item">
179
+ <span class="legend-color" style="background-color: #ffc107;"></span>
180
+ <span class="legend-label">Medium</span>
181
+ </div>
182
+ <div class="legend-item">
183
+ <span class="legend-color" style="background-color: #28a745;"></span>
184
+ <span class="legend-label">Low</span>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ <div class="chart-visualization">
189
+ <!-- Placeholder for the actual chart -->
190
+ <div class="chart-timeline">
191
+ <div class="timeline-point" style="left: 10%;">
192
+ <div class="timeline-marker critical"></div>
193
+ <div class="timeline-date">Jan 2025</div>
194
+ </div>
195
+ <div class="timeline-point" style="left: 30%;">
196
+ <div class="timeline-marker medium"></div>
197
+ <div class="timeline-date">Feb 2025</div>
198
+ </div>
199
+ <div class="timeline-point" style="left: 65%;">
200
+ <div class="timeline-marker low"></div>
201
+ <div class="timeline-date">Apr 2025</div>
202
+ </div>
203
+ <div class="timeline-point" style="left: 85%;">
204
+ <div class="timeline-marker critical"></div>
205
+ <div class="timeline-date">May 2025</div>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ <div class="timeline-insights">
211
+ <div class="insight-card">
212
+ <div class="insight-header">Key Insights</div>
213
+ <div class="insight-content">
214
+ <div class="insight-item">
215
+ <div class="insight-title">Notable Trend</div>
216
+ <div class="insight-description">4 vulnerabilities discovered in the last 3 months.</div>
217
+ </div>
218
+ <div class="insight-item">
219
+ <div class="insight-title">Recent Activity</div>
220
+ <div class="insight-description">Last security scan: <%= Time.now.strftime("%B %d, %Y") %></div>
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </section>
20
230
 
21
- <div class="stat-card">
22
- <h2><span class="icon">๐Ÿ“</span> Code Health</h2>
23
- <div class="card-content">
24
- <!-- Your code health metrics -->
231
+ <!-- Code Quality Section -->
232
+ <section id="code-quality" class="dashboard-section">
233
+ <h2 class="section-title">Code Quality</h2>
234
+
235
+ <div class="tabs-container">
236
+ <div class="tabs-header">
237
+ <button class="tab-button active" data-tab="quality-metrics">Metrics</button>
238
+ <button class="tab-button" data-tab="test-coverage">Test Coverage</button>
239
+ <button class="tab-button" data-tab="code-health">Code Health</button>
240
+ </div>
241
+
242
+ <div class="tabs-content">
243
+ <div class="tab-content active" id="quality-metrics">
244
+ <div class="stat-card">
245
+ <h2><span class="icon">๐Ÿงน</span> Code Quality</h2>
246
+ <div class="card-content">
247
+ <div class="metric">
248
+ <!-- Your code quality metrics -->
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ <div class="tab-content" id="test-coverage">
254
+ <div class="stat-card <%= @coverage.to_f > 80 ? 'status-ok' : (@coverage.to_f > 60 ? 'status-warning' : 'status-danger') %>">
255
+ <h2><span class="icon">๐Ÿงช</span> Test Coverage</h2>
256
+ <div class="card-content">
257
+ <div class="progress-container">
258
+ <div class="progress-bar" style="width: <%= @coverage %>%"></div>
259
+ </div>
260
+ <div class="metric">
261
+ <span class="metric-value"><%= @coverage %>%</span>
262
+ </div>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ <div class="tab-content" id="code-health">
267
+ <div class="stat-card">
268
+ <h2><span class="icon">๐Ÿ“</span> Code Health</h2>
269
+ <div class="card-content">
270
+ <!-- Your code health metrics -->
271
+ </div>
272
+ </div>
273
+ </div>
25
274
  </div>
26
275
  </div>
276
+ </section>
27
277
 
28
- <div class="stat-card <%= @coverage.to_f > 80 ? 'status-ok' : (@coverage.to_f > 60 ? 'status-warning' : 'status-danger') %>">
29
- <h2><span class="icon">๐Ÿงช</span> Test Coverage</h2>
30
- <div class="card-content">
31
- <div class="progress-container">
32
- <div class="progress-bar" style="width: <%= @coverage %>%"></div>
278
+ <!-- Tasks Section -->
279
+ <section id="tasks" class="dashboard-section">
280
+ <h2 class="section-title">Tasks</h2>
281
+
282
+ <div class="tabs-container">
283
+ <div class="tabs-header">
284
+ <button class="tab-button active" data-tab="todos">TODO Items</button>
285
+ <button class="tab-button" data-tab="fixmes">FIXMEs</button>
286
+ <button class="tab-button" data-tab="hacks">HACKs</button>
287
+ </div>
288
+
289
+ <div class="tabs-content">
290
+ <div class="tab-content active" id="todos">
291
+ <%= render partial: 'todos' %>
292
+ </div>
293
+ <div class="tab-content" id="fixmes">
294
+ <!-- FIXME specific content -->
33
295
  </div>
34
- <div class="metric">
35
- <span class="metric-value"><%= @coverage %>%</span>
296
+ <div class="tab-content" id="hacks">
297
+ <!-- HACK specific content -->
36
298
  </div>
37
299
  </div>
38
300
  </div>
39
- </div>
301
+ </section>
40
302
 
41
- <div class="dashboard-actions">
42
- <a href="#" class="action-button" onclick="refreshAudit(); return false;">Refresh Security Audit</a>
43
- <a href="#" class="action-button" onclick="exportReport(); return false;">Export Report</a>
303
+ <!-- Floating quick navigation -->
304
+ <div class="quick-nav">
305
+ <button class="quick-nav-toggle">โ†‘</button>
306
+ <div class="quick-nav-menu">
307
+ <a href="#overview" class="quick-nav-item">Overview</a>
308
+ <a href="#security" class="quick-nav-item">Security</a>
309
+ <a href="#code-quality" class="quick-nav-item">Code Quality</a>
310
+ <a href="#tasks" class="quick-nav-item">Tasks</a>
311
+ </div>
44
312
  </div>
45
313
  </div>
46
314
 
@@ -54,15 +322,28 @@
54
322
  padding: 20px;
55
323
  }
56
324
 
57
- /* Header styles */
325
+ /* Header and Navigation styles */
58
326
  .dashboard-header {
59
327
  margin-bottom: 2rem;
328
+ position: sticky;
329
+ top: 0;
330
+ z-index: 100;
331
+ background-color: #fff;
332
+ padding: 15px 0;
333
+ border-bottom: 1px solid #eaeaea;
334
+ }
335
+
336
+ .header-main {
337
+ display: flex;
338
+ justify-content: space-between;
339
+ align-items: baseline;
340
+ margin-bottom: 1rem;
60
341
  }
61
342
 
62
343
  .dashboard-header h1 {
63
344
  font-size: 1.8rem;
64
345
  font-weight: 600;
65
- margin: 0 0 0.5rem 0;
346
+ margin: 0;
66
347
  }
67
348
 
68
349
  .dashboard-last-updated {
@@ -71,7 +352,150 @@
71
352
  font-size: 0.9rem;
72
353
  }
73
354
 
74
- /* Card grid layout */
355
+ .dashboard-nav {
356
+ display: flex;
357
+ justify-content: space-between;
358
+ align-items: center;
359
+ }
360
+
361
+ .dashboard-nav ul {
362
+ display: flex;
363
+ list-style-type: none;
364
+ margin: 0;
365
+ padding: 0;
366
+ gap: 1rem;
367
+ }
368
+
369
+ .nav-item {
370
+ padding: 0.5rem 1rem;
371
+ text-decoration: none;
372
+ color: #555;
373
+ border-radius: 4px;
374
+ font-weight: 500;
375
+ transition: all 0.2s;
376
+ }
377
+
378
+ .nav-item:hover {
379
+ background-color: #f5f5f5;
380
+ color: #000;
381
+ }
382
+
383
+ .nav-item.active {
384
+ background-color: #e9f5ff;
385
+ color: #0366d6;
386
+ }
387
+
388
+ /* Section styling */
389
+ .dashboard-section {
390
+ margin-bottom: 3rem;
391
+ display: none;
392
+ }
393
+
394
+ .dashboard-section.active {
395
+ display: block;
396
+ }
397
+
398
+ .section-title {
399
+ font-size: 1.5rem;
400
+ margin-bottom: 1.5rem;
401
+ padding-bottom: 0.5rem;
402
+ border-bottom: 1px solid #eee;
403
+ }
404
+
405
+ /* Overview summary cards */
406
+ .stats-summary {
407
+ display: grid;
408
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
409
+ gap: 1rem;
410
+ margin-bottom: 2rem;
411
+ }
412
+
413
+ .summary-card {
414
+ display: flex;
415
+ align-items: center;
416
+ padding: 1.5rem;
417
+ background: #fff;
418
+ border-radius: 8px;
419
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
420
+ transition: transform 0.2s;
421
+ cursor: pointer;
422
+ }
423
+
424
+ .summary-card:hover {
425
+ transform: translateY(-2px);
426
+ }
427
+
428
+ .summary-icon {
429
+ font-size: 2rem;
430
+ margin-right: 1rem;
431
+ }
432
+
433
+ .summary-data {
434
+ flex-grow: 1;
435
+ }
436
+
437
+ .summary-value {
438
+ font-size: 1.8rem;
439
+ font-weight: 700;
440
+ line-height: 1;
441
+ margin-bottom: 0.25rem;
442
+ }
443
+
444
+ .summary-label {
445
+ color: #666;
446
+ font-size: 0.9rem;
447
+ }
448
+
449
+ /* Tabs container */
450
+ .tabs-container {
451
+ background: #fff;
452
+ border-radius: 8px;
453
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
454
+ overflow: hidden;
455
+ }
456
+
457
+ .tabs-header {
458
+ display: flex;
459
+ background-color: #f8f9fa;
460
+ border-bottom: 1px solid #dee2e6;
461
+ overflow-x: auto;
462
+ }
463
+
464
+ .tab-button {
465
+ padding: 0.75rem 1.25rem;
466
+ background: none;
467
+ border: none;
468
+ font-size: 0.9rem;
469
+ font-weight: 500;
470
+ color: #555;
471
+ cursor: pointer;
472
+ white-space: nowrap;
473
+ }
474
+
475
+ .tab-button:hover {
476
+ color: #000;
477
+ background-color: #f1f1f1;
478
+ }
479
+
480
+ .tab-button.active {
481
+ color: #0366d6;
482
+ border-bottom: 2px solid #0366d6;
483
+ background-color: white;
484
+ }
485
+
486
+ .tabs-content {
487
+ padding: 1.5rem;
488
+ }
489
+
490
+ .tab-content {
491
+ display: none;
492
+ }
493
+
494
+ .tab-content.active {
495
+ display: block;
496
+ }
497
+
498
+ /* Card grid layout - modified for tabs */
75
499
  .stats-cards {
76
500
  display: grid;
77
501
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
@@ -79,23 +503,97 @@
79
503
  margin-bottom: 2rem;
80
504
  }
81
505
 
506
+ /* Quick navigation floating button */
507
+ .quick-nav {
508
+ position: fixed;
509
+ bottom: 2rem;
510
+ right: 2rem;
511
+ z-index: 99;
512
+ }
513
+
514
+ .quick-nav-toggle {
515
+ width: 50px;
516
+ height: 50px;
517
+ border-radius: 50%;
518
+ background-color: #0366d6;
519
+ color: white;
520
+ border: none;
521
+ font-size: 1.5rem;
522
+ cursor: pointer;
523
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
524
+ transition: all 0.3s;
525
+ }
526
+
527
+ .quick-nav-toggle:hover {
528
+ transform: scale(1.05);
529
+ }
530
+
531
+ .quick-nav-menu {
532
+ position: absolute;
533
+ bottom: 60px;
534
+ right: 0;
535
+ background-color: white;
536
+ border-radius: 8px;
537
+ width: 150px;
538
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
539
+ display: none;
540
+ flex-direction: column;
541
+ }
542
+
543
+ .quick-nav-item {
544
+ padding: 0.75rem 1rem;
545
+ text-decoration: none;
546
+ color: #333;
547
+ transition: background-color 0.2s;
548
+ }
549
+
550
+ .quick-nav-item:hover {
551
+ background-color: #f5f5f5;
552
+ }
553
+
554
+ .quick-nav:hover .quick-nav-menu {
555
+ display: flex;
556
+ }
557
+
558
+ /* Action buttons */
559
+ .dashboard-actions {
560
+ display: flex;
561
+ gap: 0.5rem;
562
+ }
563
+
564
+ .action-button {
565
+ display: inline-flex;
566
+ align-items: center;
567
+ padding: 0.5rem 1rem;
568
+ background-color: #f8f9fa;
569
+ border: 1px solid #dee2e6;
570
+ color: #333;
571
+ text-decoration: none;
572
+ border-radius: 4px;
573
+ font-size: 0.9rem;
574
+ cursor: pointer;
575
+ transition: all 0.2s;
576
+ }
577
+
578
+ .action-button:hover {
579
+ background-color: #e9ecef;
580
+ }
581
+
582
+ .action-icon {
583
+ margin-right: 0.25rem;
584
+ }
585
+
82
586
  /* Fix for audit card to span full width when details are shown */
83
587
  .audit-card {
84
588
  position: relative;
85
589
  transition: all 0.3s ease;
86
590
  }
87
591
 
88
- .audit-card.expanded {
89
- grid-column: 1 / -1;
90
- width: 100%;
91
- }
92
-
93
- /* Card styles */
592
+ /* Card styles - simplified for tabs */
94
593
  .stat-card {
95
- background: #fff;
96
- border-radius: 8px;
97
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
98
- padding: 1.5rem;
594
+ background: transparent;
595
+ padding: 0;
596
+ box-shadow: none;
99
597
  overflow: visible;
100
598
  }
101
599
 
@@ -108,82 +606,431 @@
108
606
  gap: 0.5rem;
109
607
  }
110
608
 
111
- .stat-card .icon {
112
- font-size: 1.4rem;
609
+ /* Security section specific styles */
610
+ .security-overview {
611
+ margin-bottom: 1.5rem;
612
+ background-color: #fff;
613
+ border-radius: 8px;
614
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
615
+ padding: 1.5rem;
113
616
  }
114
617
 
115
- /* Metrics styling */
116
- .metric {
618
+ .security-score-container {
117
619
  display: flex;
118
- justify-content: space-between;
119
620
  align-items: center;
120
- margin-bottom: 0.75rem;
621
+ gap: 2rem;
622
+ }
623
+
624
+ .security-score {
625
+ width: 120px;
626
+ height: 120px;
627
+ border-radius: 50%;
628
+ display: flex;
629
+ flex-direction: column;
630
+ align-items: center;
631
+ justify-content: center;
632
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
633
+ }
634
+
635
+ .score-value {
636
+ font-size: 3rem;
637
+ font-weight: 700;
638
+ line-height: 1;
639
+ }
640
+
641
+ .score-label {
642
+ font-size: 0.85rem;
643
+ text-align: center;
644
+ margin-top: 0.25rem;
645
+ }
646
+
647
+ .score-excellent {
648
+ background-color: #e9f7ef;
649
+ color: #27ae60;
650
+ border: 3px solid #27ae60;
651
+ }
652
+
653
+ .score-warning {
654
+ background-color: #fcf3cf;
655
+ color: #f39c12;
656
+ border: 3px solid #f39c12;
657
+ }
658
+
659
+ .score-critical {
660
+ background-color: #fdedeb;
661
+ color: #e74c3c;
662
+ border: 3px solid #e74c3c;
663
+ }
664
+
665
+ .security-metrics {
666
+ display: flex;
667
+ flex-grow: 1;
668
+ gap: 2rem;
669
+ }
670
+
671
+ .metric-item {
672
+ flex: 1;
673
+ display: flex;
674
+ align-items: center;
675
+ gap: 1rem;
676
+ padding: 1rem;
677
+ background-color: #f9fafb;
678
+ border-radius: 8px;
679
+ transition: transform 0.2s;
680
+ }
681
+
682
+ .metric-item:hover {
683
+ transform: translateY(-2px);
684
+ }
685
+
686
+ .metric-critical {
687
+ border-left: 4px solid #e74c3c;
688
+ }
689
+
690
+ .metric-warning {
691
+ border-left: 4px solid #f39c12;
692
+ }
693
+
694
+ .metric-icon {
695
+ font-size: 1.8rem;
696
+ opacity: 0.8;
697
+ }
698
+
699
+ .metric-data {
700
+ flex-grow: 1;
701
+ }
702
+
703
+ .metric-value {
704
+ font-size: 1.8rem;
705
+ font-weight: 700;
706
+ line-height: 1;
121
707
  }
122
708
 
123
709
  .metric-label {
710
+ font-size: 0.85rem;
124
711
  color: #666;
125
- font-size: 0.9rem;
712
+ margin-top: 0.25rem;
126
713
  }
127
714
 
128
- .metric-value {
715
+ .security-tabs .tab-button {
716
+ position: relative;
717
+ }
718
+
719
+ .security-tabs .tab-button .tab-icon {
720
+ margin-right: 0.5rem;
721
+ }
722
+
723
+ .gem-impact-analysis {
724
+ padding: 1rem 0;
725
+ }
726
+
727
+ .gems-container {
728
+ display: grid;
729
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
730
+ gap: 1rem;
731
+ margin-top: 1.5rem;
732
+ }
733
+
734
+ .gem-card {
735
+ background-color: #fff;
736
+ border-radius: 8px;
737
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
738
+ overflow: hidden;
739
+ transition: transform 0.2s;
740
+ }
741
+
742
+ .gem-card:hover {
743
+ transform: translateY(-2px);
744
+ }
745
+
746
+ .gem-card.severity-critical {
747
+ border-top: 4px solid #e74c3c;
748
+ }
749
+
750
+ .gem-card.severity-high {
751
+ border-top: 4px solid #fd7e14;
752
+ }
753
+
754
+ .gem-card.severity-medium {
755
+ border-top: 4px solid #f39c12;
756
+ }
757
+
758
+ .gem-card.severity-low {
759
+ border-top: 4px solid #27ae60;
760
+ }
761
+
762
+ .gem-header {
763
+ padding: 1rem;
764
+ display: flex;
765
+ justify-content: space-between;
766
+ align-items: center;
767
+ border-bottom: 1px solid #eeeeee;
768
+ }
769
+
770
+ .gem-name {
129
771
  font-weight: 600;
130
- font-size: 1.1rem;
772
+ color: #333;
131
773
  }
132
774
 
133
- /* Status badges */
134
- .status-badge {
135
- display: inline-block;
136
- padding: 0.35rem 0.75rem;
137
- border-radius: 20px;
775
+ .gem-severity {
138
776
  font-size: 0.85rem;
139
- font-weight: 500;
140
- margin-bottom: 1rem;
777
+ padding: 0.2rem 0.75rem;
778
+ border-radius: 12px;
141
779
  }
142
780
 
143
- .status-badge.success {
144
- background-color: #d4edda;
145
- color: #155724;
781
+ .gem-severity.critical {
782
+ background-color: rgba(231, 76, 60, 0.15);
783
+ color: #e74c3c;
146
784
  }
147
785
 
148
- .status-badge.warning {
149
- background-color: #fff3cd;
150
- color: #856404;
786
+ .gem-severity.high {
787
+ background-color: rgba(253, 126, 20, 0.15);
788
+ color: #fd7e14;
151
789
  }
152
790
 
153
- .status-badge.danger {
154
- background-color: #f8d7da;
155
- color: #721c24;
791
+ .gem-severity.medium {
792
+ background-color: rgba(243, 156, 18, 0.15);
793
+ color: #f39c12;
156
794
  }
157
795
 
158
- /* Progress bar */
159
- .progress-container {
160
- width: 100%;
161
- height: 8px;
162
- background-color: #e9ecef;
163
- border-radius: 4px;
164
- overflow: hidden;
796
+ .gem-severity.low {
797
+ background-color: rgba(39, 174, 96, 0.15);
798
+ color: #27ae60;
799
+ }
800
+
801
+ .gem-severity.unknown {
802
+ background-color: rgba(173, 181, 189, 0.15);
803
+ color: #6c757d;
804
+ }
805
+
806
+ .gem-details {
807
+ padding: 1rem;
808
+ background-color: #f9fafb;
809
+ }
810
+
811
+ .gem-versions {
812
+ display: flex;
813
+ justify-content: space-between;
165
814
  margin-bottom: 0.75rem;
815
+ font-size: 0.9rem;
166
816
  }
167
817
 
168
- .progress-bar {
169
- height: 100%;
170
- background-color: #28a745;
818
+ .version-label {
819
+ color: #666;
820
+ }
821
+
822
+ .version-value {
823
+ font-family: monospace;
824
+ }
825
+
826
+ .gem-vulnerabilities-count {
827
+ font-size: 0.85rem;
828
+ color: #666;
829
+ }
830
+
831
+ .gem-actions {
832
+ padding: 1rem;
833
+ display: flex;
834
+ justify-content: center;
835
+ }
836
+
837
+ .empty-state {
838
+ text-align: center;
839
+ padding: 3rem 1rem;
840
+ }
841
+
842
+ .empty-icon {
843
+ font-size: 3rem;
844
+ margin-bottom: 1rem;
845
+ color: #27ae60;
846
+ }
847
+
848
+ .empty-message {
849
+ font-size: 1.2rem;
850
+ font-weight: 600;
851
+ margin-bottom: 0.5rem;
852
+ }
853
+
854
+ .empty-description {
855
+ color: #666;
856
+ }
857
+
858
+ .security-timeline-container {
859
+ padding: 1rem 0;
860
+ }
861
+
862
+ .timeline-chart-placeholder {
863
+ background-color: #fff;
864
+ border-radius: 8px;
865
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
866
+ padding: 1.5rem;
867
+ margin-top: 1.5rem;
868
+ }
869
+
870
+ .chart-header {
871
+ display: flex;
872
+ justify-content: space-between;
873
+ align-items: center;
874
+ margin-bottom: 1.5rem;
875
+ }
876
+
877
+ .chart-title {
878
+ font-weight: 600;
879
+ font-size: 1.1rem;
880
+ }
881
+
882
+ .chart-legend {
883
+ display: flex;
884
+ gap: 1rem;
885
+ }
886
+
887
+ .legend-item {
888
+ display: flex;
889
+ align-items: center;
890
+ gap: 0.5rem;
891
+ font-size: 0.85rem;
892
+ }
893
+
894
+ .legend-color {
895
+ width: 12px;
896
+ height: 12px;
897
+ border-radius: 2px;
898
+ }
899
+
900
+ .chart-visualization {
901
+ height: 200px;
902
+ position: relative;
903
+ margin-bottom: 1.5rem;
904
+ }
905
+
906
+ .chart-timeline {
907
+ height: 80px;
908
+ background-color: #f8f9fa;
171
909
  border-radius: 4px;
910
+ position: relative;
911
+ margin-top: 40px;
172
912
  }
173
913
 
174
- /* Status contextual colors */
175
- .status-ok .progress-bar {
176
- background-color: #28a745;
914
+ .timeline-point {
915
+ position: absolute;
916
+ bottom: 0;
917
+ transform: translateX(-50%);
177
918
  }
178
919
 
179
- .status-warning .progress-bar {
180
- background-color: #ffc107;
920
+ .timeline-marker {
921
+ width: 12px;
922
+ height: 12px;
923
+ border-radius: 50%;
924
+ position: relative;
181
925
  }
182
926
 
183
- .status-danger .progress-bar {
927
+ .timeline-marker::before {
928
+ content: '';
929
+ position: absolute;
930
+ bottom: 100%;
931
+ left: 50%;
932
+ transform: translateX(-50%);
933
+ width: 1px;
934
+ height: 30px;
935
+ background-color: rgba(0,0,0,0.1);
936
+ }
937
+
938
+ .timeline-marker.critical {
184
939
  background-color: #dc3545;
185
940
  }
186
941
 
942
+ .timeline-marker.medium {
943
+ background-color: #ffc107;
944
+ }
945
+
946
+ .timeline-marker.low {
947
+ background-color: #28a745;
948
+ }
949
+
950
+ .timeline-date {
951
+ position: absolute;
952
+ bottom: 100%;
953
+ left: 50%;
954
+ transform: translateX(-50%);
955
+ white-space: nowrap;
956
+ font-size: 0.85rem;
957
+ color: #666;
958
+ margin-bottom: 0.5rem;
959
+ }
960
+
961
+ .timeline-insights {
962
+ margin-top: 1.5rem;
963
+ }
964
+
965
+ .insight-card {
966
+ background-color: #fff;
967
+ border-radius: 8px;
968
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
969
+ overflow: hidden;
970
+ }
971
+
972
+ .insight-header {
973
+ background-color: #f8f9fa;
974
+ padding: 1rem;
975
+ font-weight: 600;
976
+ border-bottom: 1px solid #eeeeee;
977
+ }
978
+
979
+ .insight-content {
980
+ padding: 1rem;
981
+ }
982
+
983
+ .insight-item {
984
+ margin-bottom: 1rem;
985
+ }
986
+
987
+ .insight-item:last-child {
988
+ margin-bottom: 0;
989
+ }
990
+
991
+ .insight-title {
992
+ font-weight: 600;
993
+ font-size: 0.95rem;
994
+ margin-bottom: 0.5rem;
995
+ }
996
+
997
+ .insight-description {
998
+ color: #555;
999
+ font-size: 0.9rem;
1000
+ }
1001
+
1002
+ /* Responsive adjustments */
1003
+ @media (max-width: 768px) {
1004
+ .dashboard-nav {
1005
+ flex-direction: column;
1006
+ gap: 1rem;
1007
+ }
1008
+
1009
+ .dashboard-nav ul {
1010
+ width: 100%;
1011
+ overflow-x: auto;
1012
+ padding-bottom: 0.5rem;
1013
+ }
1014
+
1015
+ .dashboard-actions {
1016
+ width: 100%;
1017
+ }
1018
+
1019
+ .action-button {
1020
+ flex: 1;
1021
+ justify-content: center;
1022
+ }
1023
+
1024
+ .tabs-header {
1025
+ padding: 0;
1026
+ }
1027
+
1028
+ .tab-button {
1029
+ padding: 0.75rem 1rem;
1030
+ }
1031
+ }
1032
+
1033
+ /* Keep compatibility with existing styles */
187
1034
  /* Details panel styling */
188
1035
  .details-panel {
189
1036
  background: #f9f9f9;
@@ -215,102 +1062,96 @@
215
1062
  text-decoration: underline;
216
1063
  }
217
1064
 
218
- /* Table styling for vulnerability list */
219
- .vulnerabilities-table {
220
- overflow-x: auto;
221
- margin-top: 1rem;
222
- }
223
-
224
- .table {
225
- width: 100%;
226
- border-collapse: collapse;
227
- font-size: 0.9rem;
1065
+ /* Status colors */
1066
+ .status-ok {
1067
+ border-left: 4px solid #28a745;
228
1068
  }
229
1069
 
230
- .table th {
231
- text-align: left;
232
- padding: 0.75rem;
233
- background-color: #f8f9fa;
234
- border-bottom: 2px solid #dee2e6;
1070
+ .status-warning {
1071
+ border-left: 4px solid #ffc107;
235
1072
  }
236
1073
 
237
- .table td {
238
- padding: 0.75rem;
239
- border-bottom: 1px solid #dee2e6;
240
- vertical-align: middle;
1074
+ .status-danger {
1075
+ border-left: 4px solid #dc3545;
241
1076
  }
242
1077
 
243
- /* Severity indicators */
244
- .severity {
245
- display: inline-block;
246
- padding: 0.25rem 0.5rem;
1078
+ /* Toast notifications styling */
1079
+ .toast-notification {
1080
+ position: fixed;
1081
+ bottom: 20px;
1082
+ left: 50%;
1083
+ transform: translateX(-50%) translateY(100%);
1084
+ background-color: white;
1085
+ box-shadow: 0 4px 12px rgba(0,0,0,0.15);
247
1086
  border-radius: 4px;
248
- font-size: 0.8rem;
249
- font-weight: 500;
250
- }
251
-
252
- .severity.high, .severity.critical {
253
- background-color: #f8d7da;
254
- color: #721c24;
255
- }
256
-
257
- .severity.medium {
258
- background-color: #fff3cd;
259
- color: #856404;
260
- }
261
-
262
- .severity.low {
263
- background-color: #d1ecf1;
264
- color: #0c5460;
1087
+ padding: 0.75rem 1.5rem;
1088
+ font-size: 0.9rem;
1089
+ z-index: 1000;
1090
+ transition: transform 0.3s ease;
1091
+ opacity: 0;
265
1092
  }
266
1093
 
267
- .severity.unknown {
268
- background-color: #e9ecef;
269
- color: #495057;
1094
+ .toast-notification.visible {
1095
+ transform: translateX(-50%) translateY(0);
1096
+ opacity: 1;
270
1097
  }
271
1098
 
272
- /* Dashboard actions */
273
- .dashboard-actions {
274
- display: flex;
275
- gap: 1rem;
276
- margin-top: 2rem;
1099
+ .toast-notification.success {
1100
+ border-left: 4px solid #28a745;
277
1101
  }
278
1102
 
279
- .action-button {
280
- display: inline-block;
281
- padding: 0.5rem 1rem;
282
- background-color: #007bff;
283
- color: white;
284
- text-decoration: none;
285
- border-radius: 4px;
286
- font-size: 0.9rem;
287
- cursor: pointer;
288
- transition: background-color 0.2s;
1103
+ .toast-notification.info {
1104
+ border-left: 4px solid #17a2b8;
289
1105
  }
290
1106
 
291
- .action-button:hover {
292
- background-color: #0069d9;
1107
+ .toast-notification.warning {
1108
+ border-left: 4px solid #ffc107;
293
1109
  }
294
1110
 
295
- /* Responsive adjustments */
296
- @media (max-width: 768px) {
297
- .stats-cards {
298
- grid-template-columns: 1fr;
299
- }
300
-
301
- .dashboard-actions {
302
- flex-direction: column;
303
- }
304
-
305
- .action-button {
306
- width: 100%;
307
- text-align: center;
308
- }
1111
+ .toast-notification.error {
1112
+ border-left: 4px solid #dc3545;
309
1113
  }
310
1114
  </style>
311
1115
 
312
1116
  <script>
313
1117
  document.addEventListener('DOMContentLoaded', function() {
1118
+ // Check for hash in URL and navigate accordingly
1119
+ function handleHashNavigation() {
1120
+ if (location.hash) {
1121
+ const hashParts = location.hash.substring(1).split('/');
1122
+ const section = hashParts[0];
1123
+ const tab = hashParts[1] || null;
1124
+
1125
+ if (section && document.getElementById(section)) {
1126
+ // On page load, don't scroll - this prevents jumping around
1127
+ // For manual hash changes, do scroll
1128
+ const isPageLoad = !window.hasPageLoaded;
1129
+ navigateToSection(section, tab, !isPageLoad);
1130
+ return true;
1131
+ }
1132
+ }
1133
+ return false;
1134
+ }
1135
+
1136
+ // Track if page has loaded fully
1137
+ window.hasPageLoaded = false;
1138
+
1139
+ // Try to handle hash navigation, if it fails (no hash or invalid section),
1140
+ // the default 'overview' section will remain active
1141
+ const hashNavigated = handleHashNavigation();
1142
+ if (!hashNavigated) {
1143
+ // If no hash navigation happened, set default hash to #overview
1144
+ updateUrlHash('overview');
1145
+ }
1146
+
1147
+ // Listen for hash changes
1148
+ window.addEventListener('hashchange', handleHashNavigation);
1149
+
1150
+ // Mark page as fully loaded after a short delay
1151
+ setTimeout(() => {
1152
+ window.hasPageLoaded = true;
1153
+ }, 500);
1154
+
314
1155
  // Toggle details panels
315
1156
  document.querySelectorAll('.toggle-details').forEach(function(toggle) {
316
1157
  toggle.addEventListener('click', function(e) {
@@ -332,16 +1173,165 @@
332
1173
  }
333
1174
  });
334
1175
  });
1176
+
1177
+ // Function to update URL hash with current state
1178
+ function updateUrlHash(section, tab = null) {
1179
+ let hash = '#' + section;
1180
+ if (tab) {
1181
+ hash += '/' + tab;
1182
+ }
1183
+ history.replaceState(null, null, hash);
1184
+ }
1185
+
1186
+ // Function to navigate to section and tab
1187
+ function navigateToSection(section, tab = null, shouldScroll = false) {
1188
+ // Remove active class from all nav items and sections
1189
+ document.querySelectorAll('.nav-item').forEach(item => item.classList.remove('active'));
1190
+ document.querySelectorAll('.dashboard-section').forEach(section => section.classList.remove('active'));
1191
+
1192
+ // Add active class to matching nav item
1193
+ const navItem = document.querySelector(`.nav-item[data-section="${section}"]`);
1194
+ if (navItem) {
1195
+ navItem.classList.add('active');
1196
+ }
1197
+
1198
+ // Show corresponding section
1199
+ const sectionElement = document.getElementById(section);
1200
+ if (sectionElement) {
1201
+ sectionElement.classList.add('active');
1202
+
1203
+ // If tab is specified, activate that tab
1204
+ if (tab) {
1205
+ const tabsContainer = sectionElement.querySelector('.tabs-container');
1206
+ if (tabsContainer) {
1207
+ // Deactivate all tabs first
1208
+ tabsContainer.querySelectorAll('.tab-button').forEach(button => button.classList.remove('active'));
1209
+ tabsContainer.querySelectorAll('.tab-content').forEach(content => content.classList.remove('active'));
1210
+
1211
+ // Activate the target tab
1212
+ const targetTabButton = tabsContainer.querySelector(`.tab-button[data-tab="${tab}"]`);
1213
+ const targetTabContent = tabsContainer.querySelector(`#${tab}`);
1214
+
1215
+ if (targetTabButton) targetTabButton.classList.add('active');
1216
+ if (targetTabContent) targetTabContent.classList.add('active');
1217
+ }
1218
+ }
1219
+
1220
+ // Scroll to section if requested (with a small delay to ensure rendering)
1221
+ if (shouldScroll) {
1222
+ setTimeout(() => {
1223
+ sectionElement.scrollIntoView({ behavior: 'smooth', block: 'start' });
1224
+ }, 100);
1225
+ }
1226
+
1227
+ // Update URL hash
1228
+ updateUrlHash(section, tab);
1229
+ }
1230
+ }
1231
+
1232
+ // Main navigation
1233
+ document.querySelectorAll('.nav-item').forEach(function(navItem) {
1234
+ navItem.addEventListener('click', function(e) {
1235
+ e.preventDefault();
1236
+
1237
+ // Get section ID from data attribute
1238
+ const sectionId = this.getAttribute('data-section');
1239
+
1240
+ // Navigate to the section
1241
+ navigateToSection(sectionId);
1242
+ });
1243
+ });
1244
+
1245
+ // Tab navigation
1246
+ document.querySelectorAll('.tab-button').forEach(function(tabButton) {
1247
+ tabButton.addEventListener('click', function() {
1248
+ const tabContainer = this.closest('.tabs-container');
1249
+ const tabId = this.getAttribute('data-tab');
1250
+
1251
+ // Find the current active section
1252
+ const currentSection = document.querySelector('.dashboard-section.active').id;
1253
+
1254
+ // Remove active class from all buttons and tabs within this container
1255
+ tabContainer.querySelectorAll('.tab-button').forEach(button => button.classList.remove('active'));
1256
+ tabContainer.querySelectorAll('.tab-content').forEach(content => content.classList.remove('active'));
1257
+
1258
+ // Add active class to clicked button and corresponding tab
1259
+ this.classList.add('active');
1260
+ tabContainer.querySelector(`#${tabId}`).classList.add('active');
1261
+
1262
+ // Update URL hash with current section and tab
1263
+ updateUrlHash(currentSection, tabId);
1264
+ });
1265
+ });
1266
+
1267
+ // Quick navigation
1268
+ document.querySelectorAll('.quick-nav-item').forEach(function(navItem) {
1269
+ navItem.addEventListener('click', function(e) {
1270
+ e.preventDefault();
1271
+ const targetId = this.getAttribute('href').substring(1);
1272
+
1273
+ // Navigate to the specified section
1274
+ navigateToSection(targetId);
1275
+
1276
+ // Close the quick nav menu
1277
+ document.querySelector('.quick-nav-menu').style.display = 'none';
1278
+ });
1279
+ });
1280
+
1281
+ // Summary card navigation
1282
+ document.querySelectorAll('.summary-card').forEach(function(card) {
1283
+ card.addEventListener('click', function() {
1284
+ const section = this.getAttribute('data-section');
1285
+ const tab = this.getAttribute('data-tab');
1286
+
1287
+ // Navigate to the specified section and tab, with scrolling
1288
+ navigateToSection(section, tab, true);
1289
+ });
1290
+ });
335
1291
  });
336
1292
 
337
1293
  function refreshAudit() {
338
- // Implement refresh functionality
339
- alert('Refreshing audit data...');
340
- location.reload();
341
- }
342
-
343
- function exportReport() {
344
- // Implement export functionality
345
- alert('Exporting report...');
1294
+ // Show loading indicator
1295
+ const refreshButton = document.querySelector('.action-button');
1296
+ const originalText = refreshButton.innerHTML;
1297
+ refreshButton.innerHTML = '<span class="action-icon">โŸณ</span> Refreshing...';
1298
+ refreshButton.disabled = true;
1299
+
1300
+ // Make AJAX call to refresh endpoint
1301
+ fetch('/solidstats/refresh', {
1302
+ method: 'GET',
1303
+ headers: {
1304
+ 'Accept': 'application/json',
1305
+ 'X-Requested-With': 'XMLHttpRequest'
1306
+ },
1307
+ credentials: 'same-origin'
1308
+ })
1309
+ .then(response => {
1310
+ if (!response.ok) {
1311
+ throw new Error('Network response was not ok');
1312
+ }
1313
+ return response.json();
1314
+ })
1315
+ .then(data => {
1316
+ // Update the dashboard with fresh data
1317
+ location.reload();
1318
+
1319
+ // Show success notification
1320
+ showNotification('Dashboard data refreshed successfully', 'success');
1321
+
1322
+ // Reset button state
1323
+ refreshButton.innerHTML = originalText;
1324
+ refreshButton.disabled = false;
1325
+ })
1326
+ .catch(error => {
1327
+ console.error('Error refreshing data:', error);
1328
+
1329
+ // Show error notification
1330
+ showNotification('Failed to refresh data. Please try again.', 'error');
1331
+
1332
+ // Reset button state
1333
+ refreshButton.innerHTML = originalText;
1334
+ refreshButton.disabled = false;
1335
+ });
346
1336
  }
347
1337
  </script>