2022-09-21 04:02:17 +00:00
|
|
|
import { memo, useState } from 'react'
|
|
|
|
import { getOutcomeProbability } from 'common/calculate'
|
|
|
|
import { Pagination } from 'web/components/pagination'
|
|
|
|
import { FeedBet } from '../feed/feed-bets'
|
|
|
|
import { FeedLiquidity } from '../feed/feed-liquidity'
|
|
|
|
import { FeedAnswerCommentGroup } from '../feed/feed-answer-comment-group'
|
|
|
|
import { FeedCommentThread, ContractCommentInput } from '../feed/feed-comments'
|
2022-09-30 15:27:42 +00:00
|
|
|
import { groupBy, sortBy, sum } from 'lodash'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { Bet } from 'common/bet'
|
2022-09-21 07:02:10 +00:00
|
|
|
import { Contract } from 'common/contract'
|
|
|
|
import { PAST_BETS } from 'common/user'
|
2022-09-27 17:09:54 +00:00
|
|
|
import { ContractBetsTable } from '../bets-list'
|
2022-04-08 21:13:10 +00:00
|
|
|
import { Spacer } from '../layout/spacer'
|
|
|
|
import { Tabs } from '../layout/tabs'
|
2022-05-03 20:38:40 +00:00
|
|
|
import { Col } from '../layout/col'
|
2022-09-21 07:02:10 +00:00
|
|
|
import { LoadingIndicator } from 'web/components/loading-indicator'
|
2022-07-24 07:11:33 +00:00
|
|
|
import { useComments } from 'web/hooks/use-comments'
|
2022-08-11 19:53:54 +00:00
|
|
|
import { useLiquidity } from 'web/hooks/use-liquidity'
|
2022-09-20 22:58:47 +00:00
|
|
|
import { useTipTxns } from 'web/hooks/use-tip-txns'
|
2022-09-15 15:57:14 +00:00
|
|
|
import { capitalize } from 'lodash'
|
2022-09-15 20:47:07 +00:00
|
|
|
import {
|
|
|
|
DEV_HOUSE_LIQUIDITY_PROVIDER_ID,
|
|
|
|
HOUSE_LIQUIDITY_PROVIDER_ID,
|
|
|
|
} from 'common/antes'
|
2022-09-27 17:09:54 +00:00
|
|
|
import { buildArray } from 'common/util/array'
|
2022-09-28 17:11:26 +00:00
|
|
|
import { ContractComment } from 'common/comment'
|
2022-04-08 21:13:10 +00:00
|
|
|
|
2022-09-30 15:27:42 +00:00
|
|
|
import { Button } from 'web/components/button'
|
|
|
|
import { MINUTE_MS } from 'common/util/time'
|
|
|
|
import { useUser } from 'web/hooks/use-user'
|
|
|
|
import { Tooltip } from 'web/components/tooltip'
|
2022-09-30 19:48:04 +00:00
|
|
|
import { BountiedContractSmallBadge } from 'web/components/contract/bountied-contract-badge'
|
2022-09-30 19:44:44 +00:00
|
|
|
import { Row } from '../layout/row'
|
2022-10-03 14:15:27 +00:00
|
|
|
import {
|
|
|
|
storageStore,
|
|
|
|
usePersistentState,
|
|
|
|
} from 'web/hooks/use-persistent-state'
|
|
|
|
import { safeLocalStorage } from 'web/lib/util/local'
|
2022-09-30 15:27:42 +00:00
|
|
|
|
2022-09-27 17:09:54 +00:00
|
|
|
export function ContractTabs(props: {
|
|
|
|
contract: Contract
|
|
|
|
bets: Bet[]
|
|
|
|
userBets: Bet[]
|
2022-09-28 17:11:26 +00:00
|
|
|
comments: ContractComment[]
|
2022-09-27 17:09:54 +00:00
|
|
|
}) {
|
2022-09-28 17:11:26 +00:00
|
|
|
const { contract, bets, userBets, comments } = props
|
2022-08-11 19:53:54 +00:00
|
|
|
|
2022-09-21 04:02:17 +00:00
|
|
|
const yourTrades = (
|
|
|
|
<div>
|
|
|
|
<Spacer h={6} />
|
2022-09-27 17:09:54 +00:00
|
|
|
<ContractBetsTable contract={contract} bets={userBets} isYourBets />
|
2022-09-21 04:02:17 +00:00
|
|
|
<Spacer h={12} />
|
|
|
|
</div>
|
2022-04-26 21:08:50 +00:00
|
|
|
)
|
|
|
|
|
2022-09-27 17:09:54 +00:00
|
|
|
const tabs = buildArray(
|
|
|
|
{
|
2022-09-30 19:44:44 +00:00
|
|
|
title: 'Comments',
|
2022-09-28 17:11:26 +00:00
|
|
|
content: <CommentsTabContent contract={contract} comments={comments} />,
|
2022-09-27 17:09:54 +00:00
|
|
|
},
|
2022-10-02 21:47:46 +00:00
|
|
|
bets.length > 0 && {
|
2022-09-27 17:09:54 +00:00
|
|
|
title: capitalize(PAST_BETS),
|
|
|
|
content: <BetsTabContent contract={contract} bets={bets} />,
|
|
|
|
},
|
|
|
|
userBets.length > 0 && {
|
|
|
|
title: 'Your trades',
|
|
|
|
content: yourTrades,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2022-09-21 04:02:17 +00:00
|
|
|
return (
|
2022-09-27 17:09:54 +00:00
|
|
|
<Tabs className="mb-4" currentPageForAnalytics={'contract'} tabs={tabs} />
|
2022-08-30 09:41:47 +00:00
|
|
|
)
|
2022-09-21 04:02:17 +00:00
|
|
|
}
|
2022-08-30 09:41:47 +00:00
|
|
|
|
2022-09-21 04:02:17 +00:00
|
|
|
const CommentsTabContent = memo(function CommentsTabContent(props: {
|
|
|
|
contract: Contract
|
2022-09-28 17:11:26 +00:00
|
|
|
comments: ContractComment[]
|
2022-09-21 04:02:17 +00:00
|
|
|
}) {
|
2022-09-21 07:02:10 +00:00
|
|
|
const { contract } = props
|
2022-09-21 04:02:17 +00:00
|
|
|
const tips = useTipTxns({ contractId: contract.id })
|
2022-09-28 17:11:26 +00:00
|
|
|
const comments = useComments(contract.id) ?? props.comments
|
2022-10-07 19:56:55 +00:00
|
|
|
const [sort, setSort] = usePersistentState<'Newest' | 'Best'>('Newest', {
|
2022-10-06 14:16:29 +00:00
|
|
|
key: `contract-comments-sort`,
|
2022-10-03 14:15:27 +00:00
|
|
|
store: storageStore(safeLocalStorage()),
|
|
|
|
})
|
2022-09-30 15:27:42 +00:00
|
|
|
const me = useUser()
|
2022-10-03 16:31:07 +00:00
|
|
|
|
2022-09-21 07:02:10 +00:00
|
|
|
if (comments == null) {
|
|
|
|
return <LoadingIndicator />
|
|
|
|
}
|
2022-10-03 16:31:07 +00:00
|
|
|
|
|
|
|
const tipsOrBountiesAwarded =
|
|
|
|
Object.keys(tips).length > 0 || comments.some((c) => c.bountiesAwarded)
|
|
|
|
|
2022-10-03 22:38:12 +00:00
|
|
|
// replied to answers/comments are NOT newest, otherwise newest first
|
|
|
|
const shouldBeNewestFirst = (c: ContractComment) =>
|
|
|
|
c.replyToCommentId == undefined &&
|
|
|
|
(contract.outcomeType === 'FREE_RESPONSE'
|
|
|
|
? c.betId === undefined && c.answerOutcome == undefined
|
|
|
|
: true)
|
|
|
|
|
|
|
|
// TODO: links to comments are broken because tips load after render and
|
|
|
|
// comments will reorganize themselves if there are tips/bounties awarded
|
|
|
|
const sortedComments = sortBy(comments, [
|
|
|
|
sort === 'Best'
|
|
|
|
? (c) =>
|
|
|
|
// Is this too magic? If there are tips/bounties, 'Best' shows your own comments made within the last 10 minutes first, then sorts by score
|
|
|
|
tipsOrBountiesAwarded &&
|
|
|
|
c.createdTime > Date.now() - 10 * MINUTE_MS &&
|
|
|
|
c.userId === me?.id &&
|
|
|
|
shouldBeNewestFirst(c)
|
|
|
|
? -Infinity
|
|
|
|
: -((c.bountiesAwarded ?? 0) + sum(Object.values(tips[c.id] ?? [])))
|
|
|
|
: (c) => c,
|
|
|
|
(c) => (!shouldBeNewestFirst(c) ? c.createdTime : -c.createdTime),
|
|
|
|
])
|
2022-10-03 16:31:07 +00:00
|
|
|
|
|
|
|
const commentsByParent = groupBy(
|
|
|
|
sortedComments,
|
|
|
|
(c) => c.replyToCommentId ?? '_'
|
|
|
|
)
|
|
|
|
const topLevelComments = commentsByParent['_'] ?? []
|
2022-10-03 22:38:12 +00:00
|
|
|
|
|
|
|
const sortRow = comments.length > 0 && (
|
2022-10-07 21:26:23 +00:00
|
|
|
<Row className="mb-4 items-center">
|
2022-10-03 22:38:12 +00:00
|
|
|
<Button
|
|
|
|
size={'xs'}
|
|
|
|
color={'gray-white'}
|
|
|
|
onClick={() => setSort(sort === 'Newest' ? 'Best' : 'Newest')}
|
|
|
|
>
|
|
|
|
<Tooltip
|
|
|
|
text={
|
|
|
|
sort === 'Best'
|
|
|
|
? 'Highest tips + bounties first. Your new comments briefly appear to you first.'
|
|
|
|
: ''
|
|
|
|
}
|
|
|
|
>
|
|
|
|
Sort by: {sort}
|
|
|
|
</Tooltip>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<BountiedContractSmallBadge contract={contract} showAmount />
|
|
|
|
</Row>
|
|
|
|
)
|
2022-10-03 16:31:07 +00:00
|
|
|
|
2022-09-21 04:02:17 +00:00
|
|
|
if (contract.outcomeType === 'FREE_RESPONSE') {
|
2022-09-21 07:02:10 +00:00
|
|
|
const sortedAnswers = sortBy(
|
|
|
|
contract.answers,
|
|
|
|
(a) => -getOutcomeProbability(contract, a.id)
|
|
|
|
)
|
|
|
|
const commentsByOutcome = groupBy(
|
2022-10-03 22:38:12 +00:00
|
|
|
sortedComments,
|
2022-09-21 07:02:10 +00:00
|
|
|
(c) => c.answerOutcome ?? c.betOutcome ?? '_'
|
|
|
|
)
|
2022-10-03 16:31:07 +00:00
|
|
|
const generalTopLevelComments = topLevelComments.filter(
|
|
|
|
(c) => c.answerOutcome === undefined && c.betId === undefined
|
|
|
|
)
|
2022-10-03 22:38:12 +00:00
|
|
|
|
2022-09-21 04:02:17 +00:00
|
|
|
return (
|
2022-08-30 09:41:47 +00:00
|
|
|
<>
|
2022-10-03 22:38:12 +00:00
|
|
|
{sortRow}
|
2022-09-21 07:02:10 +00:00
|
|
|
{sortedAnswers.map((answer) => (
|
|
|
|
<div key={answer.id} className="relative pb-4">
|
|
|
|
<span
|
|
|
|
className="absolute top-5 left-5 -ml-px h-[calc(100%-2rem)] w-0.5 bg-gray-200"
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
<FeedAnswerCommentGroup
|
|
|
|
contract={contract}
|
|
|
|
answer={answer}
|
2022-10-03 22:38:12 +00:00
|
|
|
answerComments={commentsByOutcome[answer.number.toString()] ?? []}
|
2022-09-21 07:02:10 +00:00
|
|
|
tips={tips}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
))}
|
2022-09-20 22:25:58 +00:00
|
|
|
<Col className="mt-8 flex w-full">
|
|
|
|
<div className="text-md mt-8 mb-2 text-left">General Comments</div>
|
|
|
|
<div className="mb-4 w-full border-b border-gray-200" />
|
2022-09-21 07:02:10 +00:00
|
|
|
<ContractCommentInput className="mb-5" contract={contract} />
|
2022-10-07 19:56:55 +00:00
|
|
|
{sortRow}
|
|
|
|
|
2022-10-03 16:31:07 +00:00
|
|
|
{generalTopLevelComments.map((comment) => (
|
2022-09-21 07:02:10 +00:00
|
|
|
<FeedCommentThread
|
|
|
|
key={comment.id}
|
|
|
|
contract={contract}
|
|
|
|
parentComment={comment}
|
2022-10-03 16:31:07 +00:00
|
|
|
threadComments={commentsByParent[comment.id] ?? []}
|
2022-09-21 07:02:10 +00:00
|
|
|
tips={tips}
|
|
|
|
/>
|
|
|
|
))}
|
2022-05-03 20:38:40 +00:00
|
|
|
</Col>
|
2022-08-30 09:41:47 +00:00
|
|
|
</>
|
2022-09-21 04:02:17 +00:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return (
|
2022-09-21 07:02:10 +00:00
|
|
|
<>
|
|
|
|
<ContractCommentInput className="mb-5" contract={contract} />
|
2022-10-07 19:56:55 +00:00
|
|
|
{sortRow}
|
|
|
|
|
2022-09-30 15:27:42 +00:00
|
|
|
{topLevelComments.map((parent) => (
|
2022-09-21 07:02:10 +00:00
|
|
|
<FeedCommentThread
|
|
|
|
key={parent.id}
|
|
|
|
contract={contract}
|
|
|
|
parentComment={parent}
|
|
|
|
threadComments={sortBy(
|
|
|
|
commentsByParent[parent.id] ?? [],
|
|
|
|
(c) => c.createdTime
|
|
|
|
)}
|
|
|
|
tips={tips}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</>
|
2022-08-30 09:41:47 +00:00
|
|
|
)
|
2022-09-21 04:02:17 +00:00
|
|
|
}
|
|
|
|
})
|
2022-04-08 21:13:10 +00:00
|
|
|
|
2022-09-21 07:02:10 +00:00
|
|
|
const BetsTabContent = memo(function BetsTabContent(props: {
|
|
|
|
contract: Contract
|
|
|
|
bets: Bet[]
|
|
|
|
}) {
|
2022-09-21 04:02:17 +00:00
|
|
|
const { contract, bets } = props
|
|
|
|
const [page, setPage] = useState(0)
|
|
|
|
const ITEMS_PER_PAGE = 50
|
|
|
|
const start = page * ITEMS_PER_PAGE
|
|
|
|
const end = start + ITEMS_PER_PAGE
|
|
|
|
|
|
|
|
const lps = useLiquidity(contract.id) ?? []
|
2022-09-21 07:02:10 +00:00
|
|
|
const visibleBets = bets.filter(
|
|
|
|
(bet) => !bet.isAnte && !bet.isRedemption && bet.amount !== 0
|
|
|
|
)
|
2022-09-21 04:02:17 +00:00
|
|
|
const visibleLps = lps.filter(
|
|
|
|
(l) =>
|
|
|
|
!l.isAnte &&
|
|
|
|
l.userId !== HOUSE_LIQUIDITY_PROVIDER_ID &&
|
|
|
|
l.userId !== DEV_HOUSE_LIQUIDITY_PROVIDER_ID &&
|
|
|
|
l.amount > 0
|
|
|
|
)
|
|
|
|
|
|
|
|
const items = [
|
2022-09-21 07:02:10 +00:00
|
|
|
...visibleBets.map((bet) => ({
|
2022-09-21 04:02:17 +00:00
|
|
|
type: 'bet' as const,
|
|
|
|
id: bet.id + '-' + bet.isSold,
|
|
|
|
bet,
|
|
|
|
})),
|
|
|
|
...visibleLps.map((lp) => ({
|
|
|
|
type: 'liquidity' as const,
|
|
|
|
id: lp.id,
|
|
|
|
lp,
|
|
|
|
})),
|
|
|
|
]
|
|
|
|
|
|
|
|
const pageItems = sortBy(items, (item) =>
|
|
|
|
item.type === 'bet'
|
|
|
|
? -item.bet.createdTime
|
|
|
|
: item.type === 'liquidity'
|
|
|
|
? -item.lp.createdTime
|
|
|
|
: undefined
|
|
|
|
).slice(start, end)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Col className="mb-4 gap-4">
|
|
|
|
{pageItems.map((item) =>
|
|
|
|
item.type === 'bet' ? (
|
|
|
|
<FeedBet key={item.id} contract={contract} bet={item.bet} />
|
|
|
|
) : (
|
|
|
|
<FeedLiquidity key={item.id} liquidity={item.lp} />
|
|
|
|
)
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
<Pagination
|
|
|
|
page={page}
|
|
|
|
itemsPerPage={50}
|
|
|
|
totalItems={items.length}
|
|
|
|
setPage={setPage}
|
|
|
|
scrollToTop
|
|
|
|
nextTitle={'Older'}
|
|
|
|
prevTitle={'Newer'}
|
2022-04-09 21:34:43 +00:00
|
|
|
/>
|
2022-09-21 04:02:17 +00:00
|
|
|
</>
|
|
|
|
)
|
2022-09-21 07:02:10 +00:00
|
|
|
})
|