-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
570 lines (535 loc) · 20.1 KB
/
index.html
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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Artist Payment Watch</title>
<!-- Chart.js -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<!-- PapaParse -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.2/papaparse.min.js"></script>
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<style>
:root {
--primary-color: #3a86ff;
--secondary-color: #8338ec;
--success-color: #4caf50;
--danger-color: #f44336;
--warning-color: #ff9800;
--dark-color: #333;
--light-color: #f9f9f9;
--border-color: #ddd;
--box-shadow: 0 4px 8px rgba(0,0,0,0.1);
--transition-speed: 0.3s;
}
/* Page fade-in */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--light-color);
color: var(--dark-color);
margin: 0;
padding: 0;
opacity: 0;
animation: fadeInPage 1s forwards;
line-height: 1.6;
}
@keyframes fadeInPage { to { opacity: 1; } }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
header {
text-align: center;
margin-bottom: 30px;
padding: 30px 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
border-radius: 0 0 10px 10px;
box-shadow: var(--box-shadow);
}
h1 { font-size: 2.5em; margin: 0; }
h2 {
font-size: 1.8em;
border-bottom: 2px solid var(--primary-color);
padding-bottom: 10px;
margin-top: 40px;
}
/* Filters: Only Location and Time Period */
.filter-container {
background: white;
padding: 15px;
border-radius: 8px;
box-shadow: var(--box-shadow);
margin-bottom: 30px;
display: flex;
flex-wrap: wrap;
gap: 15px;
align-items: center;
justify-content: center;
opacity: 0;
animation: fadeInUp 1s forwards;
}
.filter-group { display: flex; align-items: center; gap: 10px; }
select, input, button {
padding: 8px 12px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 14px;
transition: border-color var(--transition-speed);
}
select:focus, input:focus { outline: none; border-color: var(--primary-color); }
button.primary {
background-color: var(--primary-color);
color: white;
border: none;
padding: 8px 15px;
border-radius: 4px;
cursor: pointer;
transition: background-color var(--transition-speed);
}
button.primary:hover { background-color: var(--secondary-color); }
/* Stat Cards */
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.stat-card {
background: white;
border-radius: 8px;
padding: 20px;
box-shadow: var(--box-shadow);
text-align: center;
}
.stat-card h3 { margin-top: 0; color: var(--primary-color); font-size: 1em; }
.stat-card .value { font-size: 2em; font-weight: bold; margin: 10px 0; }
/* Only one chart: Payment Timeliness Pie Chart */
.charts-container { display: flex; justify-content: center; margin-bottom: 30px; }
.chart-box {
background: white;
border: 1px solid var(--border-color);
padding: 20px;
border-radius: 8px;
box-shadow: var(--box-shadow);
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-out;
min-width: 300px;
max-width: 500px;
width: 100%;
}
.chart-box.visible { opacity: 1; transform: translateY(0); }
.chart-box h3 {
font-size: 1.2em;
margin-top: 0;
border-bottom: 1px solid var(--border-color);
padding-bottom: 10px;
color: var(--primary-color);
}
.chart-box canvas { max-width: 100%; height: auto; }
/* Data Table */
.table-container {
background: white;
border: 1px solid var(--border-color);
padding: 20px;
border-radius: 8px;
box-shadow: var(--box-shadow);
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-out;
margin-bottom: 40px;
}
.table-container.visible { opacity: 1; transform: translateY(0); }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid var(--border-color); padding: 12px; text-align: left; }
th { background: #f2f2f2; position: sticky; top: 0; }
tbody tr { transition: background-color var(--transition-speed); }
tbody tr:hover { background-color: #f1f1f1; cursor: pointer; }
/* Badge styling based on Verification Status */
.badge-success { background-color: var(--success-color); color: white; }
.badge-warning { background-color: var(--warning-color); color: white; }
.badge-danger { background-color: var(--danger-color); color: white; }
/* Small button for actions */
.btn-sm { padding: 4px 8px; font-size: 0.8em; }
/* Modals (Redirect only) */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
z-index: 100;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: white;
padding: 30px;
border-radius: 8px;
max-width: 600px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
position: relative;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
.close-modal {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
cursor: pointer;
color: #777;
transition: color var(--transition-speed);
}
.close-modal:hover { color: var(--danger-color); }
footer {
background-color: var(--dark-color);
color: white;
text-align: center;
padding: 20px 0;
margin-top: 50px;
border-radius: 10px 10px 0 0;
box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
/* Intersection Observer fade-in */
.chart-box, .table-container, .filter-container { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.chart-box.visible, .table-container.visible, .filter-container.visible { opacity: 1; transform: translateY(0); }
</style>
</head>
<body>
<header class="animate__animated animate__fadeInDown">
<div class="container">
<h1>Artist Payment Dashboard</h1>
<p>Explore aggregated payment reports while protecting anonymity.</p>
</div>
</header>
<div class="container">
<!-- Filters: Only Location and Time Period -->
<div class="filter-container">
<div class="filter-group">
<label for="cityFilter">Location: </label>
<select id="cityFilter">
<option value="all">All Cities</option>
</select>
</div>
<div class="filter-group">
<label for="timeFilter">Time Period: </label>
<select id="timeFilter">
<option value="all">All Time</option>
<option value="6months">Last 6 Months</option>
<option value="year">Last Year</option>
</select>
</div>
<div class="filter-group">
<button class="primary" id="applyFilters"><i class="fas fa-filter"></i> Apply Filters</button>
<button class="primary" id="resetFilters"><i class="fas fa-undo"></i> Reset</button>
</div>
</div>
<!-- Stat Cards (Dynamically Calculated) -->
<div class="stats-grid">
<div class="stat-card animate__animated animate__fadeIn">
<h3>Total Reports</h3>
<div class="value" id="totalReports">0</div>
</div>
<div class="stat-card animate__animated animate__fadeIn" style="animation-delay: 0.1s">
<h3>On-Time Payment Rate</h3>
<div class="value" id="onTimeRate">0%</div>
</div>
<div class="stat-card animate__animated animate__fadeIn" style="animation-delay: 0.2s">
<h3>Verified Reports</h3>
<div class="value" id="verifiedRate">0</div>
</div>
<div class="stat-card animate__animated animate__fadeIn" style="animation-delay: 0.3s">
<h3>Disputed Reports</h3>
<div class="value" id="disputeRate">0</div>
</div>
</div>
<!-- Chart: Payment Timeliness Pie Chart -->
<div class="charts-container">
<div class="chart-box" id="boxPieChart">
<h3>Payment Timeliness</h3>
<canvas id="paymentPieChart"></canvas>
</div>
</div>
<!-- Data Table -->
<div class="table-container" id="boxTable">
<div class="subheader">
<h2>Detailed Report Data</h2>
<div>
<button class="primary" id="downloadData"><i class="fas fa-download"></i> Export Data</button>
<button class="primary" id="openSubmitForm"><i class="fas fa-plus"></i> Submit Report</button>
</div>
</div>
<table id="dataTable">
<thead>
<tr>
<th>Status</th>
<th>Venue/Promoter Name</th>
<th>City & Country</th>
<th>Payment Method</th>
<th>Paid on Time?</th>
<th>If Late, How Late</th>
<th>Verification Score</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="8" class="text-center">Loading data... <div class="loading-spinner"></div></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Submit Report Modal (Redirect) -->
<div class="modal" id="submitModal">
<div class="modal-content">
<span class="close-modal" id="closeSubmitModal">×</span>
<h2>Submit New Report</h2>
<p>To submit your report with all details, please visit our official report form.</p>
<div class="form-actions">
<button class="btn btn-primary" id="redirectReport">Go to Report Form</button>
</div>
</div>
</div>
<!-- Dispute Modal (Redirect) -->
<div class="modal" id="disputeModal">
<div class="modal-content">
<span class="close-modal" id="closeDisputeModal">×</span>
<h2>File a Dispute</h2>
<p>To file a dispute, please visit our official dispute form.</p>
<div class="form-actions">
<button class="btn btn-primary" id="redirectDispute">Go to Dispute Form</button>
</div>
</div>
</div>
<footer>
<p>© 2025 Artist Payment Dashboard. All rights reserved.</p>
</footer>
<script>
// CSV URL from your newly published Artist Payment Responses spreadsheet
const csvUrl = "https://docs.google.com/spreadsheets/d/e/2PACX-1vTCxiwvO-yVXux43OupB96fr14n5B98t8cZs8Kkg1ThS-rTvtA5tCvPAERCir_5D6wcg0NPPBcv3Q0x/pub?output=csv";
let rawData = [];
let filteredData = [];
let paymentPieChart;
// Preprocess the data (trim fields)
function preprocessData(data) {
return data.map(row => {
row["City & Country"] = row["City & Country"] ? row["City & Country"].trim() : "Unknown";
row["Were you paid on time?"] = row["Were you paid on time?"] ? row["Were you paid on time?"].trim().toLowerCase() : "unknown";
row["Payment Method"] = row["Payment Method"] ? row["Payment Method"].trim() : "Other";
row["If not, how late was the payment?"] = row["If not, how late was the payment?"] ? row["If not, how late was the payment?"].trim() : "";
// Expect the new columns "Status" and "Verification Score" to be present
row["Status"] = row["Status"] ? row["Status"].trim() : "Pending";
row["Verification Score"] = row["Verification Score"] ? row["Verification Score"].trim() : "";
return row;
});
}
// Fetch data from the CSV URL using PapaParse
function fetchData() {
Papa.parse(csvUrl, {
download: true,
header: true,
complete: function(results) {
rawData = results.data.filter(row => Object.values(row).some(cell => cell !== ""));
rawData = preprocessData(rawData);
populateCityFilter();
updateDashboard();
updateStats();
},
error: function(err) {
console.error("Error fetching CSV data:", err);
}
});
}
// Populate location filter dropdown
function populateCityFilter() {
const cityFilter = document.getElementById("cityFilter");
const cities = new Set(rawData.map(row => row["City & Country"]).filter(Boolean));
cities.forEach(city => {
const option = document.createElement("option");
option.value = city;
option.textContent = city;
cityFilter.appendChild(option);
});
}
// Update dashboard: filter data and update charts & table
function updateDashboard() {
const selectedCity = document.getElementById("cityFilter").value;
filteredData = selectedCity === "all" ? rawData : rawData.filter(row => row["City & Country"] === selectedCity);
updatePieChart();
updateTable();
}
// Update the Payment Timeliness pie chart
function updatePieChart() {
let onTime = 0, late = 0;
filteredData.forEach(row => {
const response = row["Were you paid on time?"];
if (response === "yes") onTime++;
else if (response === "no") late++;
});
const data = {
labels: ["Paid on Time", "Not Paid on Time"],
datasets: [{
data: [onTime, late],
backgroundColor: ["#4caf50", "#f44336"]
}]
};
const ctx = document.getElementById("paymentPieChart").getContext("2d");
if (paymentPieChart) {
paymentPieChart.data = data;
paymentPieChart.update();
} else {
paymentPieChart = new Chart(ctx, {
type: "pie",
data: data,
options: {
responsive: true,
animation: { animateRotate: true, animateScale: true },
plugins: {
legend: { position: "bottom" },
title: { display: true, text: "Payment Timeliness" }
}
}
});
}
}
// Update the data table
function updateTable() {
const tbody = document.querySelector("#dataTable tbody");
tbody.innerHTML = "";
if (filteredData.length === 0) {
const tr = document.createElement("tr");
tr.innerHTML = `<td colspan="8" class="text-center">No data available.</td>`;
tbody.appendChild(tr);
return;
}
filteredData.forEach(row => {
let status = row["Status"];
let badgeClass = "badge-warning";
if (status.toLowerCase() === "verified") badgeClass = "badge-success";
else if (status.toLowerCase() === "disputed") badgeClass = "badge-danger";
const tr = document.createElement("tr");
tr.innerHTML = `
<td><span class="badge ${badgeClass}">${status}</span></td>
<td>${row["Venue/Promoter Name"] || ""}</td>
<td>${row["City & Country"] || ""}</td>
<td>${row["Payment Method"] || ""}</td>
<td>${row["Were you paid on time?"] || ""}</td>
<td>${row["If not, how late was the payment?"] || ""}</td>
<td>${row["Verification Score"] || ""}</td>
<td>
<button class="btn btn-secondary btn-sm open-dispute">Dispute</button>
</td>
`;
tbody.appendChild(tr);
});
}
// Update stat cards dynamically from rawData
function updateStats() {
const totalReports = rawData.length;
const onTimeCount = rawData.filter(row => row["Were you paid on time?"].toLowerCase() === "yes").length;
const onTimeRate = totalReports ? ((onTimeCount / totalReports) * 100).toFixed(0) + "%" : "0%";
const verifiedCount = rawData.filter(row => row["Status"].toLowerCase() === "verified").length;
const disputedCount = rawData.filter(row => row["Status"].toLowerCase() === "disputed").length;
document.getElementById("totalReports").textContent = totalReports;
document.getElementById("onTimeRate").textContent = onTimeRate;
document.getElementById("verifiedRate").textContent = verifiedCount;
document.getElementById("disputeRate").textContent = disputedCount;
}
/* --- Modal & Redirect Handling --- */
function initModals() {
// Quick Report Modal (Redirect)
const submitModal = document.getElementById("submitModal");
const openSubmitFormBtn = document.getElementById("openSubmitForm");
const closeSubmitModalBtn = document.getElementById("closeSubmitModal");
openSubmitFormBtn.addEventListener("click", () => {
submitModal.style.display = "flex";
});
if (closeSubmitModalBtn) {
closeSubmitModalBtn.addEventListener("click", () => {
submitModal.style.display = "none";
});
}
document.getElementById("redirectReport").addEventListener("click", () => {
window.location.href = "https://forms.gle/zzB322HTE7GBQTWD6"; // Official report form URL
});
// Dispute Modal (Redirect)
const disputeModal = document.getElementById("disputeModal");
const closeDisputeModalBtn = document.getElementById("closeDisputeModal");
document.addEventListener("click", function(e) {
if (e.target && e.target.classList.contains("open-dispute")) {
disputeModal.style.display = "flex";
}
});
closeDisputeModalBtn.addEventListener("click", () => {
disputeModal.style.display = "none";
});
document.getElementById("redirectDispute").addEventListener("click", () => {
window.location.href = "https://forms.gle/Ck678YwVTCN34X5J8"; // Official dispute form URL
});
}
function initFilters() {
document.getElementById("applyFilters").addEventListener("click", updateDashboard);
document.getElementById("resetFilters").addEventListener("click", () => {
document.getElementById("cityFilter").value = "all";
document.getElementById("timeFilter").value = "all";
updateDashboard();
});
}
function initDownload() {
document.getElementById("downloadData").addEventListener("click", () => {
let csvContent = "data:text/csv;charset=utf-8,";
const headers = ["Venue/Promoter Name", "City & Country", "Payment Method", "Paid on Time?", "If Late, How Late", "Status", "Verification Score"];
csvContent += headers.join(",") + "\n";
filteredData.forEach(row => {
const dataRow = [
row["Venue/Promoter Name"] || "",
row["City & Country"] || "",
row["Payment Method"] || "",
row["Were you paid on time?"] || "",
row["If not, how late was the payment?"] || "",
row["Status"] || "",
row["Verification Score"] || ""
];
csvContent += dataRow.join(",") + "\n";
});
const encodedUri = encodeURI(csvContent);
const link = document.createElement("a");
link.setAttribute("href", encodedUri);
link.setAttribute("download", "artist_payment_reports.csv");
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
});
}
/* --- Intersection Observer for Motion Effects --- */
function observeElements() {
const elements = document.querySelectorAll(".chart-box, .table-container, .filter-container");
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add("visible");
observer.unobserve(entry.target);
}
});
}, { threshold: 0.2 });
elements.forEach(el => observer.observe(el));
}
function init() {
fetchData();
initModals();
initFilters();
initDownload();
observeElements();
}
window.onload = init;
</script>
</body>
</html>