641 lines
18 KiB
TypeScript
641 lines
18 KiB
TypeScript
import React, { useState } from 'react'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import { debounce, sortBy, take } from 'lodash'
|
|
import { SearchIcon } from '@heroicons/react/outline'
|
|
import { toast } from 'react-hot-toast'
|
|
|
|
import { Group, GROUP_CHAT_SLUG } from 'common/group'
|
|
import { Page } from 'web/components/page'
|
|
import { listAllBets } from 'web/lib/firebase/bets'
|
|
import { Contract, listContractsByGroupSlug } from 'web/lib/firebase/contracts'
|
|
import {
|
|
addContractToGroup,
|
|
getGroupBySlug,
|
|
groupPath,
|
|
joinGroup,
|
|
updateGroup,
|
|
} from 'web/lib/firebase/groups'
|
|
import { Row } from 'web/components/layout/row'
|
|
import { UserLink } from 'web/components/user-page'
|
|
import { firebaseLogin, getUser, User } from 'web/lib/firebase/users'
|
|
import { Col } from 'web/components/layout/col'
|
|
import { useUser } from 'web/hooks/use-user'
|
|
import { listMembers, useGroup, useMembers } from 'web/hooks/use-group'
|
|
import { scoreCreators, scoreTraders } from 'common/scoring'
|
|
import { Leaderboard } from 'web/components/leaderboard'
|
|
import { formatMoney } from 'common/util/format'
|
|
import { EditGroupButton } from 'web/components/groups/edit-group-button'
|
|
import Custom404 from '../../404'
|
|
import { SEO } from 'web/components/SEO'
|
|
import { Linkify } from 'web/components/linkify'
|
|
import { fromPropz, usePropz } from 'web/hooks/use-propz'
|
|
import { Tabs } from 'web/components/layout/tabs'
|
|
import { LoadingIndicator } from 'web/components/loading-indicator'
|
|
import { Modal } from 'web/components/layout/modal'
|
|
import { ChoicesToggleGroup } from 'web/components/choices-toggle-group'
|
|
import { ContractSearch } from 'web/components/contract-search'
|
|
import { FollowList } from 'web/components/follow-list'
|
|
import { JoinOrLeaveGroupButton } from 'web/components/groups/groups-button'
|
|
import { searchInAny } from 'common/util/parse'
|
|
import { CopyLinkButton } from 'web/components/copy-link-button'
|
|
import { ENV_CONFIG } from 'common/envs/constants'
|
|
import { useSaveReferral } from 'web/hooks/use-save-referral'
|
|
import { Button } from 'web/components/button'
|
|
import { listAllCommentsOnGroup } from 'web/lib/firebase/comments'
|
|
import { GroupComment } from 'common/comment'
|
|
import { REFERRAL_AMOUNT } from 'common/economy'
|
|
|
|
export const getStaticProps = fromPropz(getStaticPropz)
|
|
export async function getStaticPropz(props: { params: { slugs: string[] } }) {
|
|
const { slugs } = props.params
|
|
|
|
const group = await getGroupBySlug(slugs[0])
|
|
const members = group && (await listMembers(group))
|
|
const creatorPromise = group ? getUser(group.creatorId) : null
|
|
|
|
const contracts =
|
|
(group && (await listContractsByGroupSlug(group.slug))) ?? []
|
|
|
|
const bets = await Promise.all(
|
|
contracts.map((contract: Contract) => listAllBets(contract.id))
|
|
)
|
|
const messages = group && (await listAllCommentsOnGroup(group.id))
|
|
|
|
const creatorScores = scoreCreators(contracts)
|
|
const traderScores = scoreTraders(contracts, bets)
|
|
const [topCreators, topTraders] =
|
|
(members && [
|
|
toTopUsers(creatorScores, members),
|
|
toTopUsers(traderScores, members),
|
|
]) ??
|
|
[]
|
|
|
|
const creator = await creatorPromise
|
|
|
|
return {
|
|
props: {
|
|
group,
|
|
members,
|
|
creator,
|
|
traderScores,
|
|
topTraders,
|
|
creatorScores,
|
|
topCreators,
|
|
messages,
|
|
},
|
|
|
|
revalidate: 60, // regenerate after a minute
|
|
}
|
|
}
|
|
|
|
function toTopUsers(userScores: { [userId: string]: number }, users: User[]) {
|
|
const topUserPairs = take(
|
|
sortBy(Object.entries(userScores), ([_, score]) => -1 * score),
|
|
10
|
|
).filter(([_, score]) => score >= 0.5)
|
|
|
|
const topUsers = topUserPairs.map(
|
|
([userId]) => users.filter((user) => user.id === userId)[0]
|
|
)
|
|
return topUsers.filter((user) => user)
|
|
}
|
|
|
|
export async function getStaticPaths() {
|
|
return { paths: [], fallback: 'blocking' }
|
|
}
|
|
const groupSubpages = [
|
|
undefined,
|
|
GROUP_CHAT_SLUG,
|
|
'markets',
|
|
'leaderboards',
|
|
'about',
|
|
] as const
|
|
|
|
export default function GroupPage(props: {
|
|
group: Group | null
|
|
members: User[]
|
|
creator: User
|
|
traderScores: { [userId: string]: number }
|
|
topTraders: User[]
|
|
creatorScores: { [userId: string]: number }
|
|
topCreators: User[]
|
|
messages: GroupComment[]
|
|
}) {
|
|
props = usePropz(props, getStaticPropz) ?? {
|
|
group: null,
|
|
members: [],
|
|
creator: null,
|
|
traderScores: {},
|
|
topTraders: [],
|
|
creatorScores: {},
|
|
topCreators: [],
|
|
messages: [],
|
|
}
|
|
const {
|
|
creator,
|
|
members,
|
|
traderScores,
|
|
topTraders,
|
|
creatorScores,
|
|
topCreators,
|
|
} = props
|
|
|
|
const router = useRouter()
|
|
const { slugs } = router.query as { slugs: string[] }
|
|
const page = slugs?.[1] as typeof groupSubpages[number]
|
|
|
|
const group = useGroup(props.group?.id) ?? props.group
|
|
|
|
const user = useUser()
|
|
|
|
useSaveReferral(user, {
|
|
defaultReferrerUsername: creator.username,
|
|
groupId: group?.id,
|
|
})
|
|
|
|
if (group === null || !groupSubpages.includes(page) || slugs[2]) {
|
|
return <Custom404 />
|
|
}
|
|
const { memberIds } = group
|
|
const isCreator = user && group && user.id === group.creatorId
|
|
const isMember = user && memberIds.includes(user.id)
|
|
|
|
const leaderboard = (
|
|
<Col>
|
|
<GroupLeaderboards
|
|
traderScores={traderScores}
|
|
creatorScores={creatorScores}
|
|
topTraders={topTraders}
|
|
topCreators={topCreators}
|
|
members={members}
|
|
user={user}
|
|
/>
|
|
</Col>
|
|
)
|
|
|
|
const aboutTab = (
|
|
<Col>
|
|
<GroupOverview
|
|
group={group}
|
|
creator={creator}
|
|
isCreator={!!isCreator}
|
|
user={user}
|
|
members={members}
|
|
/>
|
|
</Col>
|
|
)
|
|
|
|
const questionsTab = (
|
|
<ContractSearch
|
|
user={user}
|
|
defaultSort={'newest'}
|
|
defaultFilter={'open'}
|
|
additionalFilter={{ groupSlug: group.slug }}
|
|
/>
|
|
)
|
|
|
|
const tabs = [
|
|
{
|
|
title: 'Markets',
|
|
content: questionsTab,
|
|
href: groupPath(group.slug, 'markets'),
|
|
},
|
|
{
|
|
title: 'Leaderboards',
|
|
content: leaderboard,
|
|
href: groupPath(group.slug, 'leaderboards'),
|
|
},
|
|
{
|
|
title: 'About',
|
|
content: aboutTab,
|
|
href: groupPath(group.slug, 'about'),
|
|
},
|
|
]
|
|
|
|
const tabIndex = tabs
|
|
.map((t) => t.title.toLowerCase())
|
|
.indexOf(page ?? 'markets')
|
|
|
|
return (
|
|
<Page>
|
|
<SEO
|
|
title={group.name}
|
|
description={`Created by ${creator.name}. ${group.about}`}
|
|
url={groupPath(group.slug)}
|
|
/>
|
|
<Col className="relative px-3">
|
|
<Row className={'items-center justify-between gap-4'}>
|
|
<div className={'sm:mb-1'}>
|
|
<div
|
|
className={'line-clamp-1 my-2 text-2xl text-indigo-700 sm:my-3'}
|
|
>
|
|
{group.name}
|
|
</div>
|
|
<div className={'hidden sm:block'}>
|
|
<Linkify text={group.about} />
|
|
</div>
|
|
</div>
|
|
<div className="mt-2">
|
|
<JoinOrAddQuestionsButtons
|
|
group={group}
|
|
user={user}
|
|
isMember={!!isMember}
|
|
/>
|
|
</div>
|
|
</Row>
|
|
</Col>
|
|
<Tabs
|
|
currentPageForAnalytics={groupPath(group.slug)}
|
|
className={'mx-2 mb-0 sm:mb-2'}
|
|
defaultIndex={tabIndex > 0 ? tabIndex : 0}
|
|
tabs={tabs}
|
|
/>
|
|
</Page>
|
|
)
|
|
}
|
|
|
|
function JoinOrAddQuestionsButtons(props: {
|
|
group: Group
|
|
user: User | null | undefined
|
|
isMember: boolean
|
|
}) {
|
|
const { group, user, isMember } = props
|
|
return user && isMember ? (
|
|
<Row className={'mt-0 justify-end'}>
|
|
<AddContractButton group={group} user={user} />
|
|
</Row>
|
|
) : group.anyoneCanJoin ? (
|
|
<JoinGroupButton group={group} user={user} />
|
|
) : null
|
|
}
|
|
|
|
function GroupOverview(props: {
|
|
group: Group
|
|
creator: User
|
|
user: User | null | undefined
|
|
isCreator: boolean
|
|
members: User[]
|
|
}) {
|
|
const { group, creator, isCreator, user, members } = props
|
|
const anyoneCanJoinChoices: { [key: string]: string } = {
|
|
Closed: 'false',
|
|
Open: 'true',
|
|
}
|
|
const [anyoneCanJoin, setAnyoneCanJoin] = useState(group.anyoneCanJoin)
|
|
function updateAnyoneCanJoin(newVal: boolean) {
|
|
if (group.anyoneCanJoin == newVal || !isCreator) return
|
|
setAnyoneCanJoin(newVal)
|
|
toast.promise(updateGroup(group, { ...group, anyoneCanJoin: newVal }), {
|
|
loading: 'Updating group...',
|
|
success: 'Updated group!',
|
|
error: "Couldn't update group",
|
|
})
|
|
}
|
|
|
|
const postFix = user ? '?referrer=' + user.username : ''
|
|
const shareUrl = `https://${ENV_CONFIG.domain}${groupPath(
|
|
group.slug
|
|
)}${postFix}`
|
|
|
|
return (
|
|
<>
|
|
<Col className="gap-2 rounded-b bg-white p-2">
|
|
<Row className={'flex-wrap justify-between'}>
|
|
<div className={'inline-flex items-center'}>
|
|
<div className="mr-1 text-gray-500">Created by</div>
|
|
<UserLink
|
|
className="text-neutral"
|
|
name={creator.name}
|
|
username={creator.username}
|
|
/>
|
|
</div>
|
|
{isCreator ? (
|
|
<EditGroupButton className={'ml-1'} group={group} />
|
|
) : (
|
|
user &&
|
|
group.memberIds.includes(user?.id) && (
|
|
<Row>
|
|
<JoinOrLeaveGroupButton group={group} />
|
|
</Row>
|
|
)
|
|
)}
|
|
</Row>
|
|
<div className={'block sm:hidden'}>
|
|
<Linkify text={group.about} />
|
|
</div>
|
|
<Row className={'items-center gap-1'}>
|
|
<span className={'text-gray-500'}>Membership</span>
|
|
{user && user.id === creator.id ? (
|
|
<ChoicesToggleGroup
|
|
currentChoice={anyoneCanJoin.toString()}
|
|
choicesMap={anyoneCanJoinChoices}
|
|
setChoice={(choice) =>
|
|
updateAnyoneCanJoin(choice.toString() === 'true')
|
|
}
|
|
toggleClassName={'h-10'}
|
|
className={'ml-2'}
|
|
/>
|
|
) : (
|
|
<span className={'text-gray-700'}>
|
|
{anyoneCanJoin ? 'Open' : 'Closed'}
|
|
</span>
|
|
)}
|
|
</Row>
|
|
|
|
{anyoneCanJoin && user && (
|
|
<Col className="my-4 px-2">
|
|
<div className="text-lg">Invite</div>
|
|
<div className={'mb-2 text-gray-500'}>
|
|
Invite a friend to this group and get M${REFERRAL_AMOUNT} if they
|
|
sign up!
|
|
</div>
|
|
|
|
<CopyLinkButton
|
|
url={shareUrl}
|
|
tracking="copy group share link"
|
|
buttonClassName="btn-md rounded-l-none"
|
|
toastClassName={'-left-28 mt-1'}
|
|
/>
|
|
</Col>
|
|
)}
|
|
|
|
<Col className={'mt-2'}>
|
|
<div className="mb-2 text-lg">Members</div>
|
|
<GroupMemberSearch members={members} group={group} />
|
|
</Col>
|
|
</Col>
|
|
</>
|
|
)
|
|
}
|
|
|
|
function SearchBar(props: { setQuery: (query: string) => void }) {
|
|
const { setQuery } = props
|
|
const debouncedQuery = debounce(setQuery, 50)
|
|
return (
|
|
<div className={'relative'}>
|
|
<SearchIcon className={'absolute left-5 top-3.5 h-5 w-5 text-gray-500'} />
|
|
<input
|
|
type="text"
|
|
onChange={(e) => debouncedQuery(e.target.value)}
|
|
placeholder="Find a member"
|
|
className="input input-bordered mb-4 w-full pl-12"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function GroupMemberSearch(props: { members: User[]; group: Group }) {
|
|
const [query, setQuery] = useState('')
|
|
const { group } = props
|
|
let { members } = props
|
|
|
|
// Use static members on load, but also listen to member changes:
|
|
const listenToMembers = useMembers(group)
|
|
if (listenToMembers) {
|
|
members = listenToMembers
|
|
}
|
|
|
|
// TODO use find-active-contracts to sort by?
|
|
const matches = sortBy(members, [(member) => member.name]).filter((m) =>
|
|
searchInAny(query, m.name, m.username)
|
|
)
|
|
const matchLimit = 25
|
|
|
|
return (
|
|
<div>
|
|
<SearchBar setQuery={setQuery} />
|
|
<Col className={'gap-2'}>
|
|
{matches.length > 0 && (
|
|
<FollowList userIds={matches.slice(0, matchLimit).map((m) => m.id)} />
|
|
)}
|
|
{matches.length > 25 && (
|
|
<div className={'text-center'}>
|
|
And {matches.length - matchLimit} more...
|
|
</div>
|
|
)}
|
|
</Col>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function SortedLeaderboard(props: {
|
|
users: User[]
|
|
scoreFunction: (user: User) => number
|
|
title: string
|
|
header: string
|
|
maxToShow?: number
|
|
}) {
|
|
const { users, scoreFunction, title, header, maxToShow } = props
|
|
const sortedUsers = users.sort((a, b) => scoreFunction(b) - scoreFunction(a))
|
|
return (
|
|
<Leaderboard
|
|
className="max-w-xl"
|
|
users={sortedUsers}
|
|
title={title}
|
|
columns={[
|
|
{ header, renderCell: (user) => formatMoney(scoreFunction(user)) },
|
|
]}
|
|
maxToShow={maxToShow}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function GroupLeaderboards(props: {
|
|
traderScores: { [userId: string]: number }
|
|
creatorScores: { [userId: string]: number }
|
|
topTraders: User[]
|
|
topCreators: User[]
|
|
members: User[]
|
|
user: User | null | undefined
|
|
}) {
|
|
const { traderScores, creatorScores, members, topTraders, topCreators } =
|
|
props
|
|
const maxToShow = 50
|
|
// Consider hiding M$0
|
|
// If it's just one member (curator), show all bettors, otherwise just show members
|
|
return (
|
|
<Col>
|
|
<div className="mt-4 flex flex-col gap-8 px-4 md:flex-row">
|
|
{members.length > 1 ? (
|
|
<>
|
|
<SortedLeaderboard
|
|
users={members}
|
|
scoreFunction={(user) => traderScores[user.id] ?? 0}
|
|
title="🏅 Top traders"
|
|
header="Profit"
|
|
maxToShow={maxToShow}
|
|
/>
|
|
<SortedLeaderboard
|
|
users={members}
|
|
scoreFunction={(user) => creatorScores[user.id] ?? 0}
|
|
title="🏅 Top creators"
|
|
header="Market volume"
|
|
maxToShow={maxToShow}
|
|
/>
|
|
</>
|
|
) : (
|
|
<>
|
|
<Leaderboard
|
|
className="max-w-xl"
|
|
title="🏅 Top traders"
|
|
users={topTraders}
|
|
columns={[
|
|
{
|
|
header: 'Profit',
|
|
renderCell: (user) => formatMoney(traderScores[user.id] ?? 0),
|
|
},
|
|
]}
|
|
maxToShow={maxToShow}
|
|
/>
|
|
<Leaderboard
|
|
className="max-w-xl"
|
|
title="🏅 Top creators"
|
|
users={topCreators}
|
|
columns={[
|
|
{
|
|
header: 'Market volume',
|
|
renderCell: (user) =>
|
|
formatMoney(creatorScores[user.id] ?? 0),
|
|
},
|
|
]}
|
|
maxToShow={maxToShow}
|
|
/>
|
|
</>
|
|
)}
|
|
</div>
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
function AddContractButton(props: { group: Group; user: User }) {
|
|
const { group, user } = props
|
|
const [open, setOpen] = useState(false)
|
|
const [contracts, setContracts] = useState<Contract[]>([])
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
async function addContractToCurrentGroup(contract: Contract) {
|
|
if (contracts.map((c) => c.id).includes(contract.id)) {
|
|
setContracts(contracts.filter((c) => c.id !== contract.id))
|
|
} else setContracts([...contracts, contract])
|
|
}
|
|
|
|
async function doneAddingContracts() {
|
|
Promise.all(
|
|
contracts.map(async (contract) => {
|
|
setLoading(true)
|
|
await addContractToGroup(group, contract, user.id)
|
|
})
|
|
).then(() => {
|
|
setLoading(false)
|
|
setOpen(false)
|
|
setContracts([])
|
|
})
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className={'flex justify-center'}>
|
|
<Button
|
|
className="whitespace-nowrap"
|
|
size="md"
|
|
color="indigo"
|
|
onClick={() => setOpen(true)}
|
|
>
|
|
Add market
|
|
</Button>
|
|
</div>
|
|
|
|
<Modal
|
|
open={open}
|
|
setOpen={setOpen}
|
|
className={'max-w-4xl sm:p-0'}
|
|
size={'xl'}
|
|
>
|
|
<Col
|
|
className={'min-h-screen w-full max-w-4xl gap-4 rounded-md bg-white'}
|
|
>
|
|
<Col className="p-8 pb-0">
|
|
<div className={'text-xl text-indigo-700'}>Add markets</div>
|
|
|
|
<div className={'text-md my-4 text-gray-600'}>
|
|
Add pre-existing markets to this group, or{' '}
|
|
<Link href={`/create?groupId=${group.id}`}>
|
|
<span className="cursor-pointer font-semibold underline">
|
|
create a new one
|
|
</span>
|
|
</Link>
|
|
.
|
|
</div>
|
|
|
|
{contracts.length > 0 && (
|
|
<Col className={'w-full '}>
|
|
{!loading ? (
|
|
<Row className={'justify-end gap-4'}>
|
|
<Button onClick={doneAddingContracts} color={'indigo'}>
|
|
Add {contracts.length} question
|
|
{contracts.length > 1 && 's'}
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
setContracts([])
|
|
}}
|
|
color={'gray'}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</Row>
|
|
) : (
|
|
<Row className={'justify-center'}>
|
|
<LoadingIndicator />
|
|
</Row>
|
|
)}
|
|
</Col>
|
|
)}
|
|
</Col>
|
|
|
|
<div className={'overflow-y-scroll sm:px-8'}>
|
|
<ContractSearch
|
|
user={user}
|
|
hideOrderSelector={true}
|
|
onContractClick={addContractToCurrentGroup}
|
|
cardHideOptions={{ hideGroupLink: true, hideQuickBet: true }}
|
|
additionalFilter={{ excludeContractIds: group.contractIds }}
|
|
highlightOptions={{
|
|
contractIds: contracts.map((c) => c.id),
|
|
highlightClassName: '!bg-indigo-100 border-indigo-100 border-2',
|
|
}}
|
|
/>
|
|
</div>
|
|
</Col>
|
|
</Modal>
|
|
</>
|
|
)
|
|
}
|
|
|
|
function JoinGroupButton(props: {
|
|
group: Group
|
|
user: User | null | undefined
|
|
}) {
|
|
const { group, user } = props
|
|
function addUserToGroup() {
|
|
if (user && !group.memberIds.includes(user.id)) {
|
|
toast.promise(joinGroup(group, user.id), {
|
|
loading: 'Joining group...',
|
|
success: 'Joined group!',
|
|
error: "Couldn't join group, try again?",
|
|
})
|
|
}
|
|
}
|
|
return (
|
|
<div>
|
|
<button
|
|
onClick={user ? addUserToGroup : firebaseLogin}
|
|
className={'btn-md btn-outline btn whitespace-nowrap normal-case'}
|
|
>
|
|
{user ? 'Join group' : 'Login to join group'}
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|