mirror of
https://github.com/supabase/supabase.git
synced 2026-06-14 23:25:16 +08:00
50 lines
1.3 KiB
TypeScript
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>
|
|
)
|
|
}
|