mirror of
https://github.com/supabase/supabase.git
synced 2026-05-11 19:26:38 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import { useQueryClient } from '@tanstack/react-query'
|
|
import dayjs from 'dayjs'
|
|
import { MoreVertical, X } from 'lucide-react'
|
|
import { useRouter } from 'next/router'
|
|
import { toast } from 'sonner'
|
|
import {
|
|
Button,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from 'ui'
|
|
|
|
import { useBranchUpdateMutation } from '@/data/branches/branch-update-mutation'
|
|
import type { Branch } from '@/data/branches/branches-query'
|
|
import { branchKeys } from '@/data/branches/keys'
|
|
|
|
interface ReviewRowProps {
|
|
branch: Branch
|
|
}
|
|
|
|
export const ReviewRow = ({ branch }: ReviewRowProps) => {
|
|
const router = useRouter()
|
|
const queryClient = useQueryClient()
|
|
const { project_ref: branchRef, parent_project_ref: projectRef } = branch
|
|
|
|
const { mutate: updateBranch, isPending: isUpdating } = useBranchUpdateMutation({
|
|
onSuccess: () => {
|
|
toast.success('Branch marked as not ready for review')
|
|
queryClient.invalidateQueries({
|
|
queryKey: branchKeys.list(projectRef),
|
|
})
|
|
},
|
|
onError: (error) => {
|
|
toast.error(`Failed to update branch: ${error.message}`)
|
|
},
|
|
})
|
|
|
|
const handleRowClick = () => {
|
|
router.push(`/project/${branchRef}/merge`)
|
|
}
|
|
|
|
const handleNotReadyForReview = (e?: Event) => {
|
|
e?.preventDefault()
|
|
e?.stopPropagation()
|
|
|
|
updateBranch({
|
|
branchRef,
|
|
projectRef,
|
|
requestReview: false,
|
|
})
|
|
}
|
|
|
|
const formattedReviewDate = branch.review_requested_at
|
|
? dayjs(branch.review_requested_at).format('MMM DD, YYYY HH:mm')
|
|
: ''
|
|
|
|
return (
|
|
<div
|
|
className="w-full flex items-center justify-between px-6 py-3 hover:bg-surface-100 cursor-pointer transition-colors"
|
|
onClick={handleRowClick}
|
|
>
|
|
<div className="flex items-center gap-x-4">
|
|
<div className="flex gap-4">
|
|
<h4 className="text-sm text-foreground" title={branch.name}>
|
|
{branch.name}
|
|
</h4>
|
|
<p className="text-foreground-light">{formattedReviewDate}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-x-2">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
type="text"
|
|
icon={<MoreVertical />}
|
|
className="px-1"
|
|
onClick={(e) => e.stopPropagation()}
|
|
/>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-56" side="bottom" align="end">
|
|
<DropdownMenuItem
|
|
className="gap-x-2"
|
|
disabled={isUpdating}
|
|
onClick={(e) => e.stopPropagation()}
|
|
onSelect={handleNotReadyForReview}
|
|
>
|
|
<X size={14} />
|
|
Not ready for review
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|