Files
supabase/apps/studio/components/ui/Forms/FormActions.tsx
Joshen Lim cac225b24a Clean up barrel files part 4 (#40015)
* Clean up barrel files part 4

* nit
2025-10-31 00:30:42 +08:00

50 lines
1.3 KiB
TypeScript

import { Button } from 'ui'
interface Props {
form: React.HTMLProps<HTMLButtonElement>['form']
hasChanges: boolean | undefined // Disables submit button if false
handleReset: () => void // Handling a reset/cancel of the form
helper?: React.ReactNode // Helper text to show alongside actions
disabled?: boolean
isSubmitting?: boolean
submitText?: string
}
export const FormActions = ({
form,
hasChanges = undefined,
handleReset,
helper,
disabled = false,
isSubmitting,
submitText = 'Save',
}: Props) => {
const isDisabled = isSubmitting || disabled || (!hasChanges && hasChanges !== undefined)
return (
<div
className={[
'flex w-full items-center gap-2',
// justify actions to right if no helper text
helper ? 'justify-between' : 'justify-end',
].join(' ')}
>
{helper && <span className="text-sm text-foreground-lighter">{helper}</span>}
<div className="flex items-center gap-2">
<Button disabled={isDisabled} type="default" htmlType="reset" onClick={() => handleReset()}>
Cancel
</Button>
<Button
form={form}
type="primary"
htmlType="submit"
disabled={isDisabled}
loading={isSubmitting}
>
{submitText}
</Button>
</div>
</div>
)
}