Truncate comment datetime
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m10s

This commit is contained in:
Ryan Freeman 2025-04-28 20:41:40 +01:00
parent d773342653
commit d420655464
2 changed files with 10 additions and 3 deletions

View File

@ -10,7 +10,7 @@ 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 {getShortDurationFromNow, truncateDatetime} from '@/lib/dateFns'
import CommentFormProvider, {useCommentFormContext} from '@/app/context/CommentFormProvider'
import type {Comment} from '@/types'
@ -19,6 +19,7 @@ type ReplyButton = {
comment: Comment
}
Comments.ReplyButton = function ReplyButton({comment}: ReplyButton) {
const commentFormContext = useCommentFormContext()
const {data: session} = useSession()
@ -62,7 +63,7 @@ Comments.Comment = function Comment({comment, isReply = false, className}: {
<Link href={`https://github.com/${comment.user.username ?? ''}`}>{comment.user.name}</Link>
</p>
<p className="text-sm text-zinc-500 dark:text-zinc-400">
<time dateTime={comment.created_at}>
<time dateTime={truncateDatetime(comment.created_at)}>
<span>&middot; {`${getShortDurationFromNow(comment.created_at)}`}</span>
</time>
</p>

View File

@ -4,7 +4,9 @@ import {
differenceInMinutes,
differenceInMonths,
differenceInWeeks,
differenceInYears
differenceInYears,
format,
parseISO
} from 'date-fns'
export function getShortDurationFromNow(fromDateTime: string) {
@ -28,3 +30,7 @@ export function getShortDurationFromNow(fromDateTime: string) {
return '<1m'
}
export function truncateDatetime(datetime: string) {
return format(parseISO(datetime), 'yyyy-MM-dd\'T\'HH:mm')
}