(function () {
"use strict";
window.CO_ServerList = {
pingClass: function (ping) {
if (ping <= 50) return "co-ping-good";
if (ping <= 100) return "co-ping-mid";
return "co-ping-bad";
},
render: function (root, state) {
var wrap = root.querySelector(".co-server-list-wrap");
var list = root.querySelector(".co-server-list");
if (!wrap || !list) return;
wrap.className = "co-server-list-wrap" + (state.focusZone === "server-list" ? " focused" : "");
if (!state.servers.length) {
list.innerHTML = '
No servers found
';
CO_ServerList.updateScrollIndicator(wrap, list);
return;
}
list.innerHTML = state.servers.map(function (server, index) {
var selected = index === state.selectedServerIndex ? " selected" : "";
var fav = server.favorite ? " on" : "";
var pingCls = CO_ServerList.pingClass(server.ping);
return (
'' +
'
' +
'' + (server.favorite ? "\u2605" : "\u2606") + "" +
'' + escapeHtml(server.name) + "" +
"
" +
'
' +
"" + server.players + "/" + server.maxPlayers + "" +
'' + server.ping + " ms" +
"
" +
"
"
);
}).join("");
CO_ServerList.updateScrollIndicator(wrap, list);
},
updateScrollIndicator: function (wrap, list) {
var indicator = wrap && wrap.querySelector(".co-scroll-indicator");
if (!indicator || !list) return;
var hasOverflow = list.scrollHeight > list.clientHeight + 2;
indicator.classList.toggle("hidden", !hasOverflow);
},
bind: function (root, onSelect) {
var list = root.querySelector(".co-server-list");
if (!list) return;
list.addEventListener("click", function (e) {
var row = e.target.closest(".co-server-row");
if (!row) return;
onSelect(parseInt(row.getAttribute("data-index"), 10));
});
list.addEventListener("dblclick", function (e) {
var row = e.target.closest(".co-server-row");
if (!row) return;
onSelect(parseInt(row.getAttribute("data-index"), 10));
if (window.CO_App && window.CO_App.joinSelected) {
window.CO_App.joinSelected();
}
});
},
scrollToSelected: function (root, index) {
var list = root.querySelector(".co-server-list");
var row = list && list.querySelector('.co-server-row[data-index="' + index + '"]');
if (row) {
row.scrollIntoView({ block: "nearest" });
}
var wrap = root.querySelector(".co-server-list-wrap");
if (wrap && list) {
CO_ServerList.updateScrollIndicator(wrap, list);
}
}
};
function escapeHtml(value) {
return String(value)
.replace(/&/g, "&")
.replace(//g, ">");
}
function escapeAttr(value) {
return String(value).replace(/"/g, """);
}
})();