manifold/web/components/contracts-list.tsx

189 lines
5.3 KiB
TypeScript
Raw Normal View History

2021-12-16 21:20:49 +00:00
import _ from 'lodash'
2021-12-14 10:27:22 +00:00
import Link from 'next/link'
2021-12-16 06:11:14 +00:00
import clsx from 'clsx'
import { useEffect, useState } from 'react'
2021-12-16 21:20:49 +00:00
import { Row } from '../components/layout/row'
import {
compute,
Contract,
listContracts,
path,
} from '../lib/firebase/contracts'
import { formatMoney } from '../lib/util/format'
import { User } from '../lib/firebase/users'
2021-12-16 02:11:29 +00:00
import { UserLink } from './user-page'
2021-12-19 09:17:25 +00:00
import { Linkify } from './linkify'
2021-12-14 10:27:22 +00:00
export function ContractDetails(props: { contract: Contract }) {
const { contract } = props
const { truePool, createdDate, resolvedDate } = compute(contract)
2021-12-14 10:27:22 +00:00
return (
<Row className="flex-wrap text-sm text-gray-500">
2021-12-16 02:04:36 +00:00
<div className="whitespace-nowrap">
2021-12-18 07:27:29 +00:00
<UserLink username={contract.creatorUsername} />
2021-12-16 02:04:36 +00:00
</div>
2021-12-14 10:27:22 +00:00
<div className="mx-2"></div>
<div className="whitespace-nowrap">
{resolvedDate ? `${createdDate} - ${resolvedDate}` : createdDate}
</div>
2021-12-14 10:27:22 +00:00
<div className="mx-2"></div>
<div className="whitespace-nowrap">{formatMoney(truePool)} pool</div>
2021-12-14 10:27:22 +00:00
</Row>
)
}
function ContractCard(props: { contract: Contract }) {
const { contract } = props
const { probPercent } = compute(contract)
2021-12-14 17:43:51 +00:00
const resolutionColor = {
YES: 'text-primary',
NO: 'text-red-400',
CANCEL: 'text-yellow-400',
'': '', // Empty if unresolved
}[contract.resolution || '']
const resolutionText = {
YES: 'YES',
NO: 'NO',
CANCEL: 'N/A',
'': '',
}[contract.resolution || '']
2021-12-14 10:27:22 +00:00
return (
<Link href={path(contract)}>
2021-12-14 10:27:22 +00:00
<a>
<li className="col-span-1 bg-white hover:bg-gray-100 shadow-xl rounded-lg divide-y divide-gray-200">
<div className="card">
<div className="card-body p-6">
2021-12-18 23:40:39 +00:00
<Row className="justify-between gap-4 mb-2">
2021-12-16 06:11:14 +00:00
<p className="font-medium text-indigo-700">
2021-12-19 09:08:12 +00:00
<Linkify text={contract.question} />
2021-12-16 06:11:14 +00:00
</p>
<div className={clsx('text-4xl', resolutionColor)}>
{resolutionText || (
<div className="text-primary">
{probPercent}
<div className="text-lg">chance</div>
</div>
)}
2021-12-14 10:27:22 +00:00
</div>
2021-12-16 06:11:14 +00:00
</Row>
<ContractDetails contract={contract} />
2021-12-14 10:27:22 +00:00
</div>
</div>
</li>
</a>
</Link>
)
}
2021-12-16 02:50:03 +00:00
function ContractsGrid(props: { contracts: Contract[] }) {
2021-12-16 21:20:49 +00:00
const [resolvedContracts, activeContracts] = _.partition(
props.contracts,
(c) => c.isResolved
)
const contracts = [...activeContracts, ...resolvedContracts]
if (contracts.length === 0) {
return (
2021-12-18 23:40:39 +00:00
<p className="mx-4">
No markets found. Would you like to{' '}
<Link href="/create">
<a className="text-green-500 hover:underline hover:decoration-2">
create one
</a>
</Link>
?
</p>
)
}
2021-12-14 10:27:22 +00:00
return (
<ul role="list" className="grid grid-cols-1 gap-6 lg:grid-cols-2">
2021-12-14 10:27:22 +00:00
{contracts.map((contract) => (
<ContractCard contract={contract} key={contract.id} />
))}
</ul>
)
}
type Sort = 'createdTime' | 'pool' | 'resolved' | 'all'
2021-12-16 02:50:03 +00:00
export function SearchableGrid(props: {
contracts: Contract[]
defaultSort?: Sort
}) {
const { contracts, defaultSort } = props
const [query, setQuery] = useState('')
const [sort, setSort] = useState(defaultSort || 'pool')
2021-12-16 02:50:03 +00:00
function check(corpus: String) {
return corpus.toLowerCase().includes(query.toLowerCase())
}
let matches = contracts.filter(
2021-12-18 07:29:42 +00:00
(c) =>
check(c.question) ||
check(c.description) ||
check(c.creatorName) ||
check(c.creatorUsername)
2021-12-16 02:50:03 +00:00
)
if (sort === 'createdTime' || sort === 'resolved' || sort === 'all') {
matches.sort((a, b) => b.createdTime - a.createdTime)
} else if (sort === 'pool') {
matches.sort((a, b) => compute(b).truePool - compute(a).truePool)
2021-12-16 02:50:03 +00:00
}
if (sort !== 'all') {
// Filter for (or filter out) resolved contracts
matches = matches.filter((c) =>
sort === 'resolved' ? c.resolution : !c.resolution
)
}
return (
<div>
{/* Show a search input next to a sort dropdown */}
2021-12-18 12:06:59 +00:00
<div className="flex justify-between gap-2 mt-2 mb-8">
2021-12-16 02:50:03 +00:00
<input
type="text"
value={query}
onChange={(e) => setQuery(e.target.value)}
placeholder="Search markets"
className="input input-bordered w-full"
/>
<select
className="select select-bordered"
value={sort}
onChange={(e) => setSort(e.target.value as Sort)}
>
<option value="pool">Most traded</option>
2021-12-16 02:50:03 +00:00
<option value="createdTime">Newest first</option>
<option value="resolved">Resolved</option>
<option value="all">All markets</option>
</select>
</div>
<ContractsGrid contracts={matches} />
</div>
)
}
export function ContractsList(props: { creator: User }) {
const { creator } = props
const [contracts, setContracts] = useState<Contract[] | 'loading'>('loading')
useEffect(() => {
if (creator?.id) {
2021-12-14 01:23:57 +00:00
// TODO: stream changes from firestore
listContracts(creator.id).then(setContracts)
}
}, [creator])
2021-12-19 21:05:39 +00:00
if (contracts === 'loading') return <></>
return <SearchableGrid contracts={contracts} defaultSort="all" />
}