portfolio/components/ui/Comments.tsx

214 lines
8.5 KiB
TypeScript

'use client'
import React, {useActionState, useEffect, useState} from 'react'
import {useSession} from 'next-auth/react'
import Image from 'next/image'
import clsx from 'clsx'
import {addComment, loginWithGitHub} from '@/app/actions/comments'
import {Button} from '@/components/ui/Button'
import {GitHubIcon} from '@/components/icons/SocialIcons'
import {ArrowLeftIcon} from '@/components/icons/ArrowLeftIcon'
import {StatusMessage} from '@/components/ui/StatusMessage'
import {getShortDurationFromNow} from '@/lib/dateFns'
import ReplyProvider, {useReplyContext} from '@/app/context/ReplyProvider'
import CommentFormProvider, {useCommentFormContext} from '@/app/context/CommentFormProvider'
import type {Comment} from '@/types'
type ReplyButton = {
comment: Comment
}
Comments.ReplyButton = function ReplyButton({comment}: ReplyButton) {
const replyContext = useReplyContext()
const commentFormContext = useCommentFormContext()
const {data: session} = useSession()
const handleReplyButton = async (e: React.MouseEvent<HTMLButtonElement>) => {
e.preventDefault()
if (!session) {
await loginWithGitHub()
}
replyContext?.setReplyTo(comment);
commentFormContext?.focusCommentForm()
}
return (
<button
className="flex mt-4 text-sm gap-x-2 items-center group active:dark:text-indigo-500 active:text-indigo-500 text-zinc-800 dark:text-zinc-100"
onClick={handleReplyButton}
>
<ArrowLeftIcon
className="w-4 h-4 stroke-zinc-500 dark:stroke-zinc-400 group-active:dark:stroke-indigo-500 group-active:stroke-indigo-500"/>Reply
</button>
)
}
Comments.Comment = function Comment({comment, isReply = false}: {
comment: Comment,
isReply?: boolean
}) {
return (
<>
<article
className={clsx('flex gap-x-4 py-5', isReply && 'ml-[62px] border-l border-zinc-100 pl-6 dark:border-zinc-700/40')}>
<Image src={comment.user.image} alt={comment.user.name} width={64} height={64}
className={clsx('rounded-full', isReply ? 'size-8' : 'size-12')}/>
<div className="flex-auto">
<div className="flex items-baseline gap-x-1">
<p className="font-semibold text-sm text-zinc-800 dark:text-zinc-100">{comment.user.name}</p>
<p className="text-sm text-zinc-500 dark:text-zinc-400">
<time dateTime={comment.created_at}>
<span>&middot; {`${getShortDurationFromNow(comment.created_at)}`}</span>
</time>
</p>
</div>
<p className="mt-1 text-sm text-zinc-600 dark:text-zinc-400 max-w-xl">{comment.content}</p>
<Comments.ReplyButton comment={comment}/>
</div>
</article>
</>
)
}
type CommentsListProps = {
comments: Comment[]
}
Comments.List = function List({comments}: CommentsListProps) {
return (
<>
{comments.length > 0 &&
<section>
<h3 className="text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100 mb-4">
Comments
</h3>
{comments.map((comment) => (
<React.Fragment key={comment.id}>
<Comments.Comment comment={comment}/>
{(typeof comment.replies !== 'undefined' && comment.replies.length > 0) ?
comment.replies.map(reply => (
<Comments.Comment key={reply.id} comment={reply} isReply={true}/>
)) : null
}
</React.Fragment>
))}
</section>
}
</>
)
}
type InitialState = {
message: string
}
const initialState: InitialState = {
message: ''
}
Comments.Form = function Form({slug}: { slug: string }) {
const [parentId, setParentId] = useState<string | number | null>('')
const [state, formAction, pending] = useActionState(addComment, initialState)
const {data: session} = useSession()
const replyContext = useReplyContext()
const commentFormContext = useCommentFormContext()
const commentFormRef = commentFormContext?.commentFormRef
const [commentLength, setCommentLength] = useState<number>(0)
const commentMaxLength = 300
useEffect(() => {
if (replyContext?.replyTo?.parent_id !== null) {
setParentId(replyContext?.replyTo?.parent_id ?? '')
} else {
setParentId(replyContext?.replyTo?.id)
}
}, [replyContext?.replyTo])
const handleKeyDown = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
if ((e.ctrlKey || e.metaKey) && (e.key === 'Enter' || e.key === 'NumpadEnter')) {
e.preventDefault()
e.currentTarget.form?.requestSubmit()
}
if (e.key === 'Escape' && replyContext?.replyTo !== null) {
replyContext?.setReplyTo(null)
commentFormRef?.current?.blur()
}
}
const handleSubmit = () => {
replyContext?.setReplyTo(null)
setCommentLength(0)
}
return (
<div className="mt-12">
{!session ?
<form action={async () => await loginWithGitHub()}>
<Button variant="secondary">
<GitHubIcon className="w-6 h-6 dark:fill-white"/>Sign in to comment
</Button>
</form> :
<form action={formAction} onSubmit={handleSubmit}>
<label htmlFor="comment"
className="text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100">
{replyContext?.replyTo ? `Reply to ${replyContext?.replyTo.user.name}` : 'Add a comment'}
</label>
<div className="mt-2 flex">
<textarea
id="comment"
name="comment"
rows={4}
className="resize-none block w-full rounded-md px-3 py-1.5 text-base text-zinc-600 dark:text-zinc-400 bg-[#fafafa] dark:bg-[#121212] border-[1px] dark:border-zinc-700/40 -outline-offset-1 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-600 focus:dark:outline-indigo-600"
onKeyDown={handleKeyDown}
onChange={(e) => setCommentLength(e.target.value.length ?? 0)}
disabled={pending}
defaultValue={''}
maxLength={commentMaxLength}
ref={commentFormRef}
required
/>
</div>
<input type="hidden" name="parent_id" value={parentId ?? ''}/>
<input type="hidden" name="slug" value={slug}/>
<div className="mt-2 flex justify-between items-start gap-x-4">
<p className="text-sm text-zinc-600 dark:text-zinc-400">{`${commentLength} / ${commentMaxLength}`}</p>
<div className="flex gap-x-4">
{replyContext?.replyTo &&
<button className="text-zinc-600 hover:text-zinc-900 dark:text-zinc-400 hover:dark:text-zinc-50"
onClick={() => replyContext?.setReplyTo(null)}>Cancel</button>
}
<Button variant="secondary" disabled={pending}>
Comment
</Button>
</div>
</div>
<StatusMessage className="mt-2">
{state.message}
</StatusMessage>
</form>
}
</div>
)
}
type CommentsProps = {
slug: string
comments?: any
}
export function Comments({slug, comments}: CommentsProps) {
return (
<CommentFormProvider>
<ReplyProvider>
<div className="mt-24">
{comments &&
<Comments.List comments={comments}/>
}
<Comments.Form slug={slug}/>
</div>
</ReplyProvider>
</CommentFormProvider>
)
}