Files
supabase/apps/studio/components/interfaces/DiskManagement/fields/AutoScaleFields.tsx
Ivan Vasilov 0d5be306ef chore: Bump React Query to v5 (#40174)
* Bump the deps, refactor deprecated code.

* Migrate keepPreviousData usage.

* Migrate all uses of InfiniteQuery.

* Fix refetchInterval in queries.

* Migrate all use of isLoading to isPending in mutations.

* Fix accessing location in claim-project.

* Fix a bug in duplicate query keys.

* Migrate all queries to use isPending.

* Revert "Fix accessing location in claim-project."

This reverts commit 2a07df64b5.

* Revert the rss.xml file to master.
2025-12-10 10:10:29 +01:00

227 lines
8.4 KiB
TypeScript

import { UseFormReturn } from 'react-hook-form'
import { InputVariants } from '@ui/components/shadcn/ui/input'
import { useParams } from 'common'
import { useDiskAutoscaleCustomConfigQuery } from 'data/config/disk-autoscale-config-query'
import { cn, FormControl_Shadcn_, FormField_Shadcn_, Input_Shadcn_, Skeleton } from 'ui'
import { Admonition } from 'ui-patterns'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
import { DiskStorageSchemaType } from '../DiskManagement.schema'
import { DISK_AUTOSCALE_CONFIG_DEFAULTS } from '../ui/DiskManagement.constants'
import FormMessage from '../ui/FormMessage'
import { InputPostTab } from '../ui/InputPostTab'
type AutoScaleFieldProps = {
form: UseFormReturn<DiskStorageSchemaType>
}
export const AutoScaleFields = ({ form }: AutoScaleFieldProps) => {
const { ref: projectRef } = useParams()
const {
control,
setValue,
formState: { errors },
} = form
const { totalSize, growthPercent, maxSizeGb, minIncrementGb } = form.watch()
const { error, isPending: isLoading, isError } = useDiskAutoscaleCustomConfigQuery({ projectRef })
const _growthPercent = growthPercent ?? DISK_AUTOSCALE_CONFIG_DEFAULTS.growthPercent
const _minIncrementGb = minIncrementGb ?? DISK_AUTOSCALE_CONFIG_DEFAULTS.minIncrementSize
const _maxSizeGb = errors.maxSizeGb
? DISK_AUTOSCALE_CONFIG_DEFAULTS.maxSizeGb
: maxSizeGb ?? DISK_AUTOSCALE_CONFIG_DEFAULTS.maxSizeGb
const growthSize = Math.floor(totalSize * (_growthPercent / 100))
const autoscaleGrowValue = Math.min(
Math.max(Math.floor((totalSize * _growthPercent) / 100), _minIncrementGb),
200
)
const totalSizeAfterGrowth = autoscaleGrowValue + totalSize
const formattedTotalSizeAfterGrowth =
totalSizeAfterGrowth < _maxSizeGb ? totalSizeAfterGrowth : _maxSizeGb
const formattedGrowValue = formattedTotalSizeAfterGrowth - totalSize
return (
<>
<FormField_Shadcn_
name="growthPercent"
control={control}
render={({ field }) => {
return (
<FormItemLayout
layout="horizontal"
label="Autoscale growth percent"
id={field.name}
labelOptional="Percentage of current disk size to grow"
description={
!errors.growthPercent
? `This amounts to ${growthSize} GB based on the current disk size of ${totalSize} GB`
: undefined
}
className="[&>div>span]:text-foreground-lighter"
>
<InputPostTab label="%">
{isLoading ? (
<div
className={cn(
InputVariants({ size: 'small' }),
'w-32 font-mono rounded-r-none'
)}
>
<Skeleton className="w-10 h-4" />
</div>
) : (
<FormControl_Shadcn_>
<Input_Shadcn_
{...field}
type="number"
className="flex-grow font-mono rounded-r-none max-w-20"
value={field.value ?? undefined}
disabled={isError}
onChange={(e) => {
setValue(
'growthPercent',
e.target.value === '' ? null : e.target.valueAsNumber,
{
shouldDirty: true,
shouldValidate: true,
}
)
}}
placeholder={String(DISK_AUTOSCALE_CONFIG_DEFAULTS.growthPercent)}
/>
</FormControl_Shadcn_>
)}
</InputPostTab>
{error && <FormMessage type="error" message={error.message} />}
</FormItemLayout>
)
}}
/>
<FormField_Shadcn_
name="minIncrementGb"
control={control}
render={({ field }) => {
return (
<FormItemLayout
layout="horizontal"
label="Minimum increment"
id={field.name}
labelOptional="Minimum value to autoscale disk size by"
description={
!!minIncrementGb && minIncrementGb > growthSize && !errors.minIncrementGb
? `This value takes precedence as the minimum increment is larger than the growth percent`
: undefined
}
className="[&>div>span]:text-foreground-lighter"
>
<InputPostTab label="GB">
{isLoading ? (
<div
className={cn(
InputVariants({ size: 'small' }),
'w-32 font-mono rounded-r-none'
)}
>
<Skeleton className="w-10 h-4" />
</div>
) : (
<FormControl_Shadcn_>
<Input_Shadcn_
{...field}
type="number"
className="flex-grow font-mono rounded-r-none max-w-32"
value={field.value ?? undefined}
disabled={isError}
onChange={(e) => {
setValue(
'minIncrementGb',
e.target.value === '' ? null : e.target.valueAsNumber,
{
shouldDirty: true,
shouldValidate: true,
}
)
}}
placeholder={String(DISK_AUTOSCALE_CONFIG_DEFAULTS.minIncrementSize)}
/>
</FormControl_Shadcn_>
)}
</InputPostTab>
{error && <FormMessage type="error" message={error.message} />}
</FormItemLayout>
)
}}
/>
<FormField_Shadcn_
name="maxSizeGb"
control={control}
render={({ field }) => {
return (
<FormItemLayout
layout="horizontal"
label="Maximum disk size"
id={field.name}
labelOptional="Maximum size that the disk can grow to"
className="[&>div>span]:text-foreground-lighter"
>
<InputPostTab label="GB">
{isLoading ? (
<div
className={cn(
InputVariants({ size: 'small' }),
'w-32 font-mono rounded-r-none'
)}
>
<Skeleton className="w-10 h-4" />
</div>
) : (
<FormControl_Shadcn_>
<Input_Shadcn_
{...field}
type="number"
className="flex-grow font-mono rounded-r-none max-w-32"
value={field.value ?? undefined}
disabled={isError}
onChange={(e) => {
setValue(
'maxSizeGb',
e.target.value === '' ? null : e.target.valueAsNumber,
{
shouldDirty: true,
shouldValidate: true,
}
)
}}
placeholder={String(DISK_AUTOSCALE_CONFIG_DEFAULTS.maxSizeGb)}
/>
</FormControl_Shadcn_>
)}
</InputPostTab>
{error && <FormMessage type="error" message={error.message} />}
</FormItemLayout>
)
}}
/>
{
<Admonition type="default" showIcon={false} className="[&>div]:text-foreground-light">
Disk size will automatically be expanded by{' '}
<span className="text-foreground">
{String(formattedGrowValue).length > 4
? formattedGrowValue.toFixed(2)
: formattedGrowValue}{' '}
GB
</span>{' '}
to a total of <span className="text-foreground">{formattedTotalSizeAfterGrowth} GB</span>{' '}
when the database reaches 90% of the disk size
</Admonition>
}
</>
)
}