mirror of
https://github.com/supabase/supabase.git
synced 2026-09-22 13:37:53 +08:00
476d4a5851
## What kind of change does this PR introduce? Mechanical cleanup on top of the Button default-variant change (#50160). ## What is the current behavior? Many callsites still pass `variant="default"` even though that is now the component default. ## What is the new behavior? Removes redundant static `variant="default"` from legacy `Button` and `ButtonTooltip` callsites. Keeps explicit defaults where they document the API: - `button-default.tsx` and `button-sizes.tsx` demos - `DocsButton`, which pins neutral styling at the wrapper boundary ## To test Studio: - [Auth → Rate Limits](https://studio-staging-2s957kwc4-supabase.vercel.app/dashboard/project/_/auth/rate-limits): dirty the form so Cancel appears; Cancel stays neutral, Save stays green - [Project Settings → API Keys](https://studio-staging-2s957kwc4-supabase.vercel.app/dashboard/project/_/settings/api-keys): `DocsButton` in the header actions stays neutral Design system: - [Design system → Button](https://design-system-git-dnywh-dc924ac1-supabase.vercel.app/design-system/docs/components/button): `button-default` / `button-sizes` still show explicit default styling; Primary (green) is restricted to the Primary section (and `asChild`) WWW: - [www → Brand assets](https://zone-www-dot-com-git-dnywh-dc924ac1-supabase.vercel.app/brand-assets): Download logo kit / Download button kit stay neutral
211 lines
8.1 KiB
TypeScript
211 lines
8.1 KiB
TypeScript
import { SupportCategories } from '@supabase/shared-types/out/constants'
|
|
import { LOCAL_STORAGE_KEYS, useParams } from 'common'
|
|
import { CheckCircle, Download, Loader } from 'lucide-react'
|
|
import { useEffect, useState } from 'react'
|
|
import { Button } from 'ui'
|
|
import { Admonition } from 'ui-patterns/Admonition'
|
|
|
|
import { SupportLink } from '@/components/interfaces/Support/SupportLink'
|
|
import { ButtonTooltip } from '@/components/ui/ButtonTooltip'
|
|
import { useBackupDownloadMutation } from '@/data/database/backup-download-mutation'
|
|
import { useDownloadableBackupQuery } from '@/data/database/backup-query'
|
|
import { useInvalidateProjectDetailsQuery } from '@/data/projects/project-detail-query'
|
|
import { useProjectStatusQuery } from '@/data/projects/project-status-query'
|
|
import { useLongRunningTransitionState } from '@/hooks/misc/useLongRunningTransitionState'
|
|
import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
|
|
import { PROJECT_STATUS } from '@/lib/constants'
|
|
import {
|
|
clearPersistedTransitionStartTime,
|
|
minutesToMilliseconds,
|
|
} from '@/lib/project-transition-state'
|
|
import { getRestoreLongRunningThresholdMinutes } from '@/lib/restore-estimate'
|
|
|
|
export const POLL_INTERVAL_MS = 4000
|
|
|
|
export const RestoringState = () => {
|
|
const { ref } = useParams()
|
|
const { data: project } = useSelectedProjectQuery()
|
|
|
|
const [isConfirming, setIsConfirming] = useState(false)
|
|
const [hasLeftHealthyState, setHasLeftHealthyState] = useState(false)
|
|
const restoreStateStartStorageKey = ref
|
|
? LOCAL_STORAGE_KEYS.PROJECT_RESTORING_STARTED_AT(ref)
|
|
: null
|
|
|
|
const { data } = useDownloadableBackupQuery({ projectRef: ref })
|
|
const backups = data?.backups ?? []
|
|
const logicalBackups = backups.filter((b) => !b.isPhysicalBackup)
|
|
const longRunningThresholdMinutes = getRestoreLongRunningThresholdMinutes(project?.volumeSizeGb)
|
|
const longRunningThresholdMs = minutesToMilliseconds(longRunningThresholdMinutes)
|
|
const isTakingLongerThanExpected = useLongRunningTransitionState({
|
|
storageKey: restoreStateStartStorageKey,
|
|
thresholdMs: longRunningThresholdMs,
|
|
})
|
|
|
|
const { invalidateProjectDetailsQuery } = useInvalidateProjectDetailsQuery()
|
|
|
|
const { data: projectStatusData } = useProjectStatusQuery(
|
|
{ projectRef: ref },
|
|
{
|
|
enabled: project?.status !== PROJECT_STATUS.ACTIVE_HEALTHY,
|
|
refetchInterval: (query) => {
|
|
const status = query.state.data?.status
|
|
if (status === PROJECT_STATUS.RESTORE_FAILED) return false
|
|
if (status === PROJECT_STATUS.ACTIVE_HEALTHY && hasLeftHealthyState) return false
|
|
return POLL_INTERVAL_MS
|
|
},
|
|
}
|
|
)
|
|
|
|
const projectStatus = projectStatusData?.status
|
|
|
|
// Right after a restore is triggered the status endpoint can still report the stale
|
|
// pre-restore ACTIVE_HEALTHY, so completion is only trusted once the status has been
|
|
// observed leaving the healthy state.
|
|
if (
|
|
!hasLeftHealthyState &&
|
|
projectStatus !== undefined &&
|
|
projectStatus !== PROJECT_STATUS.ACTIVE_HEALTHY
|
|
) {
|
|
setHasLeftHealthyState(true)
|
|
}
|
|
|
|
const hasRestoreFailed = projectStatus === PROJECT_STATUS.RESTORE_FAILED
|
|
const isCompleted = hasLeftHealthyState && projectStatus === PROJECT_STATUS.ACTIVE_HEALTHY
|
|
|
|
const { mutate: downloadBackup, isPending: isDownloading } = useBackupDownloadMutation({
|
|
onSuccess: (res) => {
|
|
const { fileUrl } = res
|
|
|
|
// Trigger browser download by create,trigger and remove tempLink
|
|
const tempLink = document.createElement('a')
|
|
tempLink.href = fileUrl
|
|
document.body.appendChild(tempLink)
|
|
tempLink.click()
|
|
document.body.removeChild(tempLink)
|
|
},
|
|
})
|
|
|
|
const onClickDownloadBackup = () => {
|
|
if (!ref) return console.error('Project ref is required')
|
|
if (logicalBackups.length === 0) return console.error('No available backups to download')
|
|
|
|
downloadBackup({ ref, backup: logicalBackups[0] })
|
|
}
|
|
|
|
const onConfirm = async () => {
|
|
if (!ref) return console.error('Project ref is required')
|
|
setIsConfirming(true)
|
|
try {
|
|
await invalidateProjectDetailsQuery(ref)
|
|
} finally {
|
|
setIsConfirming(false)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (!isCompleted && !hasRestoreFailed) return
|
|
|
|
if (restoreStateStartStorageKey) {
|
|
clearPersistedTransitionStartTime(restoreStateStartStorageKey)
|
|
}
|
|
if (hasRestoreFailed && ref) void invalidateProjectDetailsQuery(ref)
|
|
}, [
|
|
isCompleted,
|
|
hasRestoreFailed,
|
|
restoreStateStartStorageKey,
|
|
ref,
|
|
invalidateProjectDetailsQuery,
|
|
])
|
|
|
|
return (
|
|
<div className="flex items-center justify-center h-full">
|
|
<div className="bg-surface-100 border border-overlay rounded-md w-3/4 lg:w-1/2">
|
|
{isCompleted ? (
|
|
<div className="space-y-6 pt-6">
|
|
<div className="flex px-8 space-x-8">
|
|
<div className="mt-1">
|
|
<CheckCircle className="text-brand" size={18} strokeWidth={2} />
|
|
</div>
|
|
<div className="space-y-1">
|
|
<p>Restoration complete!</p>
|
|
<p className="text-sm text-foreground-light">
|
|
Your project has been successfully restored and is now back online.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="border-t border-overlay flex items-center justify-end py-4 px-8">
|
|
<Button
|
|
variant="primary"
|
|
disabled={isConfirming}
|
|
loading={isConfirming}
|
|
onClick={onConfirm}
|
|
>
|
|
Return to project
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<>
|
|
<div className="space-y-6 py-6">
|
|
<div className="flex px-8 space-x-8">
|
|
<div className="mt-1">
|
|
<Loader className="animate-spin" size={18} />
|
|
</div>
|
|
<div className="space-y-1">
|
|
<p>Restoration in progress</p>
|
|
<p className="text-sm text-foreground-light">
|
|
Restoration can take from a few minutes up to several hours depending on the
|
|
size of your database. Your project will be offline while the restoration is
|
|
running.
|
|
</p>
|
|
{isTakingLongerThanExpected && (
|
|
<Admonition
|
|
type="warning"
|
|
title="This is taking longer than usual"
|
|
layout="responsive"
|
|
description="Contact support if this project remains in a restoring state."
|
|
actions={
|
|
<Button asChild>
|
|
<SupportLink
|
|
queryParams={{
|
|
category: SupportCategories.DATABASE_UNRESPONSIVE,
|
|
projectRef: project?.ref ?? ref,
|
|
subject: 'Project stuck in restoring state',
|
|
message: `Project "${project?.name ?? 'Unknown project'}" (ref: ${project?.ref ?? ref ?? 'unknown'}) has remained in a restoring state for over ${longRunningThresholdMinutes} minutes.`,
|
|
}}
|
|
>
|
|
Contact support
|
|
</SupportLink>
|
|
</Button>
|
|
}
|
|
className="mt-5!"
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="border-t border-overlay flex items-center justify-end py-4 px-8 gap-x-2">
|
|
<ButtonTooltip
|
|
icon={<Download />}
|
|
loading={isDownloading}
|
|
disabled={logicalBackups.length === 0}
|
|
tooltip={{
|
|
content: {
|
|
side: 'bottom',
|
|
text:
|
|
logicalBackups.length === 0 ? 'No available backups to download' : undefined,
|
|
},
|
|
}}
|
|
onClick={onClickDownloadBackup}
|
|
>
|
|
Download latest backup
|
|
</ButtonTooltip>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|