2017-05-26 18:49:27 -04:00
|
|
|
<script>
|
2017-11-04 19:42:31 -04:00
|
|
|
var curFrom = 0;
|
|
|
|
|
|
|
|
function getNextPage() {
|
|
|
|
curFrom += 15;
|
|
|
|
return curFrom;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPrevPage() {
|
|
|
|
if ((curFrom - 15) >= 0) {
|
|
|
|
curFrom -= 15;
|
|
|
|
return (curFrom - 15);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
2017-05-27 00:22:50 -04:00
|
|
|
}
|
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
function formatHidden(data, authed) {
|
|
|
|
var p = "<div class=\"hiddenWrapper\"><span>Expand</span><div class=\"hiddenElements\">";
|
|
|
|
|
|
|
|
if (authed) {
|
|
|
|
$.each(data, function (i, dat) {
|
|
|
|
p += "<span>" + dat + "</span><br/>"
|
|
|
|
})
|
|
|
|
}
|
2017-05-26 18:49:27 -04:00
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
else
|
|
|
|
p += "Hidden";
|
2017-05-26 18:49:27 -04:00
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
p += "</div></div>"
|
2017-05-27 00:22:50 -04:00
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
function printPlayer(player, i) {
|
|
|
|
var p = "";
|
|
|
|
p +=
|
|
|
|
"<div class=\"playerInfo table alternate_" + i % 2 + "\"> \
|
2017-05-27 00:22:50 -04:00
|
|
|
<div class=\"tableCell\"><a href=\"/players?id=" + player['playerID'] + "\">" + player['playerName'] + "</a></div> \
|
|
|
|
<div class=\"tableCell\">" + formatHidden(player['playerAliases'], player.authed) + "</div> \
|
|
|
|
<div class=\"tableCell\">" + formatHidden(player['playerIPs'], player.authed) + "</div> \
|
|
|
|
<div class=\"tableCell\">" + getColorForLevel(player['playerLevel'], player['playerLevel']) + "</div> \
|
|
|
|
<div class=\"tableCell\">" + player['playerConnections'] + "</div>";
|
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
|
2017-05-27 00:22:50 -04:00
|
|
|
p +=
|
2017-11-04 19:42:31 -04:00
|
|
|
"<div class=\"tableCell\" style='width: 2em;'><a href=\"/chat?clientid=" + player.playerID + "\"><i class=\"fa fa-comments\" aria-hidden=\"true\"></i></a></div>"
|
|
|
|
|
|
|
|
p +=
|
|
|
|
"<div class=\"tableCell alignRight\">" + checkJustNow(player['lastSeen']) + "</div> \
|
|
|
|
</div>";
|
|
|
|
|
|
|
|
$("#playersTable").append(p);
|
2017-05-27 00:22:50 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
function getPlayer(ident, identValue) {
|
|
|
|
$("#playersTable").html("");
|
|
|
|
$(".loader").fadeIn();
|
2017-05-27 00:22:50 -04:00
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
$.getJSON("/getplayer?" + ident + "=" + identValue, function (result) {
|
|
|
|
$.each(result, function (i, player) {
|
|
|
|
printPlayer(player, i);
|
|
|
|
});
|
|
|
|
}).done(function (data) { $(".loader").fadeOut(); });
|
2017-05-26 18:49:27 -04:00
|
|
|
}
|
|
|
|
|
2017-11-18 01:59:37 -05:00
|
|
|
function getRecentPlayers(offset) {
|
|
|
|
$("#playersTable").html("");
|
|
|
|
$(".loader").fadeIn();
|
|
|
|
|
|
|
|
$.getJSON("/getplayer?recent=1&offset=" + offset, function (result) {
|
|
|
|
$.each(result, function (i, player) {
|
|
|
|
printPlayer(player, i);
|
|
|
|
});
|
|
|
|
}).done(function (data) { $(".loader").fadeOut(); });
|
|
|
|
}
|
|
|
|
|
2017-11-04 19:42:31 -04:00
|
|
|
$(document).ready(function () {
|
|
|
|
if (parseGet('id') != "undefined")
|
|
|
|
getPlayer('id', parseGet('id'));
|
|
|
|
else if (parseGet('name') != "undefined")
|
|
|
|
getPlayer('name', parseGet('name'));
|
|
|
|
else {
|
2017-11-18 01:59:37 -05:00
|
|
|
getRecentPlayers(0);
|
2017-11-04 19:42:31 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#content').on('click', 'div.hiddenWrapper span', function () {
|
|
|
|
$(this).parent().find('.hiddenElements').toggle()
|
|
|
|
});
|
2017-05-26 18:49:27 -04:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="playerSearchWrap">
|
2017-11-04 19:42:31 -04:00
|
|
|
<input type="button" class="searchButton" name="Search" value="Search" />
|
|
|
|
<input type="text" class="search" placeholder="Player Name..." />
|
2017-05-26 18:49:27 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="contentHeader table">
|
2017-11-04 19:42:31 -04:00
|
|
|
<div class="contentColumn tableCell">Name</div>
|
|
|
|
<div class="contentColumn tableCell">Aliases</div>
|
|
|
|
<div class="contentColumn tableCell">IP</div>
|
|
|
|
<div class="contentColumn tableCell">Level</div>
|
|
|
|
<div class="contentColumn tableCell">Connections</div>
|
|
|
|
<div class="contentColumn tableCell" style="width: 1em;">Chat</div>
|
|
|
|
<div class="contentColumn tableCell alignRight">Last Seen</div>
|
2017-05-26 18:49:27 -04:00
|
|
|
</div>
|
|
|
|
<div id="playersTable">
|
|
|
|
</div>
|
2017-11-04 19:42:31 -04:00
|
|
|
<hr />
|
2017-05-26 18:49:27 -04:00
|
|
|
|
2017-11-18 01:59:37 -05:00
|
|
|
<div id="paginationButtons" class="table">
|
|
|
|
<div id="previousPage" class="tableCell"><a href=# onclick="getRecentPlayers(getPrevPage())"><<</a></div>
|
|
|
|
<div id="nextPage" class="tableCell"><a href=# onclick="getRecentPlayers(getNextPage())">>></a></div>
|
|
|
|
</div>
|
|
|
|
|
2017-05-26 18:49:27 -04:00
|
|
|
<script>
|
2017-11-04 19:42:31 -04:00
|
|
|
$('.searchButton').click(function () {
|
|
|
|
if ($('.search').val().length > 0)
|
|
|
|
getPlayer('name', $('.search').val());
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keypress(function (e) {
|
|
|
|
if (e.which == 13) {
|
|
|
|
$('.searchButton').click();
|
|
|
|
}
|
|
|
|
});
|
2017-05-26 18:49:27 -04:00
|
|
|
</script>
|