From 24846016777f41b2eaa144c70216af542abbdac3 Mon Sep 17 00:00:00 2001 From: Liam <67254223+RealFascinated@users.noreply.github.com> Date: Sat, 8 Oct 2022 15:44:19 +0100 Subject: [PATCH] Added BeatLeader support --- components/PlayerStats.js | 4 +++- pages/index.js | 47 +++++++++++++++++---------------------- 2 files changed, 24 insertions(+), 27 deletions(-) diff --git a/components/PlayerStats.js b/components/PlayerStats.js index 28dfe05..11d2e61 100644 --- a/components/PlayerStats.js +++ b/components/PlayerStats.js @@ -2,7 +2,9 @@ import ReactCountryFlag from "react-country-flag"; const PlayerStats = (props) => { return
{props.pp}pp
+{props.pp}pp ({props.websiteType})
#{props.globalPos}
#{props.countryRank}
diff --git a/pages/index.js b/pages/index.js index 9228216..551e026 100644 --- a/pages/index.js +++ b/pages/index.js @@ -9,7 +9,6 @@ import SongInfo from "../components/SongInfo"; // Why do u have to proxy requests... it's so dumb LOL const SCORESABER_API_URL = Config.proxy_url + "/https://scoresaber.com/api/player/%s/full"; const BEATLEADER_API_URL = Config.proxy_url + "/https://api.beatleader.xyz/player/%s"; -const GITHUB_URL = "https://github.com/RealFascinated/beatsaber-overlay"; export default class Home extends Component { @@ -22,7 +21,7 @@ export default class Home extends Component { loading: true, id: undefined, isValidSteamId: true, - websiteType: "scoresaber", + websiteType: "ScoreSaber", data: undefined, showPlayerStats: true, showScore: false, @@ -92,22 +91,32 @@ export default class Home extends Component { const urlSearchParams = new URLSearchParams(window.location.search); const params = Object.fromEntries(urlSearchParams.entries()); + // Check if the player wants to disable their stats (pp, global pos, etc) + if (params.beatleader === 'true') { + this.setState({ websiteType: "BeatLeader" }); + } + const id = params.id; if (!id) { // Check if the id param is valid this.setState({ loading: false, isValidSteamId: false }); return; } - // Check if the player wants to disable their stats (pp, global pos, etc) - if (params.beatleader === 'true') { - this.setState({ websiteType: "beatleader" }); - } - // Check if the player wants to disable their stats (pp, global pos, etc) if (params.playerstats === 'false') { this.setState({ showPlayerStats: false }); } + setTimeout(async () => { + await this.updateData(id); + }, 10); + setTimeout(async () => { + if (!this.state.isValidSteamId) { + return; + } + await this.updateData(id); + }, 30_000); // Update the player data every 30 seconds. + let shouldConnectSocket = false; // Check if the player wants to show their current score information @@ -125,14 +134,6 @@ export default class Home extends Component { if (shouldConnectSocket) { this.connectSocket(); } - - await this.updateData(id); - setTimeout(async () => { - if (!this.state.isValidSteamId) { - return; - } - await this.updateData(id); - }, 30_000); // Update the player data every 30 seconds. } /** @@ -142,17 +143,9 @@ export default class Home extends Component { * @returns */ async updateData(id) { - const data = await fetch(this.state.websiteType == "scoresaber" ? SCORESABER_API_URL.replace("%s", id) : BEATLEADER_API_URL.replace("%s", id), { + const data = await fetch(this.state.websiteType == "ScoreSaber" ? SCORESABER_API_URL.replace("%s", id) : BEATLEADER_API_URL.replace("%s", id), { mode: 'cors' }); - if (this.state.websiteType == "scoresaber") { - if (data.status === 422) { // Invalid steam account (I think??) - this.setState({ loading: false, isValidSteamId: false }); - return; - } - } else { // Assume BeatLeader - - } const json = await data.json(); if (json.errorMessage) { // Invalid steam account this.setState({ loading: false, isValidSteamId: false }); @@ -311,7 +304,7 @@ export default class Home extends Component { } render() { - const { loading, isValidSteamId, data } = this.state; + const { loading, isValidSteamId, data, websiteType } = this.state; // When in the main menu, show this colour so it's actually readable if (!isValidSteamId && !loading) { @@ -337,6 +330,7 @@ export default class Home extends Component {beatleader - Can be "true" if you wish to get player data from BeatLeader rather than scoresaber
scoreinfo - Can be "true" if you want to show your current score (needs HTTP Status)
playerstats - Can be "false" if you disable showing your stats (pp, global pos, etc)
songinfo - Can be "true" if want to see information about the song (song name, bsr, song art, etc)
@@ -348,12 +342,13 @@ export default class Home extends Component {