| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import type { UseFormReturn } from 'react-hook-form'
- import { CardContent, CardFooter, Form, FormControl, FormField, FormItem, Switch } from 'ui'
- import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
- import { DataApiDisabledAlert } from './DataApiDisabledAlert'
- import type { DataApiFormValues } from './DataApiEnableSwitch.types'
- import { FormActions } from '@/components/ui/Forms/FormActions'
- export const DataApiEnableSwitchForm = ({
- form,
- formId,
- disabled,
- isBusy,
- permissionsHelper,
- onSubmit,
- handleReset,
- }: {
- form: UseFormReturn<DataApiFormValues>
- formId: string
- disabled: boolean
- isBusy: boolean
- permissionsHelper: string | undefined
- onSubmit: (values: DataApiFormValues) => void
- handleReset: () => void
- }) => {
- const watchedEnabled = form.watch('enableDataApi')
- return (
- <Form {...form}>
- <form id={formId} onSubmit={form.handleSubmit(onSubmit)}>
- <CardContent>
- <FormField
- control={form.control}
- name="enableDataApi"
- render={({ field }) => (
- <FormItem className="space-y-4">
- <FormItemLayout
- layout="flex-row-reverse"
- label="Enable Data API"
- description="When enabled you will be able to use any Briven client library and PostgREST endpoints with any schema configured in the Settings tab."
- >
- <FormControl>
- <Switch
- size="large"
- disabled={disabled}
- checked={field.value}
- onCheckedChange={field.onChange}
- />
- </FormControl>
- </FormItemLayout>
- {!watchedEnabled && <DataApiDisabledAlert />}
- </FormItem>
- )}
- />
- </CardContent>
- <CardFooter>
- <FormActions
- form={formId}
- isSubmitting={isBusy}
- hasChanges={form.formState.isDirty}
- handleReset={handleReset}
- disabled={disabled}
- helper={permissionsHelper}
- />
- </CardFooter>
- </form>
- </Form>
- )
- }
|