Whalebird-desktop-client-ma.../renderer/components/detail/Detail.tsx

49 lines
1.5 KiB
TypeScript

import { useRouter } from 'next/router'
import { HTMLAttributes, useEffect, useState } from 'react'
import { FaChevronLeft, FaX } from 'react-icons/fa6'
import Thread from './Thread'
import { MegalodonInterface } from 'megalodon'
import Reply from './Reply'
type Props = {
client: MegalodonInterface
} & HTMLAttributes<HTMLElement>
export default function Detail(props: Props) {
const [target, setTarget] = useState<'status' | 'reply' | null>(null)
const router = useRouter()
useEffect(() => {
if (router.query.status_id) {
setTarget('status')
} else if (router.query.reply_target_id) {
setTarget('reply')
} else {
setTarget(null)
}
}, [router.query])
const back = () => {
router.back()
}
const close = () => {
router.push({ query: { id: router.query.id, timeline: router.query.timeline } })
}
return (
<>
{target && (
<div className={`bg-white ${props.className}`} style={props.style}>
<div className="bg-blue-900 text-gray-200 flex justify-between p-2 items-center" style={{ height: '50px' }}>
<FaChevronLeft onClick={back} className="cursor-pointer text-lg" />
<FaX onClick={close} className="cursor-pointer text-lg" />
</div>
{target === 'status' && <Thread client={props.client} status_id={router.query.status_id as string} />}
{target === 'reply' && <Reply client={props.client} status_id={router.query.reply_target_id as string} />}
</div>
)}
</>
)
}