// From https://tailwindui.com/components/application-ui/lists/feeds import { ReactChild, useState } from 'react' import _ from 'lodash' import { BanIcon, ChatAltIcon, CheckIcon, DotsVerticalIcon, LockClosedIcon, StarIcon, UserIcon, UsersIcon, XIcon, } from '@heroicons/react/solid' import dayjs from 'dayjs' import relativeTime from 'dayjs/plugin/relativeTime' dayjs.extend(relativeTime) import { OutcomeLabel } from './outcome-label' import { contractMetrics, Contract, contractPath, updateContract, } from '../lib/firebase/contracts' 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' import { formatMoney } from '../lib/util/format' import { ResolutionOrChance } from './contract-card' import { SiteLink } from './site-link' import { Col } from './layout/col' import { UserLink } from './user-page' import { DateTimeTooltip } from './datetime-tooltip' import { useBets } from '../hooks/use-bets' import { Bet, withoutAnteBets } from '../lib/firebase/bets' import { Comment, mapCommentsByBetId } from '../lib/firebase/comments' import { JoinSpans } from './join-spans' import Textarea from 'react-expanding-textarea' import { outcome } from '../../common/contract' export function AvatarWithIcon(props: { username: string; avatarUrl: string }) { const { username, avatarUrl } = props return ( ) } function FeedComment(props: { activityItem: any moreHref: string feedType: 'activity' | 'market' }) { const { activityItem, moreHref, feedType } = props const { person, text, amount, outcome, createdTime } = activityItem const bought = amount >= 0 ? 'bought' : 'sold' const money = formatMoney(Math.abs(amount)) return ( <>

{' '} {bought} {money} of {' '}

) } function Timestamp(props: { time: number }) { const { time } = props return ( {dayjs(time).fromNow()} ) } function FeedBet(props: { activityItem: any }) { const { activityItem } = props const { id, contractId, amount, outcome, createdTime } = activityItem const user = useUser() const isCreator = user?.id == activityItem.userId // The creator can comment if the bet was posted in the last hour const canComment = isCreator && Date.now() - createdTime < 60 * 60 * 1000 const [comment, setComment] = useState('') async function submitComment() { if (!user || !comment) return await createComment(contractId, id, comment, user) } const bought = amount >= 0 ? 'bought' : 'sold' const money = formatMoney(Math.abs(amount)) return ( <>
{isCreator ? 'You' : 'A trader'} {bought} {money} of{' '} {canComment && ( // Allow user to comment in an textarea if they are the creator