2022-08-30 09:41:47 +00:00
|
|
|
import { Contract, FreeResponseContract } from 'common/contract'
|
2022-08-19 08:06:40 +00:00
|
|
|
import { ContractComment } from 'common/comment'
|
2022-08-30 09:41:47 +00:00
|
|
|
import { Answer } from 'common/answer'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { Bet } from 'common/bet'
|
2022-08-30 09:41:47 +00:00
|
|
|
import { getOutcomeProbability } from 'common/calculate'
|
|
|
|
import { FeedBet } from './feed-bets'
|
|
|
|
import { FeedLiquidity } from './feed-liquidity'
|
|
|
|
import { FeedAnswerCommentGroup } from './feed-answer-comment-group'
|
2022-09-07 22:09:20 +00:00
|
|
|
import { FeedCommentThread, ContractCommentInput } from './feed-comments'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { User } from 'common/user'
|
2022-06-18 03:28:16 +00:00
|
|
|
import { CommentTipMap } from 'web/hooks/use-tip-txns'
|
2022-06-27 00:00:02 +00:00
|
|
|
import { LiquidityProvision } from 'common/liquidity-provision'
|
2022-08-30 09:41:47 +00:00
|
|
|
import { groupBy, sortBy, uniq } from 'lodash'
|
|
|
|
import { Col } from 'web/components/layout/col'
|
2022-03-14 20:29:32 +00:00
|
|
|
|
2022-08-30 09:41:47 +00:00
|
|
|
export function ContractBetsActivity(props: {
|
|
|
|
contract: Contract
|
|
|
|
bets: Bet[]
|
|
|
|
lps: LiquidityProvision[]
|
|
|
|
}) {
|
|
|
|
const { contract, bets, lps } = props
|
|
|
|
|
|
|
|
const items = [
|
|
|
|
...bets.map((bet) => ({
|
|
|
|
type: 'bet' as const,
|
|
|
|
id: bet.id + '-' + bet.isSold,
|
|
|
|
bet,
|
|
|
|
})),
|
|
|
|
...lps.map((lp) => ({
|
|
|
|
type: 'liquidity' as const,
|
|
|
|
id: lp.id,
|
|
|
|
lp,
|
|
|
|
})),
|
|
|
|
]
|
|
|
|
|
|
|
|
const sortedItems = sortBy(items, (item) =>
|
|
|
|
item.type === 'bet'
|
|
|
|
? -item.bet.createdTime
|
|
|
|
: item.type === 'liquidity'
|
|
|
|
? -item.lp.createdTime
|
|
|
|
: undefined
|
|
|
|
)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Col className="gap-4">
|
|
|
|
{sortedItems.map((item) =>
|
|
|
|
item.type === 'bet' ? (
|
|
|
|
<FeedBet key={item.id} contract={contract} bet={item.bet} />
|
|
|
|
) : (
|
|
|
|
<FeedLiquidity key={item.id} liquidity={item.lp} />
|
|
|
|
)
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ContractCommentsActivity(props: {
|
2022-03-14 20:29:32 +00:00
|
|
|
contract: Contract
|
|
|
|
bets: Bet[]
|
2022-08-19 08:06:40 +00:00
|
|
|
comments: ContractComment[]
|
2022-06-18 03:28:16 +00:00
|
|
|
tips: CommentTipMap
|
2022-03-14 20:29:32 +00:00
|
|
|
user: User | null | undefined
|
|
|
|
}) {
|
2022-08-30 09:41:47 +00:00
|
|
|
const { bets, contract, comments, user, tips } = props
|
|
|
|
const betsByUserId = groupBy(bets, (bet) => bet.userId)
|
|
|
|
const commentsByUserId = groupBy(comments, (c) => c.userId)
|
|
|
|
const commentsByParentId = groupBy(comments, (c) => c.replyToCommentId ?? '_')
|
|
|
|
const topLevelComments = sortBy(
|
|
|
|
commentsByParentId['_'] ?? [],
|
|
|
|
(c) => -c.createdTime
|
|
|
|
)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
2022-09-07 22:09:20 +00:00
|
|
|
<ContractCommentInput
|
2022-08-30 09:41:47 +00:00
|
|
|
className="mb-5"
|
|
|
|
contract={contract}
|
|
|
|
betsByCurrentUser={(user && betsByUserId[user.id]) ?? []}
|
|
|
|
commentsByCurrentUser={(user && commentsByUserId[user.id]) ?? []}
|
|
|
|
/>
|
|
|
|
{topLevelComments.map((parent) => (
|
|
|
|
<FeedCommentThread
|
|
|
|
key={parent.id}
|
|
|
|
user={user}
|
|
|
|
contract={contract}
|
|
|
|
parentComment={parent}
|
2022-08-31 08:16:57 +00:00
|
|
|
threadComments={sortBy(
|
|
|
|
commentsByParentId[parent.id] ?? [],
|
|
|
|
(c) => c.createdTime
|
|
|
|
)}
|
2022-08-30 09:41:47 +00:00
|
|
|
tips={tips}
|
|
|
|
bets={bets}
|
|
|
|
betsByUserId={betsByUserId}
|
|
|
|
commentsByUserId={commentsByUserId}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</>
|
2022-07-10 18:05:44 +00:00
|
|
|
)
|
2022-08-30 09:41:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function FreeResponseContractCommentsActivity(props: {
|
|
|
|
contract: FreeResponseContract
|
|
|
|
bets: Bet[]
|
|
|
|
comments: ContractComment[]
|
|
|
|
tips: CommentTipMap
|
|
|
|
user: User | null | undefined
|
|
|
|
}) {
|
|
|
|
const { bets, contract, comments, user, tips } = props
|
|
|
|
|
|
|
|
let outcomes = uniq(bets.map((bet) => bet.outcome))
|
|
|
|
outcomes = sortBy(
|
|
|
|
outcomes,
|
|
|
|
(outcome) => -getOutcomeProbability(contract, outcome)
|
2022-06-14 13:13:24 +00:00
|
|
|
)
|
2022-03-14 20:29:32 +00:00
|
|
|
|
2022-08-30 09:41:47 +00:00
|
|
|
const answers = outcomes
|
|
|
|
.map((outcome) => {
|
|
|
|
return contract.answers.find((answer) => answer.id === outcome) as Answer
|
|
|
|
})
|
|
|
|
.filter((answer) => answer != null)
|
|
|
|
|
|
|
|
const betsByUserId = groupBy(bets, (bet) => bet.userId)
|
|
|
|
const commentsByUserId = groupBy(comments, (c) => c.userId)
|
|
|
|
const commentsByOutcome = groupBy(comments, (c) => c.answerOutcome ?? '_')
|
|
|
|
|
2022-03-14 20:29:32 +00:00
|
|
|
return (
|
2022-08-30 09:41:47 +00:00
|
|
|
<>
|
|
|
|
{answers.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}
|
|
|
|
user={user}
|
|
|
|
answer={answer}
|
2022-08-31 08:16:57 +00:00
|
|
|
answerComments={sortBy(
|
|
|
|
commentsByOutcome[answer.number.toString()] ?? [],
|
|
|
|
(c) => c.createdTime
|
|
|
|
)}
|
2022-08-30 09:41:47 +00:00
|
|
|
tips={tips}
|
|
|
|
betsByUserId={betsByUserId}
|
|
|
|
commentsByUserId={commentsByUserId}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</>
|
2022-03-14 20:29:32 +00:00
|
|
|
)
|
|
|
|
}
|