Support description editing from contract feed
This commit is contained in:
parent
1271da24b7
commit
933d4aae84
|
@ -1,15 +1,15 @@
|
||||||
// From https://tailwindui.com/components/application-ui/lists/feeds
|
// From https://tailwindui.com/components/application-ui/lists/feeds
|
||||||
import { Fragment, useState } from 'react'
|
import { useState } from 'react'
|
||||||
import { ChatAltIcon, StarIcon, UserCircleIcon } from '@heroicons/react/solid'
|
import { ChatAltIcon, StarIcon, UserCircleIcon } from '@heroicons/react/solid'
|
||||||
import { useBets } from '../hooks/use-bets'
|
import { useBets } from '../hooks/use-bets'
|
||||||
import { Bet, createComment } from '../lib/firebase/bets'
|
import { Bet, createComment } from '../lib/firebase/bets'
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import relativeTime from 'dayjs/plugin/relativeTime'
|
import relativeTime from 'dayjs/plugin/relativeTime'
|
||||||
import { Contract } from '../lib/firebase/contracts'
|
|
||||||
import { OutcomeLabel } from './outcome-label'
|
import { OutcomeLabel } from './outcome-label'
|
||||||
|
import { Contract, setContract } from '../lib/firebase/contracts'
|
||||||
import { useUser } from '../hooks/use-user'
|
import { useUser } from '../hooks/use-user'
|
||||||
import { User } from '../lib/firebase/users'
|
|
||||||
import { Linkify } from './linkify'
|
import { Linkify } from './linkify'
|
||||||
|
import { Row } from './layout/row'
|
||||||
dayjs.extend(relativeTime)
|
dayjs.extend(relativeTime)
|
||||||
|
|
||||||
function FeedComment(props: { activityItem: any }) {
|
function FeedComment(props: { activityItem: any }) {
|
||||||
|
@ -60,14 +60,15 @@ function Timestamp(props: { time: number }) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function FeedBet(props: { activityItem: any; user: User | null }) {
|
function FeedBet(props: { activityItem: any }) {
|
||||||
const { activityItem, user } = props
|
const { activityItem } = props
|
||||||
const { id, contractId, amount, outcome, createdTime } = activityItem
|
const { id, contractId, amount, outcome, createdTime } = activityItem
|
||||||
|
const user = useUser()
|
||||||
const isCreator = user?.id == activityItem.userId
|
const isCreator = user?.id == activityItem.userId
|
||||||
|
|
||||||
const [comment, setComment] = useState('')
|
const [comment, setComment] = useState('')
|
||||||
async function submitComment() {
|
async function submitComment() {
|
||||||
if (!user) return
|
if (!user || !comment) return
|
||||||
await createComment(contractId, id, comment, user)
|
await createComment(contractId, id, comment, user)
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
|
@ -97,7 +98,7 @@ function FeedBet(props: { activityItem: any; user: User | null }) {
|
||||||
placeholder="Add a comment..."
|
placeholder="Add a comment..."
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
className="btn btn-primary btn-outline btn-sm mt-1"
|
className="btn btn-outline btn-sm mt-1"
|
||||||
onClick={submitComment}
|
onClick={submitComment}
|
||||||
>
|
>
|
||||||
Comment
|
Comment
|
||||||
|
@ -110,8 +111,79 @@ function FeedBet(props: { activityItem: any; user: User | null }) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
contract.description = `${contract.description}\n${description}`.trim()
|
||||||
|
await setContract(contract)
|
||||||
|
setDescription(editStatement())
|
||||||
|
}
|
||||||
|
|
||||||
|
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>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
function FeedStart(props: { contract: Contract }) {
|
function FeedStart(props: { contract: Contract }) {
|
||||||
const { contract } = props
|
const { contract } = props
|
||||||
|
const user = useUser()
|
||||||
|
const isCreator = user?.id === contract.creatorId
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div>
|
<div>
|
||||||
|
@ -126,12 +198,7 @@ function FeedStart(props: { contract: Contract }) {
|
||||||
<span className="text-gray-900">{contract.creatorName}</span> created
|
<span className="text-gray-900">{contract.creatorName}</span> created
|
||||||
this market <Timestamp time={contract.createdTime} />
|
this market <Timestamp time={contract.createdTime} />
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-2 text-gray-700">
|
<ContractDescription contract={contract} isCreator={isCreator} />
|
||||||
<p className="whitespace-pre-wrap">
|
|
||||||
<Linkify text={contract.description} />
|
|
||||||
{/* TODO: Allow creator to update the description */}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
@ -209,7 +276,7 @@ export function ContractFeed(props: { contract: Contract }) {
|
||||||
) : activityItem.type === 'comment' ? (
|
) : activityItem.type === 'comment' ? (
|
||||||
<FeedComment activityItem={activityItem} />
|
<FeedComment activityItem={activityItem} />
|
||||||
) : activityItem.type === 'bet' ? (
|
) : activityItem.type === 'bet' ? (
|
||||||
<FeedBet activityItem={activityItem} user={user || null} />
|
<FeedBet activityItem={activityItem} />
|
||||||
) : null}
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,10 +1,4 @@
|
||||||
import { useState } from 'react'
|
import { compute, Contract, deleteContract } from '../lib/firebase/contracts'
|
||||||
import {
|
|
||||||
compute,
|
|
||||||
Contract,
|
|
||||||
deleteContract,
|
|
||||||
setContract,
|
|
||||||
} from '../lib/firebase/contracts'
|
|
||||||
import { Col } from './layout/col'
|
import { Col } from './layout/col'
|
||||||
import { Spacer } from './layout/spacer'
|
import { Spacer } from './layout/spacer'
|
||||||
import { ContractProbGraph } from './contract-prob-graph'
|
import { ContractProbGraph } from './contract-prob-graph'
|
||||||
|
@ -30,74 +24,6 @@ function ContractCloseTime(props: { contract: Contract }) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
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)
|
|
||||||
contract.description = `${contract.description}\n${description}`.trim()
|
|
||||||
await setContract(contract)
|
|
||||||
setDescription(editStatement())
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="whitespace-pre-line break-words">
|
|
||||||
<Linkify text={contract.description} />
|
|
||||||
<br />
|
|
||||||
{isCreator &&
|
|
||||||
!contract.resolution &&
|
|
||||||
(editing ? (
|
|
||||||
<form className="mt-4">
|
|
||||||
<textarea
|
|
||||||
className="textarea h-24 textarea-bordered w-full mb-2"
|
|
||||||
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-4 justify-end">
|
|
||||||
<button
|
|
||||||
className="btn btn-error btn-outline btn-sm mt-2"
|
|
||||||
onClick={() => setEditing(false)}
|
|
||||||
>
|
|
||||||
Cancel
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
className="btn btn-neutral btn-outline btn-sm mt-2"
|
|
||||||
onClick={saveDescription}
|
|
||||||
>
|
|
||||||
Save
|
|
||||||
</button>
|
|
||||||
</Row>
|
|
||||||
</form>
|
|
||||||
) : (
|
|
||||||
<Row className="justify-end">
|
|
||||||
<button
|
|
||||||
className="btn btn-neutral btn-outline btn-sm mt-4"
|
|
||||||
onClick={() => setEditing(true)}
|
|
||||||
>
|
|
||||||
Add to description
|
|
||||||
</button>
|
|
||||||
</Row>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ContractOverview = (props: {
|
export const ContractOverview = (props: {
|
||||||
contract: Contract
|
contract: Contract
|
||||||
className?: string
|
className?: string
|
||||||
|
@ -143,10 +69,6 @@ export const ContractOverview = (props: {
|
||||||
|
|
||||||
<ContractCloseTime contract={contract} />
|
<ContractCloseTime contract={contract} />
|
||||||
|
|
||||||
<Spacer h={4} />
|
|
||||||
|
|
||||||
<ContractFeed contract={contract} />
|
|
||||||
|
|
||||||
{/* Show a delete button for contracts without any trading */}
|
{/* Show a delete button for contracts without any trading */}
|
||||||
{isCreator && truePool === 0 && (
|
{isCreator && truePool === 0 && (
|
||||||
<>
|
<>
|
||||||
|
@ -163,6 +85,10 @@ export const ContractOverview = (props: {
|
||||||
</button>
|
</button>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
<Spacer h={4} />
|
||||||
|
|
||||||
|
<ContractFeed contract={contract} />
|
||||||
</Col>
|
</Col>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user