summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/src/components/Layout.tsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-29 00:20:29 -0400
committerrealtradam <[email protected]>2024-06-29 00:20:29 -0400
commite317bbe75a46ef3bf853cf85584bcd22ebaacf23 (patch)
tree6fbc1d6a210c5eb342ff0c90f46cb57652b8e373 /react-frontend/src/components/Layout.tsx
parent101863b2f3c9cce50d1c15bfa5e4dc6971409b35 (diff)
downloadgameHolster-e317bbe75a46ef3bf853cf85584bcd22ebaacf23.tar.gz
gameHolster-e317bbe75a46ef3bf853cf85584bcd22ebaacf23.zip
add games page + rails auth cleanup
Diffstat (limited to 'react-frontend/src/components/Layout.tsx')
-rw-r--r--react-frontend/src/components/Layout.tsx23
1 files changed, 16 insertions, 7 deletions
diff --git a/react-frontend/src/components/Layout.tsx b/react-frontend/src/components/Layout.tsx
index db31b55..274e579 100644
--- a/react-frontend/src/components/Layout.tsx
+++ b/react-frontend/src/components/Layout.tsx
@@ -1,5 +1,5 @@
import { Dispatch } from 'react';
-import { Outlet, useNavigate } from "react-router-dom";
+import { Outlet, Link, useNavigate } from "react-router-dom";
import { IconButton, Button, ButtonGroup } from 'rsuite';
import { Icon } from '@rsuite/icons';
import { FaUser } from "react-icons/fa6";
@@ -28,22 +28,31 @@ export default function Layout(prop : { userData: userData, setUserData : Dispat
const loggedout_element = <IconButton onClick={loginLink} appearance="primary" color="green" icon={<Icon as={FaUser}/>}>Log In</IconButton>;
- const loggedin_element = <ButtonGroup className="flex"><Button appearance="ghost" style={{width:"100%"}}>{prop.userData.name}</Button><Button onClick={logoutLink} appearance="subtle" style={{paddingLeft:"1.4em", paddingRight:"1.4em"}}>Log Out</Button></ButtonGroup>;
+ const loggedin_element = <ButtonGroup className="flex"><Button appearance="ghost" color="red" style={{width:"100%"}}>{prop.userData.name}</Button><Button onClick={logoutLink} appearance="subtle" style={{paddingLeft:"1.4em", paddingRight:"1.4em"}}>Log Out</Button></ButtonGroup>;
console.log(prop);
return(
<>
<div className="w-screen h-screen flex border-none">
- <div className="flex flex-col h-screen overflow-y-auto overflow-x-hidden w-72 bg-stone-100">
+ <div className="flex flex-col h-screen overflow-y-auto overflow-x-hidden w-72 shrink-0 bg-stone-100">
<div className="flex flex-col bg-stone-800">
- <div className="m-4 mb-0 flex flex-col flex-grow">
- { prop.userData.name ? loggedin_element : loggedout_element }
+ <div className="m-4 mb-0 flex flex-col flex-grow">
+ { prop.userData.name ? loggedin_element : loggedout_element }
+ </div>
</div>
+ <Link to="/" role="button">
+ <div className="border-green-500 p-2 text-red-700 bg-stone-800">
+ <Icon as={GiCowboyHolster} style={{width:"100%", height:"100%"}}/>
</div>
- <div className="border-green-500 p-2 mb-2 text-red-700 bg-stone-800 rounded-b-xl"><Icon as={GiCowboyHolster} style={{width:"100%", height:"100%"}}/></div>
+ <div className="border-green-500 p-2 mb-2 text-white font-title text-2xl text-center bg-stone-800 rounded-b-xl">
+ Game Holster
+ </div>
+ </Link>
<div className="flex flex-col px-4 gap-2">
- <IconButton appearance="subtle" size="lg" icon={<Icon as={FaGamepad}/>}>Browse Games</IconButton>
+ <Link to="/games" role="button">
+ <IconButton style={{width: '100%'}} appearance="subtle" size="lg" icon={<Icon as={FaGamepad}/>}>Browse Games</IconButton>
+ </Link>
<IconButton appearance="subtle" size="lg" icon={<Icon as={GrAdd}/>}>Upload Game</IconButton>
</div>
</div>