| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import Link from 'next/link'
- import { UseFormReturn } from 'react-hook-form'
- import { FormControl, FormField, Switch } from 'ui'
- import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
- import { CreateProjectForm } from './ProjectCreation.schema'
- import { useCheckEntitlements } from '@/hooks/misc/useCheckEntitlements'
- interface HighAvailabilityInputProps {
- form: UseFormReturn<CreateProjectForm>
- }
- export const HighAvailabilityInput = ({ form }: HighAvailabilityInputProps) => {
- const { hasAccess } = useCheckEntitlements('instances.high_availability')
- if (!hasAccess) return null
- return (
- <FormField
- control={form.control}
- name="highAvailability"
- render={({ field }) => (
- <FormItemLayout
- label="High Availability"
- description={
- <>
- Powered by{' '}
- <Link href="https://multigres.com/" target="_blank" className="text-link">
- Multigres
- </Link>
- : horizontally scalable Postgres for multi-tenant, highly available, globally
- distributed deployments while staying true to standard Postgres.
- </>
- }
- layout="horizontal"
- >
- <FormControl>
- <Switch checked={field.value} onCheckedChange={field.onChange} />
- </FormControl>
- </FormItemLayout>
- )}
- />
- )
- }
|