2022-01-04 07:21:14 +00:00
|
|
|
// From https://tailwindui.com/components/application-ui/lists/feeds
|
|
|
|
import { useState } from 'react'
|
|
|
|
import {
|
|
|
|
BanIcon,
|
|
|
|
ChatAltIcon,
|
|
|
|
CheckIcon,
|
|
|
|
LockClosedIcon,
|
|
|
|
StarIcon,
|
|
|
|
UserIcon,
|
|
|
|
UsersIcon,
|
|
|
|
XIcon,
|
|
|
|
} from '@heroicons/react/solid'
|
|
|
|
import { useBets } from '../hooks/use-bets'
|
2022-01-13 17:01:20 +00:00
|
|
|
import { Bet, withoutAnteBets } from '../lib/firebase/bets'
|
2022-01-04 07:21:14 +00:00
|
|
|
import { Comment, mapCommentsByBetId } from '../lib/firebase/comments'
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
import relativeTime from 'dayjs/plugin/relativeTime'
|
|
|
|
import { OutcomeLabel } from './outcome-label'
|
2022-01-11 16:56:26 +00:00
|
|
|
import {
|
2022-01-12 19:01:04 +00:00
|
|
|
contractMetrics,
|
2022-01-11 16:56:26 +00:00
|
|
|
Contract,
|
2022-01-12 19:01:04 +00:00
|
|
|
contractPath,
|
2022-01-11 16:56:26 +00:00
|
|
|
updateContract,
|
|
|
|
} from '../lib/firebase/contracts'
|
2022-01-04 07:21:14 +00:00
|
|
|
import { useUser } from '../hooks/use-user'
|
|
|
|
import { Linkify } from './linkify'
|
|
|
|
import { Row } from './layout/row'
|
|
|
|
import { createComment } from '../lib/firebase/comments'
|
|
|
|
import { useComments } from '../hooks/use-comments'
|
2022-01-04 15:55:34 +00:00
|
|
|
import { formatMoney } from '../lib/util/format'
|
2022-01-11 16:56:26 +00:00
|
|
|
import { ResolutionOrChance } from './contract-card'
|
|
|
|
import { SiteLink } from './site-link'
|
2022-01-11 20:57:44 +00:00
|
|
|
import { Col } from './layout/col'
|
2022-01-13 21:16:47 +00:00
|
|
|
import { UserLink } from './user-page'
|
2022-01-16 09:16:15 +00:00
|
|
|
import { DateTimeTooltip } from './datetime-tooltip'
|
2022-01-04 07:21:14 +00:00
|
|
|
dayjs.extend(relativeTime)
|
|
|
|
|
|
|
|
function FeedComment(props: { activityItem: any }) {
|
|
|
|
const { activityItem } = props
|
|
|
|
const { person, text, amount, outcome, createdTime } = activityItem
|
|
|
|
return (
|
|
|
|
<>
|
2022-01-13 21:24:14 +00:00
|
|
|
<SiteLink className="relative" href={`/${person.username}`}>
|
2022-01-04 07:21:14 +00:00
|
|
|
<img
|
|
|
|
className="h-10 w-10 rounded-full bg-gray-400 flex items-center justify-center ring-8 ring-gray-50"
|
|
|
|
src={person.avatarUrl}
|
|
|
|
alt=""
|
|
|
|
/>
|
|
|
|
|
|
|
|
<span className="absolute -bottom-3 -right-2 bg-gray-50 rounded-tl px-0.5 py-px">
|
|
|
|
<ChatAltIcon className="h-5 w-5 text-gray-400" aria-hidden="true" />
|
|
|
|
</span>
|
2022-01-13 21:24:14 +00:00
|
|
|
</SiteLink>
|
2022-01-04 07:21:14 +00:00
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
<div>
|
|
|
|
<p className="mt-0.5 text-sm text-gray-500">
|
2022-01-13 21:24:14 +00:00
|
|
|
<UserLink
|
|
|
|
className="text-gray-500"
|
|
|
|
username={person.username}
|
|
|
|
name={person.name}
|
|
|
|
/>{' '}
|
2022-01-10 17:38:44 +00:00
|
|
|
placed {formatMoney(amount)} on <OutcomeLabel outcome={outcome} />{' '}
|
2022-01-04 07:21:14 +00:00
|
|
|
<Timestamp time={createdTime} />
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="mt-2 text-gray-700">
|
|
|
|
<p className="whitespace-pre-wrap">
|
|
|
|
<Linkify text={text} />
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function Timestamp(props: { time: number }) {
|
|
|
|
const { time } = props
|
|
|
|
return (
|
2022-01-16 09:16:15 +00:00
|
|
|
<DateTimeTooltip time={time}>
|
|
|
|
<span className="whitespace-nowrap text-gray-400 ml-1">
|
|
|
|
{dayjs(time).fromNow()}
|
|
|
|
</span>
|
|
|
|
</DateTimeTooltip>
|
2022-01-04 07:21:14 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function FeedBet(props: { activityItem: any }) {
|
|
|
|
const { activityItem } = props
|
|
|
|
const { id, contractId, amount, outcome, createdTime } = activityItem
|
|
|
|
const user = useUser()
|
|
|
|
const isCreator = user?.id == activityItem.userId
|
2022-01-12 06:47:56 +00:00
|
|
|
// The creator can comment if the bet was posted in the last hour
|
|
|
|
const canComment = isCreator && Date.now() - createdTime < 60 * 60 * 1000
|
2022-01-04 07:21:14 +00:00
|
|
|
|
|
|
|
const [comment, setComment] = useState('')
|
|
|
|
async function submitComment() {
|
|
|
|
if (!user || !comment) return
|
|
|
|
await createComment(contractId, id, comment, user)
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="relative px-1">
|
|
|
|
<div className="h-8 w-8 bg-gray-200 rounded-full ring-8 ring-gray-50 flex items-center justify-center">
|
|
|
|
<UserIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="min-w-0 flex-1 py-1.5">
|
|
|
|
<div className="text-sm text-gray-500">
|
2022-01-11 16:56:26 +00:00
|
|
|
<span>{isCreator ? 'You' : 'A trader'}</span> placed{' '}
|
|
|
|
{formatMoney(amount)} on <OutcomeLabel outcome={outcome} />{' '}
|
2022-01-04 07:21:14 +00:00
|
|
|
<Timestamp time={createdTime} />
|
2022-01-12 06:47:56 +00:00
|
|
|
{canComment && (
|
2022-01-04 07:21:14 +00:00
|
|
|
// Allow user to comment in an textarea if they are the creator
|
|
|
|
<div className="mt-2">
|
|
|
|
<textarea
|
|
|
|
value={comment}
|
|
|
|
onChange={(e) => setComment(e.target.value)}
|
|
|
|
className="textarea textarea-bordered w-full"
|
|
|
|
placeholder="Add a comment..."
|
|
|
|
/>
|
|
|
|
<button
|
|
|
|
className="btn btn-outline btn-sm mt-1"
|
|
|
|
onClick={submitComment}
|
|
|
|
>
|
|
|
|
Comment
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ContractDescription(props: {
|
|
|
|
contract: Contract
|
|
|
|
isCreator: boolean
|
|
|
|
}) {
|
|
|
|
const { contract, isCreator } = props
|
|
|
|
const [editing, setEditing] = useState(false)
|
|
|
|
const editStatement = () => `${dayjs().format('MMM D, h:mma')}: `
|
|
|
|
const [description, setDescription] = useState(editStatement())
|
|
|
|
|
|
|
|
// Append the new description (after a newline)
|
|
|
|
async function saveDescription(e: any) {
|
|
|
|
e.preventDefault()
|
|
|
|
setEditing(false)
|
2022-01-07 19:27:59 +00:00
|
|
|
|
2022-01-09 05:09:19 +00:00
|
|
|
const newDescription = `${contract.description}\n\n${description}`.trim()
|
2022-01-07 19:27:59 +00:00
|
|
|
await updateContract(contract.id, { description: newDescription })
|
|
|
|
|
2022-01-04 07:21:14 +00:00
|
|
|
setDescription(editStatement())
|
|
|
|
}
|
|
|
|
|
2022-01-11 20:57:44 +00:00
|
|
|
if (!isCreator && !contract.description.trim()) return null
|
|
|
|
|
2022-01-04 07:21:14 +00:00
|
|
|
return (
|
|
|
|
<div className="whitespace-pre-line break-words mt-2 text-gray-700">
|
|
|
|
<Linkify text={contract.description} />
|
|
|
|
<br />
|
|
|
|
{isCreator &&
|
|
|
|
!contract.resolution &&
|
|
|
|
(editing ? (
|
|
|
|
<form className="mt-4">
|
|
|
|
<textarea
|
|
|
|
className="textarea h-24 textarea-bordered w-full mb-1"
|
|
|
|
value={description}
|
|
|
|
onChange={(e) => setDescription(e.target.value || '')}
|
|
|
|
autoFocus
|
|
|
|
onFocus={(e) =>
|
|
|
|
// Focus starts at end of description.
|
|
|
|
e.target.setSelectionRange(
|
|
|
|
description.length,
|
|
|
|
description.length
|
|
|
|
)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<Row className="gap-2">
|
|
|
|
<button
|
|
|
|
className="btn btn-neutral btn-outline btn-sm"
|
|
|
|
onClick={saveDescription}
|
|
|
|
>
|
|
|
|
Save
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
className="btn btn-error btn-outline btn-sm"
|
|
|
|
onClick={() => setEditing(false)}
|
|
|
|
>
|
|
|
|
Cancel
|
|
|
|
</button>
|
|
|
|
</Row>
|
|
|
|
</form>
|
|
|
|
) : (
|
|
|
|
<Row>
|
|
|
|
<button
|
|
|
|
className="btn btn-neutral btn-outline btn-sm mt-4"
|
|
|
|
onClick={() => setEditing(true)}
|
|
|
|
>
|
|
|
|
Add to description
|
|
|
|
</button>
|
|
|
|
</Row>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-01-11 16:56:26 +00:00
|
|
|
function FeedQuestion(props: { contract: Contract }) {
|
|
|
|
const { contract } = props
|
2022-01-13 21:16:47 +00:00
|
|
|
const { creatorName, creatorUsername, createdTime, question, resolution } =
|
|
|
|
contract
|
2022-01-12 19:01:04 +00:00
|
|
|
const { probPercent } = contractMetrics(contract)
|
2022-01-11 16:56:26 +00:00
|
|
|
|
2022-01-14 22:28:19 +00:00
|
|
|
let description = contract.description
|
|
|
|
// Keep descriptions to at most 400 characters
|
|
|
|
if (description.length > 400) {
|
|
|
|
description = description.slice(0, 400)
|
|
|
|
// Make sure to end on a space
|
|
|
|
const i = description.lastIndexOf(' ')
|
|
|
|
description = description.slice(0, i)
|
|
|
|
}
|
|
|
|
|
2022-01-11 16:56:26 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="relative px-1">
|
|
|
|
<div className="h-8 w-8 bg-gray-200 rounded-full ring-8 ring-gray-50 flex items-center justify-center">
|
|
|
|
<StarIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="min-w-0 flex-1 py-1.5">
|
2022-01-11 20:57:44 +00:00
|
|
|
<div className="text-sm text-gray-500 mb-2">
|
2022-01-13 21:16:47 +00:00
|
|
|
<UserLink
|
|
|
|
className="text-gray-900"
|
|
|
|
name={creatorName}
|
|
|
|
username={creatorUsername}
|
|
|
|
/>{' '}
|
|
|
|
asked <Timestamp time={createdTime} />
|
2022-01-11 16:56:26 +00:00
|
|
|
</div>
|
2022-01-11 20:57:44 +00:00
|
|
|
<Col className="items-start sm:flex-row justify-between gap-2 sm:gap-4 mb-4 mr-2">
|
|
|
|
<SiteLink
|
2022-01-12 19:01:04 +00:00
|
|
|
href={contractPath(contract)}
|
2022-01-11 20:57:44 +00:00
|
|
|
className="text-lg sm:text-xl text-indigo-700"
|
|
|
|
>
|
2022-01-13 21:16:47 +00:00
|
|
|
{question}
|
2022-01-11 16:56:26 +00:00
|
|
|
</SiteLink>
|
|
|
|
<ResolutionOrChance
|
|
|
|
className="items-center"
|
2022-01-13 21:16:47 +00:00
|
|
|
resolution={resolution}
|
2022-01-11 16:56:26 +00:00
|
|
|
probPercent={probPercent}
|
|
|
|
/>
|
2022-01-11 20:57:44 +00:00
|
|
|
</Col>
|
2022-01-14 22:28:19 +00:00
|
|
|
<div className="whitespace-pre-line break-words mt-2 text-gray-700">
|
|
|
|
<Linkify text={description} />
|
|
|
|
{description != contract.description && (
|
|
|
|
<SiteLink href={contractPath(contract)} className="text-indigo-700">
|
|
|
|
... (show more)
|
|
|
|
</SiteLink>
|
|
|
|
)}
|
|
|
|
</div>
|
2022-01-11 16:56:26 +00:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function FeedDescription(props: { contract: Contract }) {
|
2022-01-04 07:21:14 +00:00
|
|
|
const { contract } = props
|
2022-01-13 21:16:47 +00:00
|
|
|
const { creatorName, creatorUsername } = contract
|
2022-01-04 07:21:14 +00:00
|
|
|
const user = useUser()
|
|
|
|
const isCreator = user?.id === contract.creatorId
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="relative px-1">
|
|
|
|
<div className="h-8 w-8 bg-gray-200 rounded-full ring-8 ring-gray-50 flex items-center justify-center">
|
|
|
|
<StarIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="min-w-0 flex-1 py-1.5">
|
|
|
|
<div className="text-sm text-gray-500">
|
2022-01-13 21:16:47 +00:00
|
|
|
<UserLink
|
|
|
|
className="text-gray-900"
|
|
|
|
name={creatorName}
|
|
|
|
username={creatorUsername}
|
|
|
|
/>{' '}
|
|
|
|
created this market <Timestamp time={contract.createdTime} />
|
2022-01-04 07:21:14 +00:00
|
|
|
</div>
|
|
|
|
<ContractDescription contract={contract} isCreator={isCreator} />
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function OutcomeIcon(props: { outcome?: 'YES' | 'NO' | 'CANCEL' }) {
|
|
|
|
const { outcome } = props
|
|
|
|
switch (outcome) {
|
|
|
|
case 'YES':
|
|
|
|
return <CheckIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
case 'NO':
|
|
|
|
return <XIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
case 'CANCEL':
|
|
|
|
default:
|
|
|
|
return <BanIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function FeedResolve(props: { contract: Contract }) {
|
|
|
|
const { contract } = props
|
2022-01-13 21:16:47 +00:00
|
|
|
const { creatorName, creatorUsername } = contract
|
2022-01-04 07:21:14 +00:00
|
|
|
const resolution = contract.resolution || 'CANCEL'
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="relative px-1">
|
|
|
|
<div className="h-8 w-8 bg-gray-200 rounded-full ring-8 ring-gray-50 flex items-center justify-center">
|
|
|
|
<OutcomeIcon outcome={resolution} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="min-w-0 flex-1 py-1.5">
|
|
|
|
<div className="text-sm text-gray-500">
|
2022-01-13 21:16:47 +00:00
|
|
|
<UserLink
|
|
|
|
className="text-gray-900"
|
|
|
|
name={creatorName}
|
|
|
|
username={creatorUsername}
|
|
|
|
/>{' '}
|
|
|
|
resolved this market to <OutcomeLabel outcome={resolution} />{' '}
|
2022-01-04 07:21:14 +00:00
|
|
|
<Timestamp time={contract.resolutionTime || 0} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function FeedClose(props: { contract: Contract }) {
|
|
|
|
const { contract } = props
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="relative px-1">
|
|
|
|
<div className="h-8 w-8 bg-gray-200 rounded-full ring-8 ring-gray-50 flex items-center justify-center">
|
|
|
|
<LockClosedIcon
|
|
|
|
className="h-5 w-5 text-gray-500"
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="min-w-0 flex-1 py-1.5">
|
|
|
|
<div className="text-sm text-gray-500">
|
|
|
|
Trading closed in this market{' '}
|
|
|
|
<Timestamp time={contract.closeTime || 0} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function toFeedBet(bet: Bet) {
|
|
|
|
return {
|
|
|
|
id: bet.id,
|
|
|
|
contractId: bet.contractId,
|
|
|
|
userId: bet.userId,
|
|
|
|
type: 'bet',
|
2022-01-10 17:38:44 +00:00
|
|
|
amount: bet.sale ? -bet.sale.amount : bet.amount,
|
2022-01-04 07:21:14 +00:00
|
|
|
outcome: bet.outcome,
|
|
|
|
createdTime: bet.createdTime,
|
|
|
|
date: dayjs(bet.createdTime).fromNow(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toFeedComment(bet: Bet, comment: Comment) {
|
|
|
|
return {
|
|
|
|
id: bet.id,
|
|
|
|
contractId: bet.contractId,
|
|
|
|
userId: bet.userId,
|
|
|
|
type: 'comment',
|
2022-01-10 17:38:44 +00:00
|
|
|
amount: bet.sale ? -bet.sale.amount : bet.amount,
|
2022-01-04 07:21:14 +00:00
|
|
|
outcome: bet.outcome,
|
|
|
|
createdTime: bet.createdTime,
|
|
|
|
date: dayjs(bet.createdTime).fromNow(),
|
|
|
|
|
|
|
|
// Invariant: bet.comment exists
|
|
|
|
text: comment.text,
|
|
|
|
person: {
|
2022-01-13 21:24:14 +00:00
|
|
|
username: comment.userUsername,
|
2022-01-04 07:21:14 +00:00
|
|
|
name: comment.userName,
|
|
|
|
avatarUrl: comment.userAvatarUrl,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-11 16:56:26 +00:00
|
|
|
const DAY_IN_MS = 24 * 60 * 60 * 1000
|
|
|
|
|
2022-01-04 07:21:14 +00:00
|
|
|
// Group together bets that are:
|
2022-01-11 16:56:26 +00:00
|
|
|
// - Within `windowMs` of the first in the group
|
2022-01-04 07:21:14 +00:00
|
|
|
// - Do not have a comment
|
|
|
|
// - Were not created by this user
|
|
|
|
// Return a list of ActivityItems
|
2022-01-11 16:56:26 +00:00
|
|
|
function groupBets(
|
|
|
|
bets: Bet[],
|
|
|
|
comments: Comment[],
|
|
|
|
windowMs: number,
|
|
|
|
userId?: string
|
|
|
|
) {
|
2022-01-04 07:21:14 +00:00
|
|
|
const commentsMap = mapCommentsByBetId(comments)
|
|
|
|
const items: any[] = []
|
|
|
|
let group: Bet[] = []
|
|
|
|
|
|
|
|
// Turn the current group into an ActivityItem
|
|
|
|
function pushGroup() {
|
|
|
|
if (group.length == 1) {
|
|
|
|
items.push(toActivityItem(group[0]))
|
|
|
|
} else if (group.length > 1) {
|
|
|
|
items.push({ type: 'betgroup', bets: [...group], id: group[0].id })
|
|
|
|
}
|
|
|
|
group = []
|
|
|
|
}
|
|
|
|
|
|
|
|
function toActivityItem(bet: Bet) {
|
|
|
|
const comment = commentsMap[bet.id]
|
|
|
|
return comment ? toFeedComment(bet, comment) : toFeedBet(bet)
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const bet of bets) {
|
|
|
|
const isCreator = userId === bet.userId
|
|
|
|
|
|
|
|
if (commentsMap[bet.id] || isCreator) {
|
|
|
|
pushGroup()
|
|
|
|
// Create a single item for this
|
|
|
|
items.push(toActivityItem(bet))
|
|
|
|
} else {
|
|
|
|
if (
|
|
|
|
group.length > 0 &&
|
2022-01-11 16:56:26 +00:00
|
|
|
bet.createdTime - group[0].createdTime > windowMs
|
2022-01-04 07:21:14 +00:00
|
|
|
) {
|
2022-01-11 16:56:26 +00:00
|
|
|
// More than `windowMs` has passed; start a new group
|
2022-01-04 07:21:14 +00:00
|
|
|
pushGroup()
|
|
|
|
}
|
|
|
|
group.push(bet)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (group.length > 0) {
|
|
|
|
pushGroup()
|
|
|
|
}
|
|
|
|
return items as ActivityItem[]
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Make this expandable to show all grouped bets?
|
|
|
|
function FeedBetGroup(props: { activityItem: any }) {
|
|
|
|
const { activityItem } = props
|
|
|
|
const bets: Bet[] = activityItem.bets
|
|
|
|
|
|
|
|
const yesAmount = bets
|
|
|
|
.filter((b) => b.outcome == 'YES')
|
|
|
|
.reduce((acc, bet) => acc + bet.amount, 0)
|
|
|
|
const yesSpan = yesAmount ? (
|
|
|
|
<span>
|
2022-01-04 15:55:34 +00:00
|
|
|
{formatMoney(yesAmount)} on <OutcomeLabel outcome={'YES'} />
|
2022-01-04 07:21:14 +00:00
|
|
|
</span>
|
|
|
|
) : null
|
|
|
|
const noAmount = bets
|
|
|
|
.filter((b) => b.outcome == 'NO')
|
|
|
|
.reduce((acc, bet) => acc + bet.amount, 0)
|
|
|
|
const noSpan = noAmount ? (
|
|
|
|
<span>
|
2022-01-04 15:55:34 +00:00
|
|
|
{formatMoney(noAmount)} on <OutcomeLabel outcome={'NO'} />
|
2022-01-04 07:21:14 +00:00
|
|
|
</span>
|
|
|
|
) : null
|
|
|
|
const traderCount = bets.length
|
|
|
|
const createdTime = bets[0].createdTime
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<div className="relative px-1">
|
|
|
|
<div className="h-8 w-8 bg-gray-200 rounded-full ring-8 ring-gray-50 flex items-center justify-center">
|
|
|
|
<UsersIcon className="h-5 w-5 text-gray-500" aria-hidden="true" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="min-w-0 flex-1 py-1.5">
|
|
|
|
<div className="text-sm text-gray-500">
|
2022-01-11 16:56:26 +00:00
|
|
|
<span>{traderCount} traders</span> placed {yesSpan}
|
2022-01-04 07:21:14 +00:00
|
|
|
{yesAmount && noAmount ? ' and ' : ''}
|
|
|
|
{noSpan} <Timestamp time={createdTime} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Missing feed items:
|
|
|
|
// - Bet sold?
|
|
|
|
type ActivityItem = {
|
|
|
|
id: string
|
|
|
|
type: 'bet' | 'comment' | 'start' | 'betgroup' | 'close' | 'resolve'
|
|
|
|
}
|
|
|
|
|
2022-01-11 16:56:26 +00:00
|
|
|
export function ContractFeed(props: {
|
|
|
|
contract: Contract
|
2022-01-15 00:16:25 +00:00
|
|
|
bets: Bet[]
|
|
|
|
comments: Comment[]
|
2022-01-11 16:56:26 +00:00
|
|
|
// Feed types: 'activity' = Activity feed, 'market' = Comments feed on a market
|
|
|
|
feedType: 'activity' | 'market'
|
|
|
|
}) {
|
|
|
|
const { contract, feedType } = props
|
2022-01-04 07:21:14 +00:00
|
|
|
const { id } = contract
|
|
|
|
const user = useUser()
|
|
|
|
|
2022-01-15 00:16:25 +00:00
|
|
|
let bets = useBets(id) ?? props.bets
|
2022-01-13 17:01:20 +00:00
|
|
|
bets = withoutAnteBets(contract, bets)
|
2022-01-04 07:21:14 +00:00
|
|
|
|
2022-01-15 00:16:25 +00:00
|
|
|
const comments = useComments(id) ?? props.comments
|
2022-01-04 07:21:14 +00:00
|
|
|
|
2022-01-11 16:56:26 +00:00
|
|
|
const groupWindow = feedType == 'activity' ? 10 * DAY_IN_MS : DAY_IN_MS
|
|
|
|
|
2022-01-04 07:21:14 +00:00
|
|
|
const allItems = [
|
|
|
|
{ type: 'start', id: 0 },
|
2022-01-11 16:56:26 +00:00
|
|
|
...groupBets(bets, comments, groupWindow, user?.id),
|
2022-01-04 07:21:14 +00:00
|
|
|
]
|
2022-01-04 07:41:52 +00:00
|
|
|
if (contract.closeTime && contract.closeTime <= Date.now()) {
|
2022-01-04 07:21:14 +00:00
|
|
|
allItems.push({ type: 'close', id: `${contract.closeTime}` })
|
|
|
|
}
|
|
|
|
if (contract.resolution) {
|
|
|
|
allItems.push({ type: 'resolve', id: `${contract.resolutionTime}` })
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="flow-root">
|
|
|
|
<ul role="list" className="-mb-8">
|
|
|
|
{allItems.map((activityItem, activityItemIdx) => (
|
|
|
|
<li key={activityItem.id}>
|
|
|
|
<div className="relative pb-8">
|
|
|
|
{activityItemIdx !== allItems.length - 1 ? (
|
|
|
|
<span
|
|
|
|
className="absolute top-5 left-5 -ml-px h-full w-0.5 bg-gray-200"
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
<div className="relative flex items-start space-x-3">
|
|
|
|
{activityItem.type === 'start' ? (
|
2022-01-11 16:56:26 +00:00
|
|
|
feedType == 'activity' ? (
|
|
|
|
<FeedQuestion contract={contract} />
|
|
|
|
) : (
|
|
|
|
<FeedDescription contract={contract} />
|
|
|
|
)
|
2022-01-04 07:21:14 +00:00
|
|
|
) : activityItem.type === 'comment' ? (
|
|
|
|
<FeedComment activityItem={activityItem} />
|
|
|
|
) : activityItem.type === 'bet' ? (
|
|
|
|
<FeedBet activityItem={activityItem} />
|
|
|
|
) : activityItem.type === 'betgroup' ? (
|
|
|
|
<FeedBetGroup activityItem={activityItem} />
|
|
|
|
) : activityItem.type === 'close' ? (
|
|
|
|
<FeedClose contract={contract} />
|
|
|
|
) : activityItem.type === 'resolve' ? (
|
|
|
|
<FeedResolve contract={contract} />
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|