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'
|
2021-12-14 01:07:28 +00:00
|
|
|
import { useEffect, useState } from 'react'
|
2021-12-16 21:20:49 +00:00
|
|
|
|
2022-01-12 19:01:04 +00:00
|
|
|
import {
|
|
|
|
contractMetrics,
|
|
|
|
Contract,
|
|
|
|
listContracts,
|
|
|
|
} from '../lib/firebase/contracts'
|
2021-12-16 01:34:36 +00:00
|
|
|
import { User } from '../lib/firebase/users'
|
2021-12-30 20:03:32 +00:00
|
|
|
import { Col } from './layout/col'
|
2021-12-31 19:17:32 +00:00
|
|
|
import { SiteLink } from './site-link'
|
2022-01-02 19:09:01 +00:00
|
|
|
import { ContractCard } from './contract-card'
|
2022-01-02 22:46:04 +00:00
|
|
|
import { Sort, useQueryAndSortParams } from '../hooks/use-sort-and-query-params'
|
2021-12-14 10:27:22 +00:00
|
|
|
|
2022-01-09 21:21:30 +00:00
|
|
|
export function ContractsGrid(props: {
|
|
|
|
contracts: Contract[]
|
|
|
|
showHotVolume?: boolean
|
2022-01-17 22:54:00 +00:00
|
|
|
showCloseTime?: boolean
|
2022-01-09 21:21:30 +00:00
|
|
|
}) {
|
2022-02-18 02:32:15 +00:00
|
|
|
const { showCloseTime } = props
|
2022-01-09 21:21:30 +00:00
|
|
|
|
2021-12-16 21:20:49 +00:00
|
|
|
const [resolvedContracts, activeContracts] = _.partition(
|
|
|
|
props.contracts,
|
|
|
|
(c) => c.isResolved
|
|
|
|
)
|
2022-01-15 23:56:02 +00:00
|
|
|
const contracts = [...activeContracts, ...resolvedContracts].slice(
|
|
|
|
0,
|
|
|
|
MAX_CONTRACTS_DISPLAYED
|
|
|
|
)
|
2021-12-16 21:20:49 +00:00
|
|
|
|
2021-12-18 10:28:01 +00:00
|
|
|
if (contracts.length === 0) {
|
|
|
|
return (
|
2022-02-11 18:40:22 +00:00
|
|
|
<p className="mx-2 text-gray-500">
|
2022-02-18 02:32:15 +00:00
|
|
|
No markets found. Why not{' '}
|
|
|
|
<SiteLink href="/home" className="font-bold text-gray-700">
|
|
|
|
create one?
|
|
|
|
</SiteLink>
|
2021-12-18 10:28:01 +00:00
|
|
|
</p>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-14 10:27:22 +00:00
|
|
|
return (
|
2022-02-11 18:40:22 +00:00
|
|
|
<ul className="grid w-full grid-cols-1 gap-6 md:grid-cols-2">
|
2021-12-14 10:27:22 +00:00
|
|
|
{contracts.map((contract) => (
|
2022-01-09 21:21:30 +00:00
|
|
|
<ContractCard
|
|
|
|
contract={contract}
|
|
|
|
key={contract.id}
|
2022-01-19 22:01:18 +00:00
|
|
|
// showHotVolume={showHotVolume}
|
2022-01-24 07:38:29 +00:00
|
|
|
showCloseTime={showCloseTime}
|
2022-01-09 21:21:30 +00:00
|
|
|
/>
|
2021-12-14 10:27:22 +00:00
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
)
|
|
|
|
}
|
2021-12-10 17:54:16 +00:00
|
|
|
|
2021-12-30 22:31:04 +00:00
|
|
|
const MAX_GROUPED_CONTRACTS_DISPLAYED = 6
|
|
|
|
|
2022-01-02 19:09:01 +00:00
|
|
|
function CreatorContractsGrid(props: { contracts: Contract[] }) {
|
2021-12-30 20:03:32 +00:00
|
|
|
const { contracts } = props
|
|
|
|
|
|
|
|
const byCreator = _.groupBy(contracts, (contract) => contract.creatorId)
|
2022-01-09 21:55:10 +00:00
|
|
|
const creator7DayVol = _.mapValues(byCreator, (contracts) =>
|
|
|
|
_.sumBy(contracts, (contract) => contract.volume7Days)
|
|
|
|
)
|
|
|
|
const creatorIds = _.sortBy(
|
2022-01-15 23:56:02 +00:00
|
|
|
Object.keys(byCreator),
|
2022-01-09 21:55:10 +00:00
|
|
|
(creatorId) => -1 * creator7DayVol[creatorId]
|
2021-12-30 20:03:32 +00:00
|
|
|
)
|
|
|
|
|
2022-01-15 23:56:02 +00:00
|
|
|
let numContracts = 0
|
|
|
|
let maxIndex = 0
|
|
|
|
for (; maxIndex < creatorIds.length; maxIndex++) {
|
|
|
|
numContracts += Math.min(
|
|
|
|
MAX_GROUPED_CONTRACTS_DISPLAYED,
|
|
|
|
byCreator[creatorIds[maxIndex]].length
|
|
|
|
)
|
|
|
|
if (numContracts > MAX_CONTRACTS_DISPLAYED) break
|
|
|
|
}
|
|
|
|
|
|
|
|
const creatorIdsSubset = creatorIds.slice(0, maxIndex)
|
|
|
|
|
2021-12-30 20:03:32 +00:00
|
|
|
return (
|
|
|
|
<Col className="gap-6">
|
2022-01-15 23:56:02 +00:00
|
|
|
{creatorIdsSubset.map((creatorId) => {
|
2021-12-30 20:03:32 +00:00
|
|
|
const { creatorUsername, creatorName } = byCreator[creatorId][0]
|
|
|
|
|
|
|
|
return (
|
2022-01-02 22:46:04 +00:00
|
|
|
<Col className="gap-4" key={creatorUsername}>
|
2021-12-30 22:31:04 +00:00
|
|
|
<SiteLink className="text-lg" href={`/${creatorUsername}`}>
|
|
|
|
{creatorName}
|
|
|
|
</SiteLink>
|
|
|
|
|
|
|
|
<ul role="list" className="grid grid-cols-1 gap-4 lg:grid-cols-2">
|
|
|
|
{byCreator[creatorId]
|
|
|
|
.slice(0, MAX_GROUPED_CONTRACTS_DISPLAYED)
|
|
|
|
.map((contract) => (
|
|
|
|
<ContractCard contract={contract} key={contract.id} />
|
|
|
|
))}
|
2021-12-30 20:03:32 +00:00
|
|
|
</ul>
|
|
|
|
|
2021-12-30 22:31:04 +00:00
|
|
|
{byCreator[creatorId].length > MAX_GROUPED_CONTRACTS_DISPLAYED ? (
|
2021-12-30 20:03:32 +00:00
|
|
|
<Link href={`/${creatorUsername}`}>
|
|
|
|
<a
|
|
|
|
className={clsx(
|
|
|
|
'self-end hover:underline hover:decoration-indigo-400 hover:decoration-2'
|
|
|
|
)}
|
|
|
|
onClick={(e) => e.stopPropagation()}
|
|
|
|
>
|
|
|
|
See all
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
) : (
|
|
|
|
<div />
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-01-02 19:09:01 +00:00
|
|
|
function TagContractsGrid(props: { contracts: Contract[] }) {
|
2021-12-31 19:41:37 +00:00
|
|
|
const { contracts } = props
|
|
|
|
|
2022-01-30 21:30:49 +00:00
|
|
|
const contractTags = _.flatMap(contracts, (contract) => {
|
|
|
|
const { tags } = contract
|
|
|
|
return tags.map((tag) => ({
|
2021-12-31 19:41:37 +00:00
|
|
|
tag,
|
|
|
|
contract,
|
|
|
|
}))
|
2022-01-30 21:30:49 +00:00
|
|
|
})
|
2021-12-31 19:41:37 +00:00
|
|
|
const groupedByTag = _.groupBy(contractTags, ({ tag }) => tag)
|
|
|
|
const byTag = _.mapValues(groupedByTag, (contractTags) =>
|
|
|
|
contractTags.map(({ contract }) => contract)
|
|
|
|
)
|
2022-01-09 21:55:10 +00:00
|
|
|
const tag7DayVol = _.mapValues(byTag, (contracts) =>
|
|
|
|
_.sumBy(contracts, (contract) => contract.volume7Days)
|
|
|
|
)
|
|
|
|
const tags = _.sortBy(
|
2022-01-15 23:56:02 +00:00
|
|
|
Object.keys(byTag),
|
2022-01-09 21:55:10 +00:00
|
|
|
(creatorId) => -1 * tag7DayVol[creatorId]
|
2021-12-31 19:41:37 +00:00
|
|
|
)
|
|
|
|
|
2022-01-15 23:56:02 +00:00
|
|
|
let numContracts = 0
|
|
|
|
let maxIndex = 0
|
|
|
|
for (; maxIndex < tags.length; maxIndex++) {
|
|
|
|
numContracts += Math.min(
|
|
|
|
MAX_GROUPED_CONTRACTS_DISPLAYED,
|
|
|
|
byTag[tags[maxIndex]].length
|
|
|
|
)
|
|
|
|
if (numContracts > MAX_CONTRACTS_DISPLAYED) break
|
|
|
|
}
|
|
|
|
|
|
|
|
const tagsSubset = tags.slice(0, maxIndex)
|
|
|
|
|
2021-12-31 19:41:37 +00:00
|
|
|
return (
|
|
|
|
<Col className="gap-6">
|
2022-01-15 23:56:02 +00:00
|
|
|
{tagsSubset.map((tag) => {
|
2021-12-31 19:41:37 +00:00
|
|
|
return (
|
2022-01-02 22:46:04 +00:00
|
|
|
<Col className="gap-4" key={tag}>
|
2021-12-31 19:41:37 +00:00
|
|
|
<SiteLink className="text-lg" href={`/tag/${tag}`}>
|
|
|
|
#{tag}
|
|
|
|
</SiteLink>
|
|
|
|
|
|
|
|
<ul role="list" className="grid grid-cols-1 gap-4 lg:grid-cols-2">
|
|
|
|
{byTag[tag]
|
|
|
|
.slice(0, MAX_GROUPED_CONTRACTS_DISPLAYED)
|
|
|
|
.map((contract) => (
|
|
|
|
<ContractCard contract={contract} key={contract.id} />
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{byTag[tag].length > MAX_GROUPED_CONTRACTS_DISPLAYED ? (
|
|
|
|
<Link href={`/tag/${tag}`}>
|
|
|
|
<a
|
|
|
|
className={clsx(
|
|
|
|
'self-end hover:underline hover:decoration-indigo-400 hover:decoration-2'
|
|
|
|
)}
|
|
|
|
onClick={(e) => e.stopPropagation()}
|
|
|
|
>
|
|
|
|
See all
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
) : (
|
|
|
|
<div />
|
|
|
|
)}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-30 18:35:29 +00:00
|
|
|
const MAX_CONTRACTS_DISPLAYED = 99
|
|
|
|
|
2021-12-16 02:50:03 +00:00
|
|
|
export function SearchableGrid(props: {
|
|
|
|
contracts: Contract[]
|
2022-01-02 22:46:04 +00:00
|
|
|
query: string
|
|
|
|
setQuery: (query: string) => void
|
|
|
|
sort: Sort
|
|
|
|
setSort: (sort: Sort) => void
|
2021-12-30 20:03:32 +00:00
|
|
|
byOneCreator?: boolean
|
2021-12-16 02:50:03 +00:00
|
|
|
}) {
|
2022-01-02 22:46:04 +00:00
|
|
|
const { contracts, query, setQuery, sort, setSort, byOneCreator } = props
|
2021-12-16 02:50:03 +00:00
|
|
|
|
2022-03-01 01:52:41 +00:00
|
|
|
const queryWords = query.toLowerCase().split(' ')
|
2021-12-16 02:50:03 +00:00
|
|
|
function check(corpus: String) {
|
2022-03-01 01:52:41 +00:00
|
|
|
return queryWords.every((word) => corpus.toLowerCase().includes(word))
|
2021-12-16 02:50:03 +00:00
|
|
|
}
|
2022-03-01 01:52:41 +00:00
|
|
|
|
2021-12-16 02:50:03 +00:00
|
|
|
let matches = contracts.filter(
|
2021-12-18 07:29:42 +00:00
|
|
|
(c) =>
|
|
|
|
check(c.question) ||
|
|
|
|
check(c.description) ||
|
|
|
|
check(c.creatorName) ||
|
2022-01-30 21:30:49 +00:00
|
|
|
check(c.creatorUsername) ||
|
2022-02-24 23:35:30 +00:00
|
|
|
check(c.lowercaseTags.map((tag) => `#${tag}`).join(' ')) ||
|
|
|
|
check((c.answers ?? []).map((answer) => answer.text).join(' '))
|
2021-12-16 02:50:03 +00:00
|
|
|
)
|
|
|
|
|
2022-01-23 17:14:04 +00:00
|
|
|
if (sort === 'newest' || sort === 'all') {
|
2021-12-16 02:50:03 +00:00
|
|
|
matches.sort((a, b) => b.createdTime - a.createdTime)
|
2022-01-23 17:14:04 +00:00
|
|
|
} else if (sort === 'resolved') {
|
|
|
|
matches = _.sortBy(
|
|
|
|
matches,
|
|
|
|
(contract) => -1 * (contract.resolutionTime ?? 0)
|
|
|
|
)
|
2022-02-04 22:04:30 +00:00
|
|
|
} else if (sort === 'oldest') {
|
|
|
|
matches.sort((a, b) => a.createdTime - b.createdTime)
|
2022-01-23 19:34:03 +00:00
|
|
|
} else if (sort === 'close-date') {
|
2022-01-24 06:31:52 +00:00
|
|
|
matches = _.sortBy(matches, ({ volume24Hours }) => -1 * volume24Hours)
|
2022-01-23 19:34:03 +00:00
|
|
|
matches = _.sortBy(matches, (contract) => contract.closeTime)
|
2022-01-24 07:38:29 +00:00
|
|
|
// Hide contracts that have already closed
|
|
|
|
matches = matches.filter(({ closeTime }) => (closeTime || 0) > Date.now())
|
2022-01-09 21:55:10 +00:00
|
|
|
} else if (sort === 'most-traded') {
|
2022-01-12 19:01:04 +00:00
|
|
|
matches.sort(
|
|
|
|
(a, b) => contractMetrics(b).truePool - contractMetrics(a).truePool
|
|
|
|
)
|
2022-01-24 06:31:52 +00:00
|
|
|
} else if (sort === '24-hour-vol') {
|
|
|
|
// Use lodash for stable sort, so previous sort breaks all ties.
|
|
|
|
matches = _.sortBy(matches, ({ volume7Days }) => -1 * volume7Days)
|
|
|
|
matches = _.sortBy(matches, ({ volume24Hours }) => -1 * volume24Hours)
|
2022-01-09 21:55:10 +00:00
|
|
|
} else if (sort === 'creator' || sort === 'tag') {
|
|
|
|
matches.sort((a, b) => b.volume7Days - a.volume7Days)
|
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 */}
|
2022-02-11 18:40:22 +00:00
|
|
|
<div className="mt-2 mb-8 flex justify-between gap-2">
|
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)}
|
|
|
|
>
|
2022-01-02 22:46:04 +00:00
|
|
|
<option value="most-traded">Most traded</option>
|
2022-02-03 09:48:44 +00:00
|
|
|
<option value="24-hour-vol">24h volume</option>
|
2022-01-24 06:31:52 +00:00
|
|
|
<option value="close-date">Closing soon</option>
|
2022-01-02 22:46:04 +00:00
|
|
|
<option value="newest">Newest</option>
|
2022-02-04 22:04:30 +00:00
|
|
|
<option value="oldest">Oldest</option>
|
2022-01-24 06:31:52 +00:00
|
|
|
|
|
|
|
<option value="tag">By tag</option>
|
|
|
|
{!byOneCreator && <option value="creator">By creator</option>}
|
2021-12-16 02:50:03 +00:00
|
|
|
<option value="resolved">Resolved</option>
|
2022-01-24 06:31:52 +00:00
|
|
|
{byOneCreator && <option value="all">All markets</option>}
|
2021-12-16 02:50:03 +00:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2021-12-31 19:41:37 +00:00
|
|
|
{sort === 'tag' ? (
|
|
|
|
<TagContractsGrid contracts={matches} />
|
2022-01-23 17:14:04 +00:00
|
|
|
) : !byOneCreator && sort === 'creator' ? (
|
2021-12-30 20:03:32 +00:00
|
|
|
<CreatorContractsGrid contracts={matches} />
|
|
|
|
) : (
|
2022-01-24 07:38:29 +00:00
|
|
|
<ContractsGrid
|
|
|
|
contracts={matches}
|
|
|
|
showCloseTime={sort == 'close-date'}
|
|
|
|
/>
|
2021-12-30 20:03:32 +00:00
|
|
|
)}
|
2021-12-16 02:50:03 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-30 20:03:32 +00:00
|
|
|
export function CreatorContractsList(props: { creator: User }) {
|
2021-12-16 01:34:36 +00:00
|
|
|
const { creator } = props
|
2021-12-19 20:37:31 +00:00
|
|
|
const [contracts, setContracts] = useState<Contract[] | 'loading'>('loading')
|
2021-12-14 01:07:28 +00:00
|
|
|
|
2022-01-02 22:46:04 +00:00
|
|
|
const { query, setQuery, sort, setSort } = useQueryAndSortParams({
|
|
|
|
defaultSort: 'all',
|
|
|
|
})
|
|
|
|
|
2021-12-14 01:07:28 +00:00
|
|
|
useEffect(() => {
|
|
|
|
if (creator?.id) {
|
2021-12-14 01:23:57 +00:00
|
|
|
// TODO: stream changes from firestore
|
2021-12-14 01:07:28 +00:00
|
|
|
listContracts(creator.id).then(setContracts)
|
|
|
|
}
|
|
|
|
}, [creator])
|
|
|
|
|
2021-12-19 21:05:39 +00:00
|
|
|
if (contracts === 'loading') return <></>
|
|
|
|
|
2022-01-02 22:46:04 +00:00
|
|
|
return (
|
|
|
|
<SearchableGrid
|
|
|
|
contracts={contracts}
|
|
|
|
byOneCreator
|
|
|
|
query={query}
|
|
|
|
setQuery={setQuery}
|
|
|
|
sort={sort}
|
|
|
|
setSort={setSort}
|
|
|
|
/>
|
|
|
|
)
|
2021-12-10 17:54:16 +00:00
|
|
|
}
|