manifold/web/pages/[username]/index.tsx

34 lines
977 B
TypeScript
Raw Normal View History

import { useRouter } from 'next/router'
import React, { useEffect, useState } from 'react'
2021-12-16 21:17:32 +00:00
import Error from 'next/error'
import { getUserByUsername, User } from '../../lib/firebase/users'
2021-12-16 02:11:29 +00:00
import { UserPage } from '../../components/user-page'
2021-12-16 21:17:32 +00:00
import { useUser } from '../../hooks/use-user'
export default function UserProfile() {
const router = useRouter()
2021-12-16 02:26:38 +00:00
const atUsername = router.query.username as string | undefined
const username = atUsername?.substring(1) || '' // Remove the initial @
2021-12-16 21:17:32 +00:00
const [user, setUser] = useState<User | null | 'loading'>('loading')
useEffect(() => {
if (username) {
getUserByUsername(username).then(setUser)
}
}, [username])
2021-12-16 21:17:32 +00:00
const currentUser = useUser()
const errorMessage = `Who is this "${username}" you speak of..`
if (user === 'loading') return <></>
return user ? (
2021-12-16 21:17:32 +00:00
<UserPage user={user} currentUser={currentUser || undefined} />
) : (
<Error statusCode={404} title={errorMessage} />
)
}