aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-01-13 17:00:31 +0100
committerGitHub <noreply@github.com>2023-01-13 17:00:31 +0100
commit5baa6a22a18970fc294710f42afcea2e5da2200d (patch)
tree3e09f5d54c2b4ba4233ba3eab4feb476449b70c0 /src-vue/src
parenteb6726fb016c468d39a674cf7707f2438093db1a (diff)
downloadFlightCore-5baa6a22a18970fc294710f42afcea2e5da2200d.tar.gz
FlightCore-5baa6a22a18970fc294710f42afcea2e5da2200d.zip
feat: Add backend code for getting playercount (#135)
* feat: Initial backend code to get the playercount from the Northstar master server together with servercount * fix: Push correct backend code * feat: Load playercount on application load and show on PlayView * refactor: Store global const in separate file Moved user agent there for now * refactor: User user agent from global const * refactor: Move masterserver URL into global const * refactor: Remove temporary variable * fix: Do proper typing for playercount return value * feat: Change text if unable to load playercount So instead of showing some wrong value, we just say that we were unable to load it. * fix: Remove leftover print statement * refactor: Move struct to library source file * fix: Remove break element * fix: Remove frontend display of playercount This allows for separate PR for adding backend code early. * refactor: serverlist endpoint var to global const
Diffstat (limited to 'src-vue/src')
-rw-r--r--src-vue/src/plugins/store.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts
index 57406dec..edeb13df 100644
--- a/src-vue/src/plugins/store.ts
+++ b/src-vue/src/plugins/store.ts
@@ -38,6 +38,9 @@ export interface FlightCoreStore {
northstar_is_running: boolean,
origin_is_running: boolean,
+ player_count: number,
+ server_count: number,
+
// user custom settings
mods_per_page: number,
}
@@ -65,6 +68,9 @@ export const store = createStore<FlightCoreStore>({
northstar_is_running: false,
origin_is_running: false,
+ player_count: -1,
+ server_count: -1,
+
mods_per_page: 20,
}
},
@@ -382,6 +388,16 @@ async function _initializeApp(state: any) {
// Check installed Northstar version if found
await _get_northstar_version_number(state);
}
+
+ await invoke<[number, number]>("get_server_player_count")
+ .then((message) => {
+ state.player_count = message[0];
+ state.server_count = message[1];
+ })
+ .catch((error) => {
+ console.warn("Failed getting player/server count");
+ console.warn(error);
+ });
}
async function _checkForFlightCoreUpdates(state: FlightCoreStore) {