Changed some colors when you give a invalid scoresaber id
This commit is contained in:
parent
3a0a95fe6a
commit
399a5f7e94
9
components/Avatar.js
Normal file
9
components/Avatar.js
Normal file
@ -0,0 +1,9 @@
|
||||
import Image from "next/image";
|
||||
|
||||
const Avatar = (props) => {
|
||||
return <>
|
||||
<Image className={'player-avatar'} src={props.url} width={180} height={180} alt={'Avatar image'} />
|
||||
</>
|
||||
}
|
||||
|
||||
export default Avatar;
|
15
components/PlayerStats.js
Normal file
15
components/PlayerStats.js
Normal file
@ -0,0 +1,15 @@
|
||||
import ReactCountryFlag from "react-country-flag";
|
||||
|
||||
const PlayerStats = (props) => {
|
||||
|
||||
return <div className={'player-stats'}>
|
||||
<p>{props.pp}pp</p>
|
||||
<p>#{props.globalPos}</p>
|
||||
<div className="player-country">
|
||||
<p>#{props.countryRank}</p>
|
||||
<ReactCountryFlag className={'player-country-icon'} svg countryCode={props.country} />
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
export default PlayerStats;
|
@ -1,3 +1,6 @@
|
||||
module.exports = {
|
||||
reactStrictMode: true,
|
||||
images: {
|
||||
domains: ['cdn.scoresaber.com'],
|
||||
}
|
||||
}
|
||||
|
18
package-lock.json
generated
18
package-lock.json
generated
@ -8,6 +8,7 @@
|
||||
"dependencies": {
|
||||
"next": "12.0.10",
|
||||
"react": "17.0.2",
|
||||
"react-country-flag": "^3.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -2328,6 +2329,17 @@
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/react-country-flag": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/react-country-flag/-/react-country-flag-3.0.2.tgz",
|
||||
"integrity": "sha512-JPaz+q3QD0/nZtHBKj5x3O7r/SgSG9kxbymdaIU0RqlDAcorJIe4KV0DFhWIdKh69q5cPVkIVERcMYGZdvXgAA==",
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16"
|
||||
}
|
||||
},
|
||||
"node_modules/react-dom": {
|
||||
"version": "17.0.2",
|
||||
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
|
||||
@ -4471,6 +4483,12 @@
|
||||
"object-assign": "^4.1.1"
|
||||
}
|
||||
},
|
||||
"react-country-flag": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/react-country-flag/-/react-country-flag-3.0.2.tgz",
|
||||
"integrity": "sha512-JPaz+q3QD0/nZtHBKj5x3O7r/SgSG9kxbymdaIU0RqlDAcorJIe4KV0DFhWIdKh69q5cPVkIVERcMYGZdvXgAA==",
|
||||
"requires": {}
|
||||
},
|
||||
"react-dom": {
|
||||
"version": "17.0.2",
|
||||
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
|
||||
|
@ -4,12 +4,13 @@
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"start": "next start -p 3001",
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "12.0.10",
|
||||
"react": "17.0.2",
|
||||
"react-country-flag": "^3.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,7 +1,19 @@
|
||||
import Head from 'next/head'
|
||||
|
||||
import '../styles/globals.css'
|
||||
|
||||
function MyApp({ Component, pageProps }) {
|
||||
return <Component {...pageProps} />
|
||||
return <>
|
||||
<Head>
|
||||
<title>BeatSaber Overlay</title>
|
||||
<meta name="twitter:title" content='BeatSaber Overlay' />
|
||||
<meta property="og:site_name" content="BeatSaber Overlay" key="title" />
|
||||
<meta property="og:url" content="https://bs-overlay.fascinated.cc" key="title" />
|
||||
<meta property="og:description" content="Simple scoresaber overlay" key="description" />
|
||||
<meta name="theme-color" content='#0EBFE9' />
|
||||
</Head>
|
||||
<Component {...pageProps} />
|
||||
</>
|
||||
}
|
||||
|
||||
export default MyApp
|
||||
|
@ -1,5 +0,0 @@
|
||||
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
||||
|
||||
export default function handler(req, res) {
|
||||
res.status(200).json({ name: 'John Doe' })
|
||||
}
|
@ -58,11 +58,16 @@ export default class Home extends Component {
|
||||
render() {
|
||||
const { loading, isValidScoresaber, data } = this.state;
|
||||
|
||||
if (!isValidScoresaber && !loading) {
|
||||
const body = document.body;
|
||||
body.style.backgroundColor = "#181a1b";
|
||||
}
|
||||
|
||||
return <>
|
||||
{ loading ?
|
||||
<>
|
||||
<p>Loading...</p>
|
||||
</>
|
||||
<div className={'loading'}>
|
||||
<h2>Loading...</h2>
|
||||
</div>
|
||||
: !isValidScoresaber ?
|
||||
<div className={'invalid-player'}>
|
||||
<p>Provide a valid scoresaber id</p>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 25 KiB |
@ -1,4 +0,0 @@
|
||||
<svg width="283" height="64" viewBox="0 0 283 64" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z" fill="#000"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,116 +0,0 @@
|
||||
.container {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
|
||||
.main {
|
||||
min-height: 100vh;
|
||||
padding: 4rem 0;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
padding: 2rem 0;
|
||||
border-top: 1px solid #eaeaea;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.title a {
|
||||
color: #0070f3;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title a:hover,
|
||||
.title a:focus,
|
||||
.title a:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin: 0;
|
||||
line-height: 1.15;
|
||||
font-size: 4rem;
|
||||
}
|
||||
|
||||
.title,
|
||||
.description {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.description {
|
||||
margin: 4rem 0;
|
||||
line-height: 1.5;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.code {
|
||||
background: #fafafa;
|
||||
border-radius: 5px;
|
||||
padding: 0.75rem;
|
||||
font-size: 1.1rem;
|
||||
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
|
||||
Bitstream Vera Sans Mono, Courier New, monospace;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin: 1rem;
|
||||
padding: 1.5rem;
|
||||
text-align: left;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
border: 1px solid #eaeaea;
|
||||
border-radius: 10px;
|
||||
transition: color 0.15s ease, border-color 0.15s ease;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.card:hover,
|
||||
.card:focus,
|
||||
.card:active {
|
||||
color: #0070f3;
|
||||
border-color: #0070f3;
|
||||
}
|
||||
|
||||
.card h2 {
|
||||
margin: 0 0 1rem 0;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.card p {
|
||||
margin: 0;
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.logo {
|
||||
height: 1em;
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.grid {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
@ -1,16 +1,59 @@
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
||||
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: white;
|
||||
font-size: xx-large;
|
||||
line-height: 0.3em;
|
||||
}
|
||||
|
||||
.loading {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.info {
|
||||
margin-top: 50px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.overlay {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.invalid-player p {
|
||||
font-size: large;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.player-stats-container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.player-country {
|
||||
display: flex;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
.player-country span {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.player-country p {
|
||||
margin: 0;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.player-country-icon {
|
||||
margin-top: -10px;
|
||||
border-radius: 30%;
|
||||
}
|
||||
|
||||
.player-avatar {
|
||||
border-radius: 5%;
|
||||
}
|
||||
|
||||
.player-stats {
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
margin-top: -12px;
|
||||
}
|
Reference in New Issue
Block a user