266 lines
11 KiB
PHP
266 lines
11 KiB
PHP
<?php
|
|
// Mock data for the dashboard
|
|
$top_games = [
|
|
[
|
|
'title' => 'Just Chatting',
|
|
'viewers' => '480K',
|
|
'tags' => ['IRL', 'Casual'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/509658-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'League of Legends',
|
|
'viewers' => '210K',
|
|
'tags' => ['MOBA', 'Action', 'Strategy'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/21779-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'VALORANT',
|
|
'viewers' => '150K',
|
|
'tags' => ['FPS', 'Shooter', 'Tactical'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/516575-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'Grand Theft Auto V',
|
|
'viewers' => '120K',
|
|
'tags' => ['Adventure', 'Open World'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/32982_IGDB-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'Fortnite',
|
|
'viewers' => '110K',
|
|
'tags' => ['Battle Royale', 'Shooter'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/33214-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'Counter-Strike 2',
|
|
'viewers' => '95K',
|
|
'tags' => ['FPS', 'Tactical', 'Shooter'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/1812225397_IGDB-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'World of Warcraft',
|
|
'viewers' => '80K',
|
|
'tags' => ['MMORPG', 'RPG'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/18122-285x380.jpg'
|
|
],
|
|
[
|
|
'title' => 'Dota 2',
|
|
'viewers' => '75K',
|
|
'tags' => ['MOBA', 'Strategy'],
|
|
'img' => 'https://static-cdn.jtvnw.net/ttv-boxart/29595-285x380.jpg'
|
|
],
|
|
];
|
|
|
|
$live_channels = [
|
|
[
|
|
'name' => 'xQc',
|
|
'game' => 'Just Chatting',
|
|
'title' => 'RANKED GRIND! | !socials',
|
|
'viewers' => '98K',
|
|
'tags' => ['Competitive', 'English'],
|
|
'img' => 'https://static-cdn.jtvnw.net/jtv_user_pictures/xqc-profile_image-9298d2877057642a-70x70.png'
|
|
],
|
|
[
|
|
'name' => 'Tarik',
|
|
'game' => 'VALORANT',
|
|
'title' => 'Vibing and Winning | #1 Radiant',
|
|
'viewers' => '65K',
|
|
'tags' => ['FPS', 'Pro Player'],
|
|
'img' => 'https://static-cdn.jtvnw.net/jtv_user_pictures/tarik-profile_image-d6f82a69354da623-70x70.png'
|
|
],
|
|
[
|
|
'name' => 'summit1g',
|
|
'game' => 'Old School RuneScape',
|
|
'title' => 'Maxing my account! | !drops',
|
|
'viewers' => '31K',
|
|
'tags' => ['MMORPG', 'Grinding'],
|
|
'img' => 'https://static-cdn.jtvnw.net/jtv_user_pictures/summit1g-profile_image-d29b89b15533818c-70x70.png'
|
|
],
|
|
[
|
|
'name' => 'LIRIK',
|
|
'game' => 'DayZ',
|
|
'title' => 'SURVIVAL RP | !newvideo',
|
|
'viewers' => '25K',
|
|
'tags' => ['Survival', 'Funny Moments'],
|
|
'img' => 'https://static-cdn.jtvnw.net/jtv_user_pictures/lirik-profile_image-4ac8c3250307d433-70x70.png'
|
|
],
|
|
[
|
|
'name' => 'Shroud',
|
|
'game' => 'Counter-Strike 2',
|
|
'title' => 'Aim training and pro plays',
|
|
'viewers' => '40K',
|
|
'tags' => ['FPS', 'Pro'],
|
|
'img' => 'https://static-cdn.jtvnw.net/jtv_user_pictures/shroud-profile_image-8839d8f9052f83ca-70x70.png'
|
|
],
|
|
[
|
|
'name' => 'Pokimane',
|
|
'game' => 'Just Chatting',
|
|
'title' => 'Chill stream and Q&A',
|
|
'viewers' => '35K',
|
|
'tags' => ['IRL', 'Community'],
|
|
'img' => 'https://static-cdn.jtvnw.net/jtv_user_pictures/pokimane-profile_image-9332cf5d27f13321-70x70.png'
|
|
],
|
|
];
|
|
|
|
// Calculate statistics
|
|
$total_viewers = 0;
|
|
foreach ($live_channels as $channel) {
|
|
$viewers = str_replace('K', '000', $channel['viewers']);
|
|
$total_viewers += (int)$viewers;
|
|
}
|
|
|
|
$total_live_channels = count($live_channels);
|
|
|
|
$top_category = '-';
|
|
if (!empty($top_games)) {
|
|
$top_category = $top_games[0]['title'];
|
|
}
|
|
|
|
// Read project preview data from environment
|
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Twitch.TV Statistics Dashboard';
|
|
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
|
$projectName = $_SERVER['PROJECT_NAME'] ?? 'Twitch Stats';
|
|
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title><?= htmlspecialchars($projectName) ?> - Dashboard</title>
|
|
|
|
<!-- Meta description -->
|
|
<meta name="description" content="<?= htmlspecialchars($projectDescription) ?>"/>
|
|
<!-- Open Graph meta tags -->
|
|
<meta property="og:title" content="<?= htmlspecialchars($projectName) ?>"/>
|
|
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>"/>
|
|
<!-- Twitter meta tags -->
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:title" content="<?= htmlspecialchars($projectName) ?>"/>
|
|
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>"/>
|
|
|
|
<?php if ($projectImageUrl): ?>
|
|
<!-- Open Graph image -->
|
|
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>"/>
|
|
<!-- Twitter image -->
|
|
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>"/>
|
|
<?php endif; ?>
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
|
|
<!-- Google Fonts & Icons -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#"><i class="fab fa-twitch"></i> <?= htmlspecialchars($projectName) ?></a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container my-5">
|
|
<div class="row mb-4">
|
|
<div class="col">
|
|
<input type="text" id="search-bar" class="form-control" placeholder="Search for games and channels...">
|
|
</div>
|
|
</div>
|
|
<h1 class="mb-4">Dashboard Analytics</h1>
|
|
<div class="row g-4 mb-5">
|
|
<div class="col-md-4">
|
|
<div class="card h-100 stats-card">
|
|
<div class="card-body text-center">
|
|
<h5 class="card-title"><i class="fas fa-users"></i> Total Viewers</h5>
|
|
<p class="card-text display-4"><?= htmlspecialchars(number_format($total_viewers)) ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card h-100 stats-card">
|
|
<div class="card-body text-center">
|
|
<h5 class="card-title"><i class="fas fa-video"></i> Total Live Channels</h5>
|
|
<p class="card-text display-4"><?= htmlspecialchars($total_live_channels) ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card h-100 stats-card">
|
|
<div class="card-body text-center">
|
|
<h5 class="card-title"><i class="fas fa-gamepad"></i> Top Category</h5>
|
|
<p class="card-text display-4"><?= htmlspecialchars($top_category) ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h1 class="mb-4">Top Categories</h1>
|
|
<div class="row g-4">
|
|
<?php foreach ($top_games as $game): ?>
|
|
<div class="col-6 col-md-4 col-lg-3">
|
|
<div class="card h-100 game-card">
|
|
<img src="<?= htmlspecialchars($game['img']) ?>" class="card-img-top" alt="<?= htmlspecialchars($game['title']) ?>">
|
|
<div class="card-body">
|
|
<h5 class="card-title mb-1"><?= htmlspecialchars($game['title']) ?></h5>
|
|
<p class="viewers mb-2"><i class="fas fa-circle icon"></i> <?= htmlspecialchars($game['viewers']) ?> viewers</p>
|
|
<div>
|
|
<?php foreach ($game['tags'] as $tag): ?>
|
|
<span class="badge rounded-pill badge-genre"><?= htmlspecialchars($tag) ?></span>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<h1 class="my-4 pt-4">Recommended Live Channels</h1>
|
|
<div class="row g-4">
|
|
<?php foreach ($live_channels as $channel): ?>
|
|
<div class="col-12 col-md-6 col-lg-4">
|
|
<div class="card h-100 channel-card">
|
|
<div class="card-body d-flex">
|
|
<img src="<?= htmlspecialchars($channel['img']) ?>" class="rounded-circle me-3" alt="<?= htmlspecialchars($channel['name']) ?>" width="60" height="60">
|
|
<div class="flex-grow-1">
|
|
<div class="d-flex justify-content-between">
|
|
<h5 class="card-title mb-0"><?= htmlspecialchars($channel['name']) ?></h5>
|
|
<div class="viewers text-end">
|
|
<i class="fas fa-circle icon"></i> <?= htmlspecialchars($channel['viewers']) ?>
|
|
</div>
|
|
</div>
|
|
<p class="card-text text-white-50 mb-1" title="<?= htmlspecialchars($channel['title']) ?>"><?= htmlspecialchars($channel['title']) ?></p>
|
|
<p class="card-text small mb-2"><?= htmlspecialchars($channel['game']) ?></p>
|
|
<div>
|
|
<?php foreach ($channel['tags'] as $tag): ?>
|
|
<span class="badge rounded-pill badge-genre"><?= htmlspecialchars($tag) ?></span>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer mt-5">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> <?= htmlspecialchars($projectName) ?>. All rights reserved.</p>
|
|
<p>Powered by Flatlogic.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
</body>
|
|
</html>
|