2022-05-17 15:55:26 +00:00
|
|
|
import { Answer } from 'common/answer'
|
2022-10-12 18:05:58 +00:00
|
|
|
import { Contract } from 'common/contract'
|
2022-10-12 21:36:12 +00:00
|
|
|
import React, { useEffect, useRef, useState } from 'react'
|
2022-05-17 15:55:26 +00:00
|
|
|
import { Col } from 'web/components/layout/col'
|
|
|
|
import { Row } from 'web/components/layout/row'
|
|
|
|
import { Avatar } from 'web/components/avatar'
|
|
|
|
import { CopyLinkDateTimeComponent } from 'web/components/feed/copy-link-date-time'
|
|
|
|
import { useRouter } from 'next/router'
|
2022-08-30 15:38:59 +00:00
|
|
|
import { UserLink } from 'web/components/user-link'
|
2022-05-17 15:55:26 +00:00
|
|
|
|
2022-10-12 21:36:12 +00:00
|
|
|
export function CommentsAnswer(props: {
|
|
|
|
answer: Answer
|
|
|
|
contract: Contract
|
|
|
|
color: string
|
|
|
|
}) {
|
|
|
|
const { answer, contract, color } = props
|
2022-05-17 15:55:26 +00:00
|
|
|
const { username, avatarUrl, name, text } = answer
|
|
|
|
const answerElementId = `answer-${answer.id}`
|
2022-10-12 21:36:12 +00:00
|
|
|
|
|
|
|
const { isReady, asPath } = useRouter()
|
|
|
|
const [highlighted, setHighlighted] = useState(false)
|
2022-09-22 19:58:40 +00:00
|
|
|
const answerRef = useRef<HTMLDivElement>(null)
|
2022-06-08 23:09:49 +00:00
|
|
|
|
2022-05-17 15:55:26 +00:00
|
|
|
useEffect(() => {
|
2022-10-12 21:36:12 +00:00
|
|
|
if (isReady && asPath.endsWith(`#${answerElementId}`)) {
|
|
|
|
setHighlighted(true)
|
|
|
|
}
|
|
|
|
}, [isReady, asPath, answerElementId])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (highlighted && answerRef.current) {
|
2022-09-22 19:58:40 +00:00
|
|
|
answerRef.current.scrollIntoView(true)
|
2022-05-17 15:55:26 +00:00
|
|
|
}
|
2022-09-22 19:58:40 +00:00
|
|
|
}, [highlighted])
|
2022-05-17 15:55:26 +00:00
|
|
|
|
|
|
|
return (
|
2022-10-12 21:36:12 +00:00
|
|
|
<Row>
|
|
|
|
{/* TODO: known bug, doesn't grab color in time and it is gray */}
|
|
|
|
<div
|
|
|
|
className="w-2"
|
|
|
|
style={{
|
|
|
|
background: color ? color : '#B1B1C755',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Col className="w-fit gap-1 bg-gray-100 py-2 pl-2 pr-4">
|
|
|
|
<Row className="gap-2">
|
|
|
|
<Avatar username={username} avatarUrl={avatarUrl} size="xxs" />
|
|
|
|
<div className="text-greyscale-6 text-xs">
|
|
|
|
<UserLink username={username} name={name} /> answered
|
|
|
|
<CopyLinkDateTimeComponent
|
|
|
|
prefix={contract.creatorUsername}
|
|
|
|
slug={contract.slug}
|
|
|
|
createdTime={answer.createdTime}
|
|
|
|
elementId={answerElementId}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</Row>
|
|
|
|
<div className="text-sm">{text}</div>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2022-05-17 15:55:26 +00:00
|
|
|
)
|
|
|
|
}
|