Fix routing for profiles

This commit is contained in:
Justin Edmund 2022-01-31 23:39:32 -08:00
parent 09c543a089
commit e45aa5cb24

120
pages/[username].tsx Normal file
View file

@ -0,0 +1,120 @@
import React, { useEffect, useState } from 'react'
import { useRouter } from 'next/router'
import api from '~utils/api'
import GridRep from '~components/GridRep'
import GridRepCollection from '~components/GridRepCollection'
interface User {
id: string
username: string
granblueId: number
}
interface Party {
id: string
shortcode: string
weapons: GridWeapon[]
}
const ProfileRoute: React.FC = () => {
const router = useRouter()
const { username } = router.query
const [found, setFound] = useState(false)
const [loading, setLoading] = useState(true)
const [parties, setParties] = useState<Party[]>([])
const [user, setUser] = useState<User>({
id: '',
username: '',
granblueId: 0
})
useEffect(() => {
console.log(`Fetching profile for ${username}...`)
fetchProfile(username as string)
}, [username])
async function fetchProfile(username: string) {
api.endpoints.users.getOne({ id: username })
.then(response => {
setUser({
id: response.data.user.id,
username: response.data.user.username,
granblueId: response.data.user.granblue_id
})
setParties(response.data.user.parties)
})
.then(() => {
setFound(true)
setLoading(false)
})
.catch(error => {
if (error.response != null) {
if (error.response.status == 404) {
setFound(false)
}
} else {
console.error(error)
}
})
}
function render() {
const content = (parties && parties.length > 0) ? renderGrids() : renderNoGrids()
return (
<div>
<h1>{user.username}</h1>
{content}
</div>
)
}
function goTo(shortcode: string) {
router.push(`/p/${shortcode}`)
}
function renderGrids() {
return (
<GridRepCollection>
{
parties.map((party, i) => {
return <GridRep
shortcode={party.shortcode}
grid={party.weapons}
key={`party-${i}`}
onClick={goTo}
/>
})
}
</GridRepCollection>
)
}
function renderNoGrids() {
return (
<div id="NotFound">
<h2>This user has no grids.</h2>
</div>
)
}
function renderNotFound() {
return (
<div id="NotFound">
<h2>That user doesn't exist.</h2>
</div>
)
}
if (!found && !loading) {
return renderNotFound()
} else if (found && !loading) {
return render()
} else {
return (<div />)
}
}
export default ProfileRoute