Editable descriptions
This commit is contained in:
parent
085e6d868f
commit
a8733723be
|
@ -1,31 +1,96 @@
|
||||||
import React from 'react'
|
import React, { 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'
|
||||||
import { ContractDetails } from './contracts-list'
|
import { ContractDetails } from './contracts-list'
|
||||||
import router from 'next/router'
|
import router from 'next/router'
|
||||||
import { useUser } from '../hooks/use-user'
|
import { useUser } from '../hooks/use-user'
|
||||||
|
import { Row } from './layout/row'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
import { Title } from './title'
|
||||||
|
|
||||||
|
function ContractDescription(props: {
|
||||||
|
contract: Contract
|
||||||
|
isCreator: boolean
|
||||||
|
}) {
|
||||||
|
const { contract, isCreator } = props
|
||||||
|
const [editing, setEditing] = useState(false)
|
||||||
|
const editStatement = () => `EDIT (${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">
|
||||||
|
{contract.description}
|
||||||
|
<br />
|
||||||
|
{isCreator &&
|
||||||
|
!contract.resolution &&
|
||||||
|
(editing ? (
|
||||||
|
<form>
|
||||||
|
<textarea
|
||||||
|
className="textarea h-24 textarea-bordered w-full"
|
||||||
|
value={description}
|
||||||
|
onChange={(e) => setDescription(e.target.value || '')}
|
||||||
|
></textarea>
|
||||||
|
<Row className="gap-2">
|
||||||
|
<button
|
||||||
|
className="btn btn-neutral btn-outline btn-sm mt-2"
|
||||||
|
onClick={saveDescription}
|
||||||
|
>
|
||||||
|
Save
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
className="btn btn-error btn-outline btn-sm mt-2"
|
||||||
|
onClick={() => setEditing(false)}
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</button>
|
||||||
|
</Row>
|
||||||
|
</form>
|
||||||
|
) : (
|
||||||
|
<button
|
||||||
|
className="btn btn-neutral btn-outline btn-sm mt-4"
|
||||||
|
onClick={() => setEditing(true)}
|
||||||
|
>
|
||||||
|
Edit
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
export const ContractOverview = (props: {
|
export const ContractOverview = (props: {
|
||||||
contract: Contract
|
contract: Contract
|
||||||
className?: string
|
className?: string
|
||||||
}) => {
|
}) => {
|
||||||
const { contract, className } = props
|
const { contract, className } = props
|
||||||
const { resolution, creatorId, isResolved } = contract
|
const { resolution, creatorId } = contract
|
||||||
const { probPercent, volume } = compute(contract)
|
const { probPercent, volume } = compute(contract)
|
||||||
|
|
||||||
const user = useUser()
|
const user = useUser()
|
||||||
const isCreator = user?.id === creatorId
|
const isCreator = user?.id === creatorId
|
||||||
|
|
||||||
const resolutionColor =
|
const resolutionColor = {
|
||||||
resolution === 'YES'
|
YES: 'text-primary',
|
||||||
? 'text-primary'
|
NO: 'text-red-400',
|
||||||
: resolution === 'NO'
|
CANCEL: 'text-yellow-400',
|
||||||
? 'text-red-400'
|
'': '', // Empty if unresolved
|
||||||
: resolution === 'CANCEL'
|
}[contract.resolution || '']
|
||||||
? 'text-yellow-400'
|
|
||||||
: ''
|
|
||||||
return (
|
return (
|
||||||
<Col className={className}>
|
<Col className={className}>
|
||||||
<Col className="justify-between md:flex-row">
|
<Col className="justify-between md:flex-row">
|
||||||
|
@ -39,7 +104,7 @@ export const ContractOverview = (props: {
|
||||||
|
|
||||||
{resolution ? (
|
{resolution ? (
|
||||||
<Col className="text-4xl mt-4 md:mt-2 md:ml-4 md:mr-6 items-end self-center md:self-start">
|
<Col className="text-4xl mt-4 md:mt-2 md:ml-4 md:mr-6 items-end self-center md:self-start">
|
||||||
<div className="text-xl text-gray-500">Resolved:</div>
|
<div className="text-xl text-gray-500">Resolved</div>
|
||||||
<div className={resolutionColor}>{resolution}</div>
|
<div className={resolutionColor}>{resolution}</div>
|
||||||
</Col>
|
</Col>
|
||||||
) : (
|
) : (
|
||||||
|
@ -56,9 +121,10 @@ export const ContractOverview = (props: {
|
||||||
|
|
||||||
<Spacer h={12} />
|
<Spacer h={12} />
|
||||||
|
|
||||||
<div className="text-gray-600 whitespace-pre-line">
|
{((isCreator && !contract.resolution) || contract.description) && (
|
||||||
{contract.description}
|
<label className="text-gray-500 mb-2 text-sm">Description</label>
|
||||||
</div>
|
)}
|
||||||
|
<ContractDescription contract={contract} isCreator={isCreator} />
|
||||||
|
|
||||||
{/* Show a delete button for contracts without any trading */}
|
{/* Show a delete button for contracts without any trading */}
|
||||||
{isCreator && volume === 0 && (
|
{isCreator && volume === 0 && (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user