fix: remove Mojang service status tracker (fixes #274)
See https://github.com/Cryptkeeper/Minetrack/issues/274
This commit is contained in:
@ -137,25 +137,10 @@ header .header-button > span:first-of-type {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
header .header-button-group {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
header .header-button-group:first-of-type {
|
||||
border-top-left-radius: var(--border-radius);
|
||||
border-bottom-left-radius: var(--border-radius);
|
||||
}
|
||||
|
||||
header .header-button-group:last-of-type {
|
||||
border-top-right-radius: var(--border-radius);
|
||||
border-bottom-right-radius: var(--border-radius);
|
||||
}
|
||||
|
||||
header .header-button-single {
|
||||
display: none;
|
||||
cursor: pointer;
|
||||
border-radius: var(--border-radius);
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
header .header-button-single:hover {
|
||||
@ -401,35 +386,6 @@ footer a:hover {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/* Mojang status colors */
|
||||
|
||||
/* Light theme */
|
||||
.mojang-status-online {
|
||||
background: #87D37C;
|
||||
}
|
||||
|
||||
.mojang-status-unstable {
|
||||
background: #f1c40f;
|
||||
}
|
||||
|
||||
.mojang-status-offline {
|
||||
background: #DE5749;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.mojang-status-online {
|
||||
background: #66aa5a;
|
||||
}
|
||||
|
||||
.mojang-status-unstable {
|
||||
background: #cc8a4f;
|
||||
}
|
||||
|
||||
.mojang-status-offline {
|
||||
background: #A6453B;
|
||||
}
|
||||
}
|
||||
|
||||
/* Header rows */
|
||||
@media only screen and (max-width: 1050px) {
|
||||
header {
|
||||
|
@ -42,24 +42,7 @@
|
||||
<div class="header-possible-row-break column-right">
|
||||
<div id="sort-by" class="header-button header-button-single"><span class="icon-sort-amount-desc"></span> Sort By<br><strong id="sort-by-text">...</strong></div>
|
||||
|
||||
<div id="settings-toggle" class="header-button header-button-single"><span class="icon-gears"></span> Graph Controls</div>
|
||||
|
||||
<div class="header-button header-button-group" title="Sessions" id="mojang-status_Sessions">
|
||||
<span class="icon-globe"></span><strong>Sessions</strong>
|
||||
<p class="mojang-status-text" id="mojang-status-text_Sessions">...</p>
|
||||
</div>
|
||||
<div class="header-button header-button-group" title="Skins" id="mojang-status_Skins">
|
||||
<span class="icon-street-view"></span><strong>Skins</strong>
|
||||
<p class="mojang-status-text" id="mojang-status-text_Skins">...</p>
|
||||
</div>
|
||||
<div class="header-button header-button-group" title="Auth" id="mojang-status_Auth">
|
||||
<span class="icon-lock"></span><strong>Auth</strong>
|
||||
<p class="mojang-status-text" id="mojang-status-text_Auth">...</p>
|
||||
</div>
|
||||
<div class="header-button header-button-group" title="API" id="mojang-status_API">
|
||||
<span class="icon-code"></span><strong>API</strong>
|
||||
<p class="mojang-status-text" id="mojang-status-text_API">...</p>
|
||||
</div>
|
||||
<div id="settings-toggle" class="header-button header-button-single" style="margin-left: 20px;"><span class="icon-gears"></span> Graph Controls</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
@ -2,7 +2,6 @@ import { ServerRegistry } from './servers'
|
||||
import { SocketManager } from './socket'
|
||||
import { SortController } from './sort'
|
||||
import { GraphDisplayManager } from './graph'
|
||||
import { MojangUpdater } from './mojang'
|
||||
import { PercentageBar } from './percbar'
|
||||
import { FavoritesManager } from './favorites'
|
||||
import { Tooltip, Caption, formatNumber } from './util'
|
||||
@ -17,7 +16,6 @@ export class App {
|
||||
this.socketManager = new SocketManager(this)
|
||||
this.sortController = new SortController(this)
|
||||
this.graphDisplayManager = new GraphDisplayManager(this)
|
||||
this.mojangUpdater = new MojangUpdater()
|
||||
this.percentageBar = new PercentageBar(this)
|
||||
this.favoritesManager = new FavoritesManager(this)
|
||||
|
||||
@ -72,7 +70,6 @@ export class App {
|
||||
this.socketManager.reset()
|
||||
this.sortController.reset()
|
||||
this.graphDisplayManager.reset()
|
||||
this.mojangUpdater.reset()
|
||||
this.percentageBar.reset()
|
||||
|
||||
// Undefine publicConfig, resynced during the connection handshake
|
||||
|
@ -1,30 +0,0 @@
|
||||
const MOJANG_STATUS_BASE_CLASS = 'header-button header-button-group'
|
||||
|
||||
const MOJANG_SERVICE_NAMES = ['Auth', 'Sessions', 'API', 'Skins']
|
||||
|
||||
export class MojangUpdater {
|
||||
updateStatus (services) {
|
||||
for (const name of MOJANG_SERVICE_NAMES) {
|
||||
if (services[name]) {
|
||||
this.updateServiceStatus(name, services[name])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
updateServiceStatus (name, title) {
|
||||
// HACK: ensure mojang-status is added for alignment, replace existing class to swap status color
|
||||
document.getElementById(`mojang-status_${name}`).setAttribute('class', `${MOJANG_STATUS_BASE_CLASS} mojang-status-${title.toLowerCase()}`)
|
||||
document.getElementById(`mojang-status-text_${name}`).innerText = title
|
||||
}
|
||||
|
||||
reset () {
|
||||
// Strip any mojang-status-* color classes from all mojang-status classes
|
||||
document.querySelectorAll('.mojang-status').forEach(function (element) {
|
||||
element.setAttribute('class', MOJANG_STATUS_BASE_CLASS)
|
||||
})
|
||||
|
||||
document.querySelectorAll('.mojang-status-text').forEach(function (element) {
|
||||
element.innerText = '...'
|
||||
})
|
||||
}
|
||||
}
|
@ -63,10 +63,6 @@ export class SocketManager {
|
||||
this._app.addServer(serverId, serverPayload, payload.timestampPoints)
|
||||
})
|
||||
|
||||
if (payload.mojangServices) {
|
||||
this._app.mojangUpdater.updateStatus(payload.mojangServices)
|
||||
}
|
||||
|
||||
// Init payload contains all data needed to render the page
|
||||
// Alert the app it is ready
|
||||
this._app.handleSyncComplete()
|
||||
@ -101,11 +97,6 @@ export class SocketManager {
|
||||
break
|
||||
}
|
||||
|
||||
case 'updateMojangServices': {
|
||||
this._app.mojangUpdater.updateStatus(payload)
|
||||
break
|
||||
}
|
||||
|
||||
case 'historyGraph': {
|
||||
this._app.graphDisplayManager.buildPlotInstance(payload.timestamps, payload.graphData)
|
||||
|
||||
|
Reference in New Issue
Block a user