mirror of
https://github.com/supabase/supabase.git
synced 2026-07-22 23:47:37 -04:00
96d43099bb
## Problem Our `<Button>` component breaks the default `button` contract by redefining the `type` prop to set its variant (`primary`, `default`, etc) instead of the button type (`submit`, `button`, etc). This is confusing and forces to write more code when using it with shadcn components that expect/inject the standard button props. ## Solution - rename the `type` prop to `variant` - rename the `htmlType` prop to `type` - propagate the changes where necessary - format code ## How to test As this is just prop renaming, if it builds it's ok --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import {
|
|
Button,
|
|
Dialog,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogSection,
|
|
DialogSectionSeparator,
|
|
DialogTitle,
|
|
} from 'ui'
|
|
|
|
type DeleteMessageConfirmModalProps = {
|
|
visible: boolean
|
|
onConfirm: () => void
|
|
onCancel: () => void
|
|
}
|
|
|
|
export const DeleteMessageConfirmModal = ({
|
|
visible,
|
|
onConfirm,
|
|
onCancel,
|
|
}: DeleteMessageConfirmModalProps) => {
|
|
const onOpenChange = (open: boolean) => {
|
|
if (!open) onCancel()
|
|
}
|
|
|
|
return (
|
|
<Dialog open={visible} onOpenChange={onOpenChange}>
|
|
<DialogContent size="small">
|
|
<DialogHeader padding="small">
|
|
<DialogTitle>Delete Message</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<DialogSectionSeparator />
|
|
|
|
<DialogSection padding="small">
|
|
<p className="text-sm text-foreground-light">
|
|
Are you sure you want to delete this message and all subsequent messages? This action
|
|
cannot be undone.
|
|
</p>
|
|
</DialogSection>
|
|
|
|
<DialogFooter padding="small">
|
|
<Button variant="default" onClick={onCancel}>
|
|
Cancel
|
|
</Button>
|
|
<Button variant="danger" onClick={onConfirm}>
|
|
Delete
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|