-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
214 lines (189 loc) · 7.34 KB
/
scripts.js
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
document.addEventListener("DOMContentLoaded", () => {
const fadeInterval = 12000; // time between auto-cycles in ms
const pageNumber = 2; // number of groups/buttons
const githubJSON = "https://postkevone.github.io/site-test/data/";
// Fetch players data from a separate JSON file
fetch("players.json")
.then(response => response.json())
.then(playersData => {
// Shuffle the players array
playersData.sort(() => Math.random() - 0.5);
// Generate HTML for each player and add to the grid
const playerGrid = document.querySelector(".player-grid");
playerGrid.innerHTML = ""; // Clear any existing content
playersData.forEach(player => {
const playerDiv = document.createElement("div");
playerDiv.classList.add("player");
playerDiv.id = player.id;
playerDiv.innerHTML = `
<div class="profile-preview" style='background-image:url(${player.picture});'></div>
<h1>${player.name}</h1>
<p>${player.summary}</p>
<div class="modal-content-hidden" style="display: none;">
${player.modalContent}
</div>
`;
playerGrid.appendChild(playerDiv);
});
// Get all player elements after they've been added
const playerElements = Array.from(document.querySelectorAll(".player"));
// Initially hide all players
playerElements.forEach(player => {
player.style.display = "none";
player.style.opacity = "0";
});
// Split players into groups (first 6, then the rest)
const groups = [
playerElements.slice(0, 6),
playerElements.slice(6)
];
let currentGroupIndex = 0;
let autoCycle = null;
// Update the navigation button opacities based on the active group
function updateButtonOpacities(activeIndex) {
for (let i = 0; i < pageNumber; i++) {
const btn = document.getElementById(`show${i + 1}`);
if (btn) {
btn.style.opacity = (i === activeIndex) ? "1" : "0.3";
}
}
}
// Stop the auto-cycle timer
function stopAutoCycle() {
if (autoCycle) {
clearInterval(autoCycle);
autoCycle = null;
}
}
// Show a given group with an optional fade transition
function showGroup(groupIndex, fade = true) {
if (fade) {
groups[currentGroupIndex].forEach(p => p.style.opacity = "0");
setTimeout(() => {
// Hide all players
playerElements.forEach(p => p.style.display = "none");
// Show the new group and fade in
groups[groupIndex].forEach(p => {
p.style.display = "block";
setTimeout(() => p.style.opacity = "1", 50);
});
currentGroupIndex = groupIndex;
updateButtonOpacities(groupIndex);
}, 500);
} else {
groups[currentGroupIndex].forEach(p => {
p.style.opacity = "0";
p.style.display = "none";
});
groups[groupIndex].forEach(p => {
p.style.display = "block";
p.style.opacity = "1";
});
currentGroupIndex = groupIndex;
updateButtonOpacities(groupIndex);
}
}
// Immediately show the first group without fading
showGroup(0, false);
// Start auto-cycling between groups
autoCycle = setInterval(() => {
const nextGroupIndex = (currentGroupIndex + 1) % groups.length;
showGroup(nextGroupIndex);
}, fadeInterval);
// Add click event listeners to group navigation buttons
for (let i = 0; i < pageNumber; i++) {
const btn = document.getElementById(`show${i + 1}`);
if (btn) {
btn.addEventListener("click", () => {
stopAutoCycle();
showGroup(i, false);
});
}
}
// Modal functionality setup
const modal = document.createElement("div");
modal.id = "modal";
modal.className = "modal";
modal.innerHTML = `
<div class="modal-content">
<span class="close">×</span>
<div id="player-content"></div>
</div>
`;
document.body.appendChild(modal);
const modalBody = document.getElementById("player-content");
const closeModal = modal.querySelector(".close");
// Open modal on player click with that player's modal content
playerElements.forEach(player => {
player.addEventListener("click", () => {
stopAutoCycle();
const modalContent = player.querySelector(".modal-content-hidden").innerHTML;
modalBody.innerHTML = modalContent;
modal.style.display = "flex";
});
});
// Close the modal when the close button is clicked
closeModal.addEventListener("click", () => {
modal.style.display = "none";
});
// Close the modal if the user clicks outside of the modal content
window.addEventListener("click", event => {
if (event.target === modal) {
modal.style.display = "none";
}
});
})
.catch(error => {
console.error("Error loading players:", error);
});
// Tournament year filtering: load tournament data from a JSON file
fetch("tournaments.json")
.then(response => response.json())
.then(tournamentsData => {
// Assuming your tournament containers in HTML have ids "t2024" and "t2025"
Object.keys(tournamentsData).forEach(year => {
const container = document.getElementById('t' + year);
if (container) {
// Clear any existing content
container.innerHTML = "";
// Create tournament entries from JSON data
tournamentsData[year].forEach(tournament => {
const tournamentDiv = document.createElement("div");
tournamentDiv.classList.add("tournament");
tournamentDiv.innerHTML = `
${tournament.date}<br>
<h1>${tournament.title}</h1>
<p>
${tournament.details}
</p>
`;
container.appendChild(tournamentDiv);
});
}
});
})
.catch(error => console.error("Error loading tournament data:", error));
// Handle tournament filtering on year select
document.getElementById('select-year').addEventListener('change', function() {
var selectedYear = this.value;
var tournamentLists = document.querySelectorAll('.tournament-list');
tournamentLists.forEach(function(list) {
list.style.display = 'none';
});
const target = document.getElementById('t' + selectedYear);
if (target) {
target.style.display = 'grid';
}
});
});
// Add this to your scripts.js or here
function openModal(src, alt) {
const modal = document.getElementById('photo-modal');
const modalImg = document.getElementById('photo-large');
modal.style.display = 'flex';
modalImg.src = src;
modalImg.alt = alt;
}
function closeModal() {
document.getElementById('photo-modal').style.display = 'none';
}