diff options
| author | lonkaars <l.leblansch@gmail.com> | 2021-04-17 17:25:11 +0200 | 
|---|---|---|
| committer | lonkaars <l.leblansch@gmail.com> | 2021-04-17 17:25:11 +0200 | 
| commit | 59459df904674bc3eaa95f4203113793c7c7fc9a (patch) | |
| tree | 5d676f16a8c68859b8bc6c44c4ff535e15d34349 | |
| parent | dd77d6bb276f6a70b36f69d11cde7f5c8995f5e1 (diff) | |
dprint fmt
| -rw-r--r-- | components/logo.tsx | 1 | ||||
| -rw-r--r-- | components/navbar.tsx | 22 | ||||
| -rw-r--r-- | components/recentGames.tsx | 12 | ||||
| -rw-r--r-- | components/ui.tsx | 6 | ||||
| -rw-r--r-- | pages/_app.tsx | 4 | ||||
| -rw-r--r-- | pages/index.tsx | 54 | 
6 files changed, 51 insertions, 48 deletions
diff --git a/components/logo.tsx b/components/logo.tsx index 9faf43f..df35370 100644 --- a/components/logo.tsx +++ b/components/logo.tsx @@ -11,4 +11,3 @@ export default function Logo() {  		</div>  	);  } - diff --git a/components/navbar.tsx b/components/navbar.tsx index 932669d..7f6e694 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -55,7 +55,7 @@ export function NavBar() {  	}, []);  	return <div -		className="navbar bg-800" +		className='navbar bg-800'  		style={{  			width: 48,  			height: '100%', @@ -73,28 +73,28 @@ export function NavBar() {  			zIndex: 2,  		}}  	> -		<div className="item"> +		<div className='item'>  			<Logo />  		</div> -		<a href='/' className="item"> +		<a href='/' className='item'>  			<Home />  		</a> -		<a href='/game' className="item"> +		<a href='/game' className='item'>  			<VideogameAssetIcon />  		</a> -		{false && <a href='/' className="item"> +		{false && <a href='/' className='item'>  			<ExtensionIcon />  		</a>} -		<a href='/search' className="item"> +		<a href='/search' className='item'>  			<SearchIcon />  		</a> -		<div className="bg-800 bottomArea"> +		<div className='bg-800 bottomArea'>  			{loggedIn && <a -				className="item" +				className='item'  				style={{  					overflow: 'visible', -					position: 'relative' +					position: 'relative',  				}}  			>  				<div @@ -120,12 +120,12 @@ export function NavBar() {  					rerender={getNotifications}  				/>  			</a>} -			<a href={loggedIn ? '/user' : '/login'} className="item"> +			<a href={loggedIn ? '/user' : '/login'} className='item'>  				{loggedIn  					? <AccountAvatar size={24} round />  					: <PersonIcon />}  			</a> -			{loggedIn && <a href='/settings' className="item"> +			{loggedIn && <a href='/settings' className='item'>  				<SettingsIcon />  			</a>}  		</div> diff --git a/components/recentGames.tsx b/components/recentGames.tsx index 65c819a..d619eeb 100644 --- a/components/recentGames.tsx +++ b/components/recentGames.tsx @@ -29,11 +29,13 @@ function GameOutcome(props: { game: gameInfo; }) {  		}[props.game.status]();  	})();  	return <td> -		<span className={"outcome " + { -					'w': 'win', -					'l': 'lose', -					'd': 'draw', -				}[props.game.outcome]}> +		<span +			className={'outcome ' + { +				'w': 'win', +				'l': 'lose', +				'd': 'draw', +			}[props.game.outcome]} +		>  			{gameStatus}  		</span>  	</td>; diff --git a/components/ui.tsx b/components/ui.tsx index db858a4..e2d19ad 100644 --- a/components/ui.tsx +++ b/components/ui.tsx @@ -17,7 +17,9 @@ export function Vierkant(props: {  }) {  	return <a  		href={props.href} -		className={["bg-800", "round-l", "pad-l", "vierkant", props.className, props.fullwidth && "fullwidth"].join(" ")} +		className={['bg-800', 'round-l', 'pad-l', 'vierkant', props.className, props.fullwidth && 'fullwidth'].join( +			' ', +		)}  		id={props.id}  		onClick={props.onclick}  	> @@ -38,7 +40,7 @@ export function Button(props: {  		onClick={props.onclick}  		href={props.href}  		id={props.id} -		className={"button pad-s round-t " + props.className} +		className={'button pad-s round-t ' + props.className}  	>  		{props.text  			? <span> diff --git a/pages/_app.tsx b/pages/_app.tsx index 46aa8d0..290e687 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -7,9 +7,9 @@ import '../styles/dark.css';  import '../styles/disk.css';  import '../styles/footer.css';  import '../styles/global.css'; -import '../styles/utility.css'; -import '../styles/ui.css';  import '../styles/navbar.css'; +import '../styles/ui.css'; +import '../styles/utility.css';  import '../styles/index.css'; diff --git a/pages/index.tsx b/pages/index.tsx index c3fe955..3d9da21 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -17,13 +17,13 @@ import { mdiRobotExcited } from '@mdi/js';  import Icon from '@mdi/react';  function LoginOrRegisterBox() { -	return <div className="inner"> -		<span className="registerMessage posabs h0 t0"> +	return <div className='inner'> +		<span className='registerMessage posabs h0 t0'>  			Log in of maak een account aan om toegang tot meer functies te krijgen  		</span> -		<div className="sidebyside posabs h0 b0"> -			<Button href='/register' text='Registreren' className="register" /> -			<Button href='/login' text='Inloggen' className="login" /> +		<div className='sidebyside posabs h0 b0'> +			<Button href='/register' text='Registreren' className='register' /> +			<Button href='/login' text='Inloggen' className='login' />  		</div>  	</div>;  } @@ -32,19 +32,19 @@ function AccountBox(props: {  	info: userInfo;  	sumGameInfo: userGameTotals;  }) { -	return <div className="inner profile"> -		<div className="picture posabs l0 t0"> +	return <div className='inner profile'> +		<div className='picture posabs l0 t0'>  			<AccountAvatar size={90} />  		</div> -		<div className="info posabs t0"> -			<h2 className="username truncate">{props.info?.username}</h2> -			<p className="score">Score: {props.info?.rating}</p> -			<p className="games posabs b0 l0"> -				<span className="outcome win">{props.sumGameInfo?.win} W</span> -				<span className="divider">/</span> -				<span className="outcome lose">{props.sumGameInfo?.lose} V</span> -				<span className="divider">/</span> -				<span className="outcome draw">{props.sumGameInfo?.draw} G</span> +		<div className='info posabs t0'> +			<h2 className='username truncate'>{props.info?.username}</h2> +			<p className='score'>Score: {props.info?.rating}</p> +			<p className='games posabs b0 l0'> +				<span className='outcome win'>{props.sumGameInfo?.win} W</span> +				<span className='divider'>/</span> +				<span className='outcome lose'>{props.sumGameInfo?.lose} V</span> +				<span className='divider'>/</span> +				<span className='outcome draw'>{props.sumGameInfo?.draw} G</span>  			</p>  		</div>  	</div>; @@ -92,22 +92,22 @@ export default function HomePage() {  		<NavBar />  		<CenteredPage width={802}>  			<PageTitle>4 op een rij</PageTitle> -			<div className="topbar"> -				<Vierkant className="gamemode" href='/game'> -					<VideogameAssetIcon className="icon" /> -					<span className="text">Nieuw spel</span> +			<div className='topbar'> +				<Vierkant className='gamemode' href='/game'> +					<VideogameAssetIcon className='icon' /> +					<span className='text'>Nieuw spel</span>  				</Vierkant>  				{false -					&& <Vierkant className="gamemode" href='/'> -						<ExtensionIcon className="icon" /> -						<span className="text">Puzzels</span> +					&& <Vierkant className='gamemode' href='/'> +						<ExtensionIcon className='icon' /> +						<span className='text'>Puzzels</span>  					</Vierkant>}  				{false -					&& <Vierkant className="gamemode" href='/'> -						<Icon path={mdiRobotExcited} className="icon" /> -						<span className="text">Tegen computer</span> +					&& <Vierkant className='gamemode' href='/'> +						<Icon path={mdiRobotExcited} className='icon' /> +						<span className='text'>Tegen computer</span>  					</Vierkant>} -				<Vierkant className="loginOrRegisterBox"> +				<Vierkant className='loginOrRegisterBox'>  					{loggedIn  						? <AccountBox info={userInfo} sumGameInfo={gameInfo?.totals} />  						: <LoginOrRegisterBox />}  |