2021-12-16 02:11:29 +00:00
|
|
|
import { firebaseLogout, User } from '../lib/firebase/users'
|
|
|
|
import { Header } from './header'
|
|
|
|
import { ContractsList } from './contracts-list'
|
|
|
|
import { Title } from './title'
|
|
|
|
import { Row } from './layout/row'
|
|
|
|
import { formatMoney } from '../lib/util/format'
|
|
|
|
import Link from 'next/link'
|
|
|
|
import clsx from 'clsx'
|
2021-12-16 21:17:32 +00:00
|
|
|
import { SEO } from './SEO'
|
2021-12-16 02:11:29 +00:00
|
|
|
|
2021-12-18 07:27:29 +00:00
|
|
|
export function UserLink(props: { username: string; className?: string }) {
|
|
|
|
const { username, className } = props
|
2021-12-16 02:11:29 +00:00
|
|
|
|
|
|
|
return (
|
2021-12-17 18:55:18 +00:00
|
|
|
<Link href={`/${username}`}>
|
2021-12-16 02:11:29 +00:00
|
|
|
<a
|
|
|
|
className={clsx(
|
|
|
|
'hover:underline hover:decoration-indigo-400 hover:decoration-2',
|
|
|
|
className
|
|
|
|
)}
|
2021-12-16 21:28:56 +00:00
|
|
|
onClick={(e) => e.stopPropagation()}
|
2021-12-16 02:11:29 +00:00
|
|
|
>
|
|
|
|
@{username}
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-16 21:17:32 +00:00
|
|
|
function UserCard(props: { user: User; showPrivateInfo?: boolean }) {
|
|
|
|
const { user, showPrivateInfo } = props
|
2021-12-16 02:11:29 +00:00
|
|
|
return (
|
|
|
|
<Row className="card glass lg:card-side shadow-xl hover:shadow-xl text-neutral-content bg-green-600 hover:bg-green-600 transition-all max-w-sm mx-auto my-12">
|
|
|
|
<div className="p-4">
|
|
|
|
{user?.avatarUrl && (
|
|
|
|
<img
|
|
|
|
src={user.avatarUrl}
|
|
|
|
className="rounded-lg shadow-lg"
|
|
|
|
width={96}
|
|
|
|
height={96}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<div className="max-w-md card-body">
|
2021-12-16 21:17:32 +00:00
|
|
|
<div className="card-title font-major-mono">{user.name}</div>
|
|
|
|
|
|
|
|
{showPrivateInfo && (
|
|
|
|
<>
|
|
|
|
<p>{user?.email}</p>
|
|
|
|
<p>{formatMoney(user?.balance)}</p>
|
|
|
|
<div className="card-actions">
|
|
|
|
<button
|
|
|
|
className="btn glass rounded-full hover:bg-green-500"
|
|
|
|
onClick={firebaseLogout}
|
|
|
|
>
|
|
|
|
Sign Out
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)}
|
2021-12-16 02:11:29 +00:00
|
|
|
</div>
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-16 21:17:32 +00:00
|
|
|
export function UserPage(props: { user: User; currentUser?: User }) {
|
|
|
|
const { user, currentUser } = props
|
|
|
|
|
|
|
|
const isCurrentUser = user.id === currentUser?.id
|
|
|
|
|
|
|
|
const possesive = isCurrentUser ? 'Your ' : `${user.username}'s `
|
|
|
|
|
2021-12-16 02:11:29 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2021-12-16 21:17:32 +00:00
|
|
|
<SEO
|
|
|
|
title={possesive + 'markets'}
|
|
|
|
description={possesive + 'markets'}
|
|
|
|
url={`/@${user.username}`}
|
|
|
|
/>
|
|
|
|
|
2021-12-16 02:11:29 +00:00
|
|
|
<Header />
|
2021-12-16 21:17:32 +00:00
|
|
|
|
2021-12-16 02:11:29 +00:00
|
|
|
<div className="max-w-4xl pt-8 pb-0 sm:pb-8 mx-auto">
|
|
|
|
<div>
|
2021-12-16 21:17:32 +00:00
|
|
|
<UserCard user={user} showPrivateInfo={isCurrentUser} />
|
|
|
|
|
|
|
|
<Title text={possesive + 'markets'} />
|
2021-12-16 02:11:29 +00:00
|
|
|
|
|
|
|
<ContractsList creator={user} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|