File size: 20,934 Bytes
b0f0c9f 7beb8f4 b0f0c9f 79cbbff b0f0c9f 79cbbff b0f0c9f |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trading Data Dashboard</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body class="bg-gray-100 min-h-screen">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="mb-8">
<h1 class="text-4xl font-bold text-indigo-600 mb-2">Jailbreak Trading Data Analytics</h1>
<p class="text-gray-600">Analyze trading data for Jailbreak items</p>
</header>
<!-- Stats Overview -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8">
<div class="bg-white p-6 rounded-lg shadow-md border-l-4 border-blue-500">
<h2 class="text-gray-500 text-sm font-medium">Total Items</h2>
<p class="text-3xl font-bold text-gray-800" id="total-items">Loading...</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md border-l-4 border-green-500">
<h2 class="text-gray-500 text-sm font-medium">Total Trades</h2>
<p class="text-3xl font-bold text-gray-800" id="total-trades">Loading...</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md border-l-4 border-yellow-500">
<h2 class="text-gray-500 text-sm font-medium">Avg. Demand Multiple</h2>
<p class="text-3xl font-bold text-gray-800" id="avg-demand">Loading...</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md border-l-4 border-purple-500">
<h2 class="text-gray-500 text-sm font-medium">Unique Item Types</h2>
<p class="text-3xl font-bold text-gray-800" id="unique-types">Loading...</p>
</div>
</div>
<!-- Controls -->
<div class="bg-white p-6 rounded-lg shadow-md mb-8">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-4">
<div class="mb-4 md:mb-0">
<label class="block text-sm font-medium text-gray-700 mb-1">Search:</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none">
<i class="fas fa-search text-gray-400"></i>
</div>
<input type="text" id="search-input" class="block w-full pl-10 pr-4 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500" placeholder="Search by name...">
</div>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Filter by Type:</label>
<select id="type-filter" class="block w-full px-3 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
<option value="all">All Types</option>
<!-- Will be populated dynamically -->
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Sort By:</label>
<select id="sort-by" class="block w-full px-3 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
<option value="Name">Name</option>
<option value="TimesTraded">Times Traded</option>
<option value="UniqueCirculation">Unique Circulation</option>
<option value="DemandMultiple" selected>Demand Multiple</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Order:</label>
<select id="sort-order" class="block w-full px-3 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
<option value="desc" selected>Highest to Lowest</option>
<option value="asc">Lowest to Highest</option>
</select>
</div>
</div>
</div>
</div>
<!-- Data Visualization -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-8">
<div class="bg-white p-6 rounded-lg shadow-md">
<h2 class="text-xl font-semibold text-gray-800 mb-4">Top Items by Demand</h2>
<div class="h-80">
<canvas id="demand-chart"></canvas>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h2 class="text-xl font-semibold text-gray-800 mb-4">Distribution by Type</h2>
<div class="h-80">
<canvas id="type-chart"></canvas>
</div>
</div>
</div>
<!-- Data Table -->
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-xl font-semibold text-gray-800">Trading Data</h2>
<p class="text-sm text-gray-500" id="results-count">Showing 0 items</p>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider cursor-pointer" data-sort="Name">
Name <i class="fas fa-sort ml-1"></i>
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider cursor-pointer" data-sort="Type">
Type <i class="fas fa-sort ml-1"></i>
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider cursor-pointer" data-sort="TimesTraded">
Times Traded <i class="fas fa-sort ml-1"></i>
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider cursor-pointer" data-sort="UniqueCirculation">
Circulation <i class="fas fa-sort ml-1"></i>
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider cursor-pointer" data-sort="DemandMultiple">
Demand <i class="fas fa-sort ml-1"></i>
</th>
</tr>
</thead>
<tbody id="data-table-body" class="bg-white divide-y divide-gray-200">
<!-- Table rows will be inserted here -->
<tr>
<td colspan="5" class="px-6 py-4 text-center text-gray-500">Loading data...</td>
</tr>
</tbody>
</table>
</div>
</div>
<footer class="mt-8 text-center text-gray-600">
<p>Data refreshes periodically. Last updated: <span id="last-updated">Loading...</span></p>
</footer>
</div>
<script>
// API URL - updated to use our proxy endpoint
const API_URL = '/api/trading-data';
// Global data store
let tradeData = [];
let filteredData = [];
// Initialize the application
async function initialize() {
try {
const response = await fetch(API_URL);
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
tradeData = await response.json();
filteredData = [...tradeData];
populateTypeFilter();
updateStats();
renderTable();
initCharts();
setupEventListeners();
document.getElementById('last-updated').textContent = new Date().toLocaleString();
} catch (error) {
console.error('Error fetching data:', error);
document.getElementById('data-table-body').innerHTML =
`<tr><td colspan="5" class="px-6 py-4 text-center text-red-500">
Error loading data: ${error.message}. Please try again later.
</td></tr>`;
}
}
// Populate the type filter dropdown
function populateTypeFilter() {
const typeFilter = document.getElementById('type-filter');
const types = [...new Set(tradeData.map(item => item.Type))].sort();
types.forEach(type => {
const option = document.createElement('option');
option.value = type;
option.textContent = formatType(type);
typeFilter.appendChild(option);
});
}
// Format type for display
function formatType(type) {
if (type.includes('VehicleCustomization.')) {
return type.replace('VehicleCustomization.', '');
}
return type;
}
// Update statistics
function updateStats() {
const totalItems = filteredData.length;
const totalTrades = filteredData.reduce((sum, item) => sum + item.TimesTraded, 0);
const avgDemand = filteredData.reduce((sum, item) => sum + item.DemandMultiple, 0) / totalItems;
const uniqueTypes = new Set(filteredData.map(item => item.Type)).size;
document.getElementById('total-items').textContent = totalItems.toLocaleString();
document.getElementById('total-trades').textContent = totalTrades.toLocaleString();
document.getElementById('avg-demand').textContent = avgDemand.toFixed(2);
document.getElementById('unique-types').textContent = uniqueTypes;
document.getElementById('results-count').textContent = `Showing ${totalItems} items`;
}
// Render the data table
function renderTable() {
const tableBody = document.getElementById('data-table-body');
const sortBy = document.getElementById('sort-by').value;
const sortOrder = document.getElementById('sort-order').value;
// Sort data
filteredData.sort((a, b) => {
if (sortOrder === 'asc') {
return a[sortBy] > b[sortBy] ? 1 : -1;
} else {
return a[sortBy] < b[sortBy] ? 1 : -1;
}
});
// Generate table HTML
tableBody.innerHTML = filteredData.map(item => `
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="font-medium text-gray-900">${item.Name}</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full ${getTypeColor(item.Type)}">
${formatType(item.Type)}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-gray-800">
${item.TimesTraded.toLocaleString()}
</td>
<td class="px-6 py-4 whitespace-nowrap text-gray-800">
${item.UniqueCirculation.toLocaleString()}
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<span class="mr-2 font-medium ${getDemandColor(item.DemandMultiple)}">
${item.DemandMultiple.toFixed(2)}
</span>
<div class="w-16 bg-gray-200 rounded-full h-2.5">
<div class="${getDemandBarColor(item.DemandMultiple)} h-2.5 rounded-full" style="width: ${Math.min(item.DemandMultiple * 10, 100)}%"></div>
</div>
</div>
</td>
</tr>
`).join('');
}
// Get color class for type badge
function getTypeColor(type) {
if (type === 'Vehicle') return 'bg-blue-100 text-blue-800';
if (type.includes('Color')) return 'bg-purple-100 text-purple-800';
if (type.includes('Rim')) return 'bg-yellow-100 text-yellow-800';
if (type.includes('Texture')) return 'bg-green-100 text-green-800';
if (type.includes('Spoiler')) return 'bg-red-100 text-red-800';
return 'bg-gray-100 text-gray-800';
}
// Get color class for demand text
function getDemandColor(demand) {
if (demand >= 4) return 'text-red-600';
if (demand >= 3) return 'text-orange-600';
if (demand >= 2) return 'text-yellow-600';
return 'text-green-600';
}
// Get color class for demand progress bar
function getDemandBarColor(demand) {
if (demand >= 4) return 'bg-red-600';
if (demand >= 3) return 'bg-orange-500';
if (demand >= 2) return 'bg-yellow-500';
return 'bg-green-500';
}
// Initialize charts
function initCharts() {
renderDemandChart();
renderTypeChart();
}
// Render the demand chart
function renderDemandChart() {
const top10ByDemand = [...filteredData]
.sort((a, b) => b.DemandMultiple - a.DemandMultiple)
.slice(0, 10);
const ctx = document.getElementById('demand-chart').getContext('2d');
new Chart(ctx, {
type: 'bar',
data: {
labels: top10ByDemand.map(item => item.Name),
datasets: [{
label: 'Demand Multiple',
data: top10ByDemand.map(item => item.DemandMultiple),
backgroundColor: 'rgba(99, 102, 241, 0.6)',
borderColor: 'rgb(99, 102, 241)',
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false
}
},
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Demand Multiple'
}
},
x: {
ticks: {
autoSkip: false,
maxRotation: 90,
minRotation: 45
}
}
}
}
});
}
// Render the type distribution chart
function renderTypeChart() {
const typeDistribution = filteredData.reduce((acc, item) => {
const type = formatType(item.Type);
if (!acc[type]) acc[type] = 0;
acc[type]++;
return acc;
}, {});
const types = Object.keys(typeDistribution);
const counts = Object.values(typeDistribution);
const colors = [
'rgba(99, 102, 241, 0.6)', // Indigo
'rgba(236, 72, 153, 0.6)', // Pink
'rgba(245, 158, 11, 0.6)', // Amber
'rgba(16, 185, 129, 0.6)', // Emerald
'rgba(239, 68, 68, 0.6)', // Red
'rgba(59, 130, 246, 0.6)', // Blue
'rgba(139, 92, 246, 0.6)', // Violet
'rgba(249, 115, 22, 0.6)', // Orange
'rgba(107, 114, 128, 0.6)' // Gray
];
const ctx = document.getElementById('type-chart').getContext('2d');
new Chart(ctx, {
type: 'doughnut',
data: {
labels: types,
datasets: [{
data: counts,
backgroundColor: colors.slice(0, types.length),
borderWidth: 1,
borderColor: '#fff'
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'right'
}
}
}
});
}
// Set up event listeners
function setupEventListeners() {
// Filter by type
document.getElementById('type-filter').addEventListener('change', applyFilters);
// Sort by column
document.getElementById('sort-by').addEventListener('change', renderTable);
document.getElementById('sort-order').addEventListener('change', renderTable);
// Search functionality
document.getElementById('search-input').addEventListener('input', applyFilters);
// Table header sorting
document.querySelectorAll('th[data-sort]').forEach(header => {
header.addEventListener('click', () => {
const sortField = header.getAttribute('data-sort');
const sortBySelect = document.getElementById('sort-by');
const sortOrderSelect = document.getElementById('sort-order');
if (sortBySelect.value === sortField) {
// Toggle order if already sorting by this field
sortOrderSelect.value = sortOrderSelect.value === 'asc' ? 'desc' : 'asc';
} else {
// Set new sort field and default to descending
sortBySelect.value = sortField;
sortOrderSelect.value = 'desc';
}
renderTable();
});
});
}
// Apply filters
function applyFilters() {
const typeFilter = document.getElementById('type-filter').value;
const searchTerm = document.getElementById('search-input').value.toLowerCase();
filteredData = tradeData.filter(item => {
const matchesType = typeFilter === 'all' || item.Type === typeFilter;
const matchesSearch = item.Name.toLowerCase().includes(searchTerm);
return matchesType && matchesSearch;
});
updateStats();
renderTable();
// Redraw charts with filtered data
const charts = Chart.instances;
for (let chart of charts) {
chart.destroy();
}
initCharts();
}
// Start the application
initialize();
</script>
</body>
</html>
|