blob: 78ca323a1b6c3e53ecbbc6e7bae9496a6a2e47af (
plain)
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
|
import LoginModal from './login-modal.js';
/**
* Class for handling the server list
*/
export default class ServerListing {
/**
* Creates reference to container
* @param {string} serverListId ID of the server list div
* @param {BannerController} notifications Notification Manager
*/
constructor(serverListId, notifications) {
this.serverListing = document.getElementById(serverListId);
this.notifications = notifications;
}
/**
* Removes all elements currently in the server listing
*/
flushElements() {
this.serverListing.innerHTML = '';
}
/**
* Populates servers from a given array of games
* @param {array} array Array of available games
* @param {ServerClient} serverClient Server Client to handle login
* @param {array} ui UI Elements to reload after login
*/
addElements(array, serverClient, ui) {
for (let server of array) {
const name = server['name'];
const playerAmount = server['userCount'];
let serverDiv = document.createElement('div');
let nameSpan = document.createElement('span');
let rightAlignDiv = document.createElement('div');
let onlineDot = document.createElement('div');
let playerCountSpan = document.createElement('span');
let playerCountStaticSpan = document.createElement('span');
let joinButton = document.createElement('button');
serverDiv.className = 'server';
nameSpan.className = 'server-name';
rightAlignDiv.className = 'right-aligned-items';
onlineDot.className = 'player-count-dot';
playerCountSpan.className = 'player-count';
playerCountStaticSpan.className = 'player-count-static';
joinButton.className = 'btn join-btn';
joinButton.id = 'join';
nameSpan.textContent = name;
playerCountSpan.textContent = playerAmount;
playerCountStaticSpan.textContent = 'Spieler online';
joinButton.textContent = 'Beitreten';
joinButton.addEventListener('click', () => {
new LoginModal(name, serverClient, this.notifications, ui);
});
rightAlignDiv.appendChild(onlineDot);
rightAlignDiv.appendChild(playerCountSpan);
rightAlignDiv.appendChild(playerCountStaticSpan);
rightAlignDiv.appendChild(joinButton);
serverDiv.appendChild(nameSpan);
serverDiv.appendChild(rightAlignDiv);
this.serverListing.appendChild(serverDiv);
}
}
}
|