better UI
This commit is contained in:
parent
5137ddd44e
commit
d38e5777de
@ -24,7 +24,7 @@ import lombok.extern.log4j.Log4j2;
|
|||||||
|
|
||||||
@Log4j2
|
@Log4j2
|
||||||
public class BasketballServer {
|
public class BasketballServer {
|
||||||
private static final String VERSION = "1.0.2";
|
private static final String VERSION = "1.0.3";
|
||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
log.info("Starting Basketball Server...");
|
log.info("Starting Basketball Server...");
|
||||||
|
|||||||
@ -5,157 +5,444 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>CZ.Basketball - zápasy</title>
|
<title>CZ.Basketball - zápasy</title>
|
||||||
<link rel="icon" type="image/png" href="https://cz.basketball/img/logo-icon.png">
|
<link rel="icon" type="image/png" href="https://cz.basketball/img/logo-icon.png">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||||
<style>
|
<style>
|
||||||
body {
|
:root {
|
||||||
font-family: 'Roboto', Arial, sans-serif;
|
--primary-color: #2c3e50;
|
||||||
background: #f4f7f9;
|
--secondary-color: #3498db;
|
||||||
color: #333;
|
--accent-color: #e74c3c;
|
||||||
margin: 10px 16px;
|
--light-bg: #f8f9fa;
|
||||||
}
|
--dark-text: #2c3e50;
|
||||||
h1 {
|
--light-text: #7f8c8d;
|
||||||
color: #2c3e50;
|
--border-color: #e0e0e0;
|
||||||
font-size: 1.6rem;
|
--success-color: #27ae60;
|
||||||
text-align: center;
|
--warning-color: #f39c12;
|
||||||
margin-bottom: 20px;
|
--hover-bg: rgba(52, 152, 219, 0.1);
|
||||||
}
|
}
|
||||||
.controls {
|
|
||||||
display: flex;
|
* {
|
||||||
flex-wrap: wrap;
|
margin: 0;
|
||||||
align-items: center;
|
padding: 0;
|
||||||
gap: 10px;
|
box-sizing: border-box;
|
||||||
margin-bottom: 10px;
|
}
|
||||||
justify-content: center;
|
|
||||||
}
|
body {
|
||||||
label { font-weight: 500; }
|
font-family: 'Roboto', Arial, sans-serif;
|
||||||
input, select {
|
background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
|
||||||
padding: 8px 10px;
|
color: var(--dark-text);
|
||||||
border: 1px solid #ccc;
|
line-height: 1.6;
|
||||||
border-radius: 6px;
|
padding: 15px;
|
||||||
font-size: 15px;
|
min-height: 100vh;
|
||||||
min-width: 140px;
|
}
|
||||||
}
|
|
||||||
button {
|
.container {
|
||||||
background-color: #3498db;
|
max-width: 1200px;
|
||||||
color: white;
|
margin: 0 auto;
|
||||||
border: none;
|
}
|
||||||
border-radius: 6px;
|
|
||||||
padding: 8px 12px;
|
header {
|
||||||
font-size: 15px;
|
text-align: center;
|
||||||
cursor: pointer;
|
margin-bottom: 25px;
|
||||||
transition: background 0.3s;
|
padding: 20px;
|
||||||
}
|
background: white;
|
||||||
button:hover { background-color: #2980b9; }
|
border-radius: 12px;
|
||||||
.radio-group {
|
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
||||||
text-align: center;
|
}
|
||||||
margin: 8px 0 16px 0;
|
|
||||||
}
|
h1 {
|
||||||
.radio-group label {
|
color: var(--primary-color);
|
||||||
margin-right: 12px;
|
font-size: 2.2rem;
|
||||||
font-size: 15px;
|
font-weight: 700;
|
||||||
}
|
margin-bottom: 10px;
|
||||||
#loading, #error {
|
position: relative;
|
||||||
text-align: center;
|
display: inline-block;
|
||||||
margin: 10px 0;
|
}
|
||||||
font-weight: 500;
|
|
||||||
}
|
h1:after {
|
||||||
#loading { color: #3498db; }
|
content: '';
|
||||||
#error { color: red; }
|
position: absolute;
|
||||||
.table-container {
|
bottom: -5px;
|
||||||
overflow-x: auto;
|
left: 0;
|
||||||
background: white;
|
width: 60px;
|
||||||
border-radius: 8px;
|
height: 3px;
|
||||||
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
|
background: var(--secondary-color);
|
||||||
}
|
border-radius: 3px;
|
||||||
table {
|
}
|
||||||
border-collapse: collapse;
|
|
||||||
width: 100%;
|
.controls {
|
||||||
min-width: 700px;
|
display: flex;
|
||||||
}
|
flex-wrap: wrap;
|
||||||
th, td {
|
gap: 15px;
|
||||||
border-bottom: 1px solid #eee;
|
margin-bottom: 20px;
|
||||||
padding: 10px;
|
justify-content: center;
|
||||||
text-align: left;
|
background: white;
|
||||||
font-size: 14px;
|
padding: 20px;
|
||||||
}
|
border-radius: 12px;
|
||||||
th {
|
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
|
||||||
background-color: #3498db;
|
}
|
||||||
color: white;
|
|
||||||
font-weight: 500;
|
.control-group {
|
||||||
position: sticky;
|
display: flex;
|
||||||
top: 0;
|
flex-direction: column;
|
||||||
}
|
min-width: 140px;
|
||||||
tr.highlight {
|
}
|
||||||
background-color: #ffeb3b !important;
|
|
||||||
font-weight: bold;
|
label {
|
||||||
}
|
font-weight: 500;
|
||||||
tr.nymburk {
|
margin-bottom: 6px;
|
||||||
background-color: #90caf9;
|
font-size: 0.9rem;
|
||||||
}
|
color: var(--light-text);
|
||||||
tr:nth-child(even) { background-color: #f9f9f9; }
|
}
|
||||||
a { color: #2980b9; text-decoration: none; }
|
|
||||||
a:hover { text-decoration: underline; }
|
input, select {
|
||||||
.footer {
|
padding: 10px 12px;
|
||||||
text-align: center;
|
border: 1px solid var(--border-color);
|
||||||
padding: 20px 0;
|
border-radius: 8px;
|
||||||
margin-top: 20px;
|
font-size: 1rem;
|
||||||
color: #666;
|
background: #fafafa;
|
||||||
font-size: 12px;
|
transition: all 0.3s ease;
|
||||||
border-top: 1px solid #eee;
|
}
|
||||||
}
|
|
||||||
@media (max-width: 600px) {
|
input:focus, select:focus {
|
||||||
h1 { font-size: 1.3rem; margin-bottom: 12px; }
|
outline: none;
|
||||||
.controls { flex-direction: column; align-items: stretch; }
|
border-color: var(--secondary-color);
|
||||||
input, select { width: 100%; font-size: 16px; }
|
box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
|
||||||
.radio-group label { display: block; margin: 4px 0; }
|
}
|
||||||
th, td { padding: 8px; font-size: 13px; }
|
|
||||||
}
|
/* Nová tlačítka Den+ a Den- */
|
||||||
|
.date-controls {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date-btn {
|
||||||
|
background-color: var(--secondary-color);
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 10px 15px;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 500;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
min-width: 40px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date-btn:hover {
|
||||||
|
background-color: #2980b9;
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 10px;
|
||||||
|
margin: 15px 0;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-btn {
|
||||||
|
padding: 10px 20px;
|
||||||
|
background: #f1f8ff;
|
||||||
|
color: var(--secondary-color);
|
||||||
|
border: 1px solid var(--secondary-color);
|
||||||
|
border-radius: 20px;
|
||||||
|
font-weight: 500;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-btn:hover {
|
||||||
|
background: var(--secondary-color);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-btn.active {
|
||||||
|
background: var(--secondary-color);
|
||||||
|
color: white;
|
||||||
|
box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.status-indicators {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 15px;
|
||||||
|
margin: 15px 0;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
padding: 6px 12px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background: white;
|
||||||
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.status-indicator {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status-tv { background: var(--success-color); }
|
||||||
|
.status-live { background: var(--warning-color); }
|
||||||
|
.status-all { background: var(--secondary-color); }
|
||||||
|
|
||||||
|
#loading, #error {
|
||||||
|
text-align: center;
|
||||||
|
margin: 20px 0;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-weight: 500;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loading {
|
||||||
|
background: rgba(52, 152, 219, 0.1);
|
||||||
|
color: var(--secondary-color);
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#error {
|
||||||
|
background: rgba(231, 76, 60, 0.1);
|
||||||
|
color: var(--accent-color);
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-container {
|
||||||
|
overflow-x: auto;
|
||||||
|
background: white;
|
||||||
|
border-radius: 12px;
|
||||||
|
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
||||||
|
margin-bottom: 25px;
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
width: 100%;
|
||||||
|
min-width: 700px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Zcela tencí a jednoduché záhlaví tabulky */
|
||||||
|
th {
|
||||||
|
background-color: #2c3e50; /* Tmavě modrá - jedna barva */
|
||||||
|
color: white;
|
||||||
|
font-weight: 500;
|
||||||
|
padding: 14px 12px;
|
||||||
|
text-align: left;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 10;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
border: none;
|
||||||
|
/* Odstranění jakýchkoli gradientů nebo stínů */
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: 14px 12px;
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:nth-child(even) {
|
||||||
|
background-color: #f8f9fa;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:hover {
|
||||||
|
background-color: #e3f2fd;
|
||||||
|
transform: translateY(-1px);
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.highlight {
|
||||||
|
background-color: #fff9c4 !important;
|
||||||
|
font-weight: 600;
|
||||||
|
box-shadow: 0 0 0 2px #fbc02d;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.nymburk {
|
||||||
|
background-color: #e3f2fd;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--secondary-color);
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: 500;
|
||||||
|
transition: all 0.2s;
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
background: rgba(52, 152, 219, 0.1);
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
text-align: center;
|
||||||
|
padding: 25px 0;
|
||||||
|
color: var(--light-text);
|
||||||
|
font-size: 0.9rem;
|
||||||
|
border-top: 1px solid var(--border-color);
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.match-time {
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.team-name {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.league-name {
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--secondary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive design */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.controls {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-group {
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-buttons {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-btn {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 10px 8px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
body {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.controls {
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status-indicators {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Animation */
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(10px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-in {
|
||||||
|
animation: fadeIn 0.3s ease-out;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>CZ.Basketball – zápasy</h1>
|
<div class="container">
|
||||||
|
<header>
|
||||||
|
<h1>CZ.Basketball – zápasy</h1>
|
||||||
|
<p>Nejnovější zápasy a streamy</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label for="date">Datum:</label>
|
<div class="control-group">
|
||||||
<input type="date" id="date" onchange="loadMatches()"/>
|
<label for="date">Datum:</label>
|
||||||
<label for="league">Liga:</label>
|
<input type="date" id="date" onchange="loadMatches()"/>
|
||||||
<select id="league" onchange="filterMatches()">
|
</div>
|
||||||
<option value="">Všechny ligy</option>
|
|
||||||
</select>
|
<div class="control-group">
|
||||||
</div>
|
<label for="league">Liga:</label>
|
||||||
|
<select id="league" onchange="filterMatches()">
|
||||||
|
<option value="">Všechny ligy</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="control-group">
|
||||||
|
<label for="league">Procházet:</label>
|
||||||
|
<div class="date-controls">
|
||||||
|
<button class="date-btn" onclick="changeDate(-1)">← Den</button>
|
||||||
|
<button class="date-btn" onclick="setToday()">Dnes</button>
|
||||||
|
<button class="date-btn" onclick="changeDate(1)">Den →</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="radio-group">
|
<div class="filter-buttons">
|
||||||
<label><input type="radio" name="tvfilter" value="tv" checked>TV stream</label>
|
<button class="filter-btn active" onclick="setFilter('tv')">TV stream</button>
|
||||||
<label><input type="radio" name="tvfilter" value="live">Live Score</label>
|
<button class="filter-btn" onclick="setFilter('live')">Live Score</button>
|
||||||
<label><input type="radio" name="tvfilter" value="all">Všechny zápasy</label>
|
<button class="filter-btn" onclick="setFilter('all')">Všechny zápasy</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="loading" style="display:none;">🔄 Načítám zápasy...</div>
|
<div id="loading">🔄 Načítám zápasy...</div>
|
||||||
<div id="error" style="display:none;">❌ Nepodařilo se načíst data.</div>
|
<div id="error">❌ Nepodařilo se načíst data.</div>
|
||||||
|
|
||||||
<div class="table-container">
|
<div class="table-container">
|
||||||
<table id="matches">
|
<table id="matches">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Čas</th>
|
<th>Čas</th>
|
||||||
<th>Liga</th>
|
<th>Liga</th>
|
||||||
<th>Domácí</th>
|
<th>Domácí</th>
|
||||||
<th>Hosté</th>
|
<th>Hosté</th>
|
||||||
<th>Preview</th>
|
<th>Preview</th>
|
||||||
<th>Live</th>
|
<th>Live</th>
|
||||||
<th>TV</th>
|
<th>TV</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody></tbody>
|
<tbody></tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
v${version} © 2025 kAmMa. All rights reserved.
|
v${version} © 2025 kAmMa. All rights reserved.
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
let allMatchesGlobal = [];
|
let allMatchesGlobal = [];
|
||||||
|
let currentFilter = 'tv';
|
||||||
|
|
||||||
window.addEventListener('DOMContentLoaded', () => {
|
window.addEventListener('DOMContentLoaded', () => {
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
@ -166,6 +453,42 @@ window.addEventListener('DOMContentLoaded', () => {
|
|||||||
loadMatches();
|
loadMatches();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeDate(days) {
|
||||||
|
const dateInput = document.getElementById('date');
|
||||||
|
const currentDate = new Date(dateInput.value);
|
||||||
|
currentDate.setDate(currentDate.getDate() + days);
|
||||||
|
|
||||||
|
const yyyy = currentDate.getFullYear();
|
||||||
|
const mm = String(currentDate.getMonth() + 1).padStart(2, '0');
|
||||||
|
const dd = String(currentDate.getDate()).padStart(2, '0');
|
||||||
|
dateInput.value = `${yyyy}-${mm}-${dd}`;
|
||||||
|
|
||||||
|
loadMatches();
|
||||||
|
}
|
||||||
|
|
||||||
|
function setToday() {
|
||||||
|
const today = new Date();
|
||||||
|
const yyyy = today.getFullYear();
|
||||||
|
const mm = String(today.getMonth() + 1).padStart(2, '0');
|
||||||
|
const dd = String(today.getDate()).padStart(2, '0');
|
||||||
|
|
||||||
|
document.getElementById('date').value = `${yyyy}-${mm}-${dd}`;
|
||||||
|
loadMatches();
|
||||||
|
}
|
||||||
|
|
||||||
|
function setFilter(filterType) {
|
||||||
|
currentFilter = filterType;
|
||||||
|
|
||||||
|
// Aktualizuj aktivní tlačítko
|
||||||
|
document.querySelectorAll('.filter-btn').forEach(btn => {
|
||||||
|
btn.classList.remove('active');
|
||||||
|
});
|
||||||
|
|
||||||
|
event.target.classList.add('active');
|
||||||
|
|
||||||
|
renderMatches(allMatchesGlobal);
|
||||||
|
}
|
||||||
|
|
||||||
async function loadMatches() {
|
async function loadMatches() {
|
||||||
const loadingEl = document.getElementById('loading');
|
const loadingEl = document.getElementById('loading');
|
||||||
const errorEl = document.getElementById('error');
|
const errorEl = document.getElementById('error');
|
||||||
@ -205,12 +528,11 @@ function renderMatches(matches) {
|
|||||||
tbody.innerHTML = '';
|
tbody.innerHTML = '';
|
||||||
select.innerHTML = '<option value="">Všechny ligy</option>';
|
select.innerHTML = '<option value="">Všechny ligy</option>';
|
||||||
|
|
||||||
const tvFilter = document.querySelector('input[name="tvfilter"]:checked').value;
|
|
||||||
const filteredMatches = matches.filter(m => {
|
const filteredMatches = matches.filter(m => {
|
||||||
const hasTV = m.match.links.tvcom && m.match.links.tvcom.url;
|
const hasTV = m.match.links.tvcom && m.match.links.tvcom.url;
|
||||||
const hasLive = m.match.links.live && m.match.links.live.url;
|
const hasLive = m.match.links.live && m.match.links.live.url;
|
||||||
if(tvFilter === 'tv') return !!hasTV;
|
if(currentFilter === 'tv') return !!hasTV;
|
||||||
if(tvFilter === 'live') return !!hasLive;
|
if(currentFilter === 'live') return !!hasLive;
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -238,6 +560,7 @@ function renderMatches(matches) {
|
|||||||
filteredMatches.forEach(({league, match}) => {
|
filteredMatches.forEach(({league, match}) => {
|
||||||
const tr = document.createElement('tr');
|
const tr = document.createElement('tr');
|
||||||
tr.dataset.league = league;
|
tr.dataset.league = league;
|
||||||
|
tr.className = 'fade-in';
|
||||||
|
|
||||||
let previewUrl = '';
|
let previewUrl = '';
|
||||||
if(match.links.preview && match.links.preview.url){
|
if(match.links.preview && match.links.preview.url){
|
||||||
@ -261,10 +584,10 @@ function renderMatches(matches) {
|
|||||||
const liveUrl = match.links.live && match.links.live.url;
|
const liveUrl = match.links.live && match.links.live.url;
|
||||||
|
|
||||||
tr.innerHTML = `
|
tr.innerHTML = `
|
||||||
<td>${match.status}</td>
|
<td class="match-time">${match.status}</td>
|
||||||
<td>${league}</td>
|
<td class="league-name">${league}</td>
|
||||||
<td>${match.home.name}</td>
|
<td class="team-name">${match.home.name}</td>
|
||||||
<td>${match.away.name}</td>
|
<td class="team-name">${match.away.name}</td>
|
||||||
<td>${previewUrl ? '<a href="'+previewUrl+'" target="_blank">Preview</a>' : ''}</td>
|
<td>${previewUrl ? '<a href="'+previewUrl+'" target="_blank">Preview</a>' : ''}</td>
|
||||||
<td>${liveUrl ? '<a href="'+liveUrl+'" target="_blank">Live</a>' : ''}</td>
|
<td>${liveUrl ? '<a href="'+liveUrl+'" target="_blank">Live</a>' : ''}</td>
|
||||||
<td>${tvUrl ? '<a href="'+tvUrl+'" target="_blank">TV</a>' : ''}</td>
|
<td>${tvUrl ? '<a href="'+tvUrl+'" target="_blank">TV</a>' : ''}</td>
|
||||||
@ -298,12 +621,6 @@ function filterMatches() {
|
|||||||
row.style.display = (!league || row.dataset.league===league) ? '' : 'none';
|
row.style.display = (!league || row.dataset.league===league) ? '' : 'none';
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
document.querySelectorAll('input[name="tvfilter"]').forEach(radio => {
|
|
||||||
radio.addEventListener('change', () => {
|
|
||||||
renderMatches(allMatchesGlobal);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user