manifold/web/components/nav/sidebar.tsx

225 lines
6.3 KiB
TypeScript
Raw Normal View History

2022-09-17 23:25:53 +00:00
import React from 'react'
import {
HomeIcon,
SearchIcon,
BookOpenIcon,
CashIcon,
HeartIcon,
ChatIcon,
2022-09-17 23:25:53 +00:00
ChartBarIcon,
} from '@heroicons/react/outline'
import clsx from 'clsx'
import Router, { useRouter } from 'next/router'
2022-09-17 23:25:53 +00:00
2022-08-24 17:58:32 +00:00
import { useUser } from 'web/hooks/use-user'
2022-07-17 20:17:31 +00:00
import { firebaseLogout, User } from 'web/lib/firebase/users'
import { ManifoldLogo } from './manifold-logo'
import { MenuButton, MenuItem } from './menu'
2022-05-30 00:33:41 +00:00
import { ProfileSummary } from './profile-menu'
import NotificationsIcon from 'web/components/notifications-icon'
2022-05-30 00:33:41 +00:00
import { IS_PRIVATE_MANIFOLD } from 'common/envs/constants'
import { CreateQuestionButton } from 'web/components/create-question-button'
2022-09-17 23:25:53 +00:00
import { withTracking } from 'web/lib/service/analytics'
2022-08-10 17:17:33 +00:00
import { buildArray } from 'common/util/array'
import TrophyIcon from 'web/lib/icons/trophy-icon'
2022-08-28 20:56:35 +00:00
import { SignInButton } from '../sign-in-button'
2022-09-17 23:25:53 +00:00
import { SidebarItem } from './sidebar-item'
import { MoreButton } from './more-button'
2022-09-22 16:12:53 +00:00
import { Row } from '../layout/row'
import { Spacer } from '../layout/spacer'
2022-09-17 23:25:53 +00:00
2022-09-22 16:12:53 +00:00
export default function Sidebar(props: {
className?: string
logoSubheading?: string
}) {
const { className, logoSubheading } = props
2022-09-17 23:25:53 +00:00
const router = useRouter()
const currentPage = router.pathname
const user = useUser()
const desktopNavOptions = !user
? signedOutDesktopNavigation
: getDesktopNavigation()
const mobileNavOptions = !user
? signedOutMobileNavigation
: signedInMobileNavigation
const createMarketButton = user && !user.isBannedFromPosting && (
<CreateQuestionButton />
)
return (
<nav
aria-label="Sidebar"
className={clsx('flex max-h-[100vh] flex-col', className)}
>
2022-09-22 16:12:53 +00:00
<ManifoldLogo className="pt-6" twoLine />
{logoSubheading && (
<Row className="pl-2 text-2xl text-indigo-700 sm:mt-3">
{logoSubheading}
</Row>
)}
<Spacer h={6} />
2022-09-17 23:25:53 +00:00
{user === undefined && <div className="h-[178px]" />}
{user === null && <SignInButton className="mb-4" />}
2022-09-17 23:25:53 +00:00
{user && <ProfileSummary user={user} />}
{/* Mobile navigation */}
<div className="flex min-h-0 shrink flex-col gap-1 lg:hidden">
{mobileNavOptions.map((item) => (
<SidebarItem key={item.href} item={item} currentPage={currentPage} />
))}
{user && (
<MenuButton
menuItems={getMoreMobileNav()}
buttonContent={<MoreButton />}
/>
)}
{createMarketButton}
</div>
{/* Desktop navigation */}
<div className="hidden min-h-0 shrink flex-col items-stretch gap-1 lg:flex ">
{desktopNavOptions.map((item) => (
<SidebarItem key={item.href} item={item} currentPage={currentPage} />
))}
<MenuButton
menuItems={getMoreDesktopNavigation(user)}
buttonContent={<MoreButton />}
/>
{createMarketButton}
</div>
</nav>
)
}
const logout = async () => {
// log out, and then reload the page, in case SSR wants to boot them out
// of whatever logged-in-only area of the site they might be in
await withTracking(firebaseLogout, 'sign out')()
await Router.replace(Router.asPath)
}
2022-09-17 23:25:53 +00:00
function getDesktopNavigation() {
return [
{ name: 'Home', href: '/home', icon: HomeIcon },
2022-09-16 21:46:24 +00:00
{ name: 'Search', href: '/search', icon: SearchIcon },
{
name: 'Notifications',
href: `/notifications`,
icon: NotificationsIcon,
},
2022-06-14 09:08:55 +00:00
...(IS_PRIVATE_MANIFOLD
? []
: [
{ name: 'Get M$', href: '/add-funds', icon: CashIcon },
{ name: 'Tournaments', href: '/tournaments', icon: TrophyIcon },
]),
]
}
2022-09-17 23:25:53 +00:00
function getMoreDesktopNavigation(user?: User | null) {
2022-05-30 00:33:41 +00:00
if (IS_PRIVATE_MANIFOLD) {
2022-08-22 05:13:42 +00:00
return [
2022-09-17 23:25:53 +00:00
{ name: 'Leaderboards', href: '/leaderboards', icon: ChartBarIcon },
2022-08-22 05:13:42 +00:00
{
name: 'Sign out',
href: '#',
onClick: logout,
},
]
2022-05-30 00:33:41 +00:00
}
if (!user) {
2022-08-29 03:59:14 +00:00
// Signed out "More"
2022-08-10 17:17:33 +00:00
return buildArray(
2022-08-29 05:00:58 +00:00
{ name: 'Leaderboards', href: '/leaderboards' },
{ name: 'Groups', href: '/groups' },
2022-10-02 19:49:08 +00:00
{ name: 'Tournaments', href: '/tournaments' },
{ name: 'Charity', href: '/charity' },
{ name: 'Labs', href: '/labs' },
{ name: 'Blog', href: 'https://news.manifold.markets' },
{ name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh' },
{ name: 'Twitter', href: 'https://twitter.com/ManifoldMarkets' }
2022-08-10 17:17:33 +00:00
)
Challenge Bets (#679) * Challenge bets * Store avatar url * Fix before and after probs * Check balance before creation * Calculate winning shares * pretty * Change winning value * Set shares to equal each other * Fix share challenge link * pretty * remove lib refs * Probability of bet is set to market * Remove peer pill * Cleanup * Button on contract page * don't show challenge if not binary or if resolved * challenge button (WIP) * fix accept challenge: don't change pool/probability * Opengraph preview [WIP] * elim lib * Edit og card props * Change challenge text * New card gen attempt * Get challenge on server * challenge button styling * Use env domain * Remove other window ref * Use challenge creator as avatar * Remove user name * Remove s from property, replace prob with outcome * challenge form * share text * Add in challenge parts to template and url * Challenge url params optional * Add challenge params to parse request * Parse please * Don't remove prob * Challenge card styling * Challenge card styling * Challenge card styling * Challenge card styling * Challenge card styling * Challenge card styling * Challenge card styling * Challenge card styling * Add to readme about how to dev og-image * Add emojis * button: gradient background, 2xl size * beautify accept bet screen * update question button * Add separate challenge template * Accepted challenge sharing card, fix accept bet call * accept challenge button * challenge winner page * create challenge screen * Your outcome/cost=> acceptorOutcome/cost * New create challenge panel * Fix main merge * Add challenge slug to bet and filter by it * Center title * Add helper text * Add FAQ section * Lint * Columnize the user areas in preview link too * Absolutely position * Spacing * Orientation * Restyle challenges list, cache contract name * Make copying easy on mobile * Link spacing * Fix spacing * qr codes! * put your challenges first * eslint * Changes to contract buttons and create challenge modal * Change titles around for current bet * Add back in contract title after winning * Cleanup * Add challenge enabled flag * Spacing of switch button * Put sharing qr code in modal Co-authored-by: mantikoros <sgrugett@gmail.com>
2022-08-04 21:27:02 +00:00
}
2022-08-29 03:59:14 +00:00
// Signed in "More"
2022-08-10 17:17:33 +00:00
return buildArray(
2022-09-18 00:15:26 +00:00
{ name: 'Leaderboards', href: '/leaderboards' },
2022-08-29 05:00:58 +00:00
{ name: 'Groups', href: '/groups' },
2022-10-09 23:09:21 +00:00
{ name: 'Refer a friend', href: '/referrals' },
2022-10-02 19:49:08 +00:00
{ name: 'Charity', href: '/charity' },
{ name: 'Labs', href: '/labs' },
{ name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh' },
{ name: 'Help & About', href: 'https://help.manifold.markets/' },
{
name: 'Sign out',
href: '#',
onClick: logout,
}
2022-08-10 17:17:33 +00:00
)
2022-05-30 00:33:41 +00:00
}
2022-09-17 23:25:53 +00:00
const signedOutDesktopNavigation = [
{ name: 'Home', href: '/', icon: HomeIcon },
2022-09-16 21:46:24 +00:00
{ name: 'Explore', href: '/search', icon: SearchIcon },
{
name: 'Help & About',
href: 'https://help.manifold.markets/',
icon: BookOpenIcon,
},
]
const signedOutMobileNavigation = [
{
name: 'Help & About',
href: 'https://help.manifold.markets/',
icon: BookOpenIcon,
},
{ name: 'Charity', href: '/charity', icon: HeartIcon },
{ name: 'Tournaments', href: '/tournaments', icon: TrophyIcon },
2022-09-17 23:25:53 +00:00
{ name: 'Leaderboards', href: '/leaderboards', icon: ChartBarIcon },
{ name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh', icon: ChatIcon },
]
const signedInMobileNavigation = [
2022-09-17 23:25:53 +00:00
{ name: 'Search', href: '/search', icon: SearchIcon },
{ name: 'Tournaments', href: '/tournaments', icon: TrophyIcon },
2022-09-17 23:25:53 +00:00
{ name: 'Leaderboards', href: '/leaderboards', icon: ChartBarIcon },
2022-06-14 09:08:55 +00:00
...(IS_PRIVATE_MANIFOLD
? []
: [{ name: 'Get M$', href: '/add-funds', icon: CashIcon }]),
{
name: 'Help & About',
href: 'https://help.manifold.markets/',
icon: BookOpenIcon,
},
]
2022-06-28 16:18:55 +00:00
function getMoreMobileNav() {
2022-08-10 17:17:33 +00:00
const signOut = {
name: 'Sign out',
href: '#',
onClick: logout,
}
if (IS_PRIVATE_MANIFOLD) return [signOut]
return buildArray<MenuItem>(
2022-10-02 19:49:08 +00:00
{ name: 'Groups', href: '/groups' },
2022-10-09 23:09:21 +00:00
{ name: 'Refer a friend', href: '/referrals' },
2022-10-02 19:49:08 +00:00
{ name: 'Charity', href: '/charity' },
{ name: 'Labs', href: '/labs' },
{ name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh' },
2022-08-10 17:17:33 +00:00
signOut
)
2022-06-28 16:18:55 +00:00
}