mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-31 06:23:08 +02:00
Confirm deletions
This commit is contained in:
@@ -1,21 +1,40 @@
|
||||
import type { ButtonProps } from '../components/core/Button';
|
||||
import { Button } from '../components/core/Button';
|
||||
import { HStack } from '../components/core/Stacks';
|
||||
|
||||
interface Props {
|
||||
hide: () => void;
|
||||
onResult: (result: boolean) => void;
|
||||
confirmButtonColor?: ButtonProps['color'];
|
||||
confirmButtonText?: string;
|
||||
}
|
||||
export function Confirm({ hide }: Props) {
|
||||
export function Confirm({
|
||||
hide,
|
||||
onResult,
|
||||
confirmButtonColor = 'primary',
|
||||
confirmButtonText = 'Confirm',
|
||||
}: Props) {
|
||||
const focusRef = (el: HTMLButtonElement | null) => {
|
||||
el?.focus();
|
||||
};
|
||||
|
||||
const handleHide = () => {
|
||||
onResult(false);
|
||||
hide();
|
||||
};
|
||||
|
||||
const handleSuccess = () => {
|
||||
onResult(true);
|
||||
hide();
|
||||
};
|
||||
|
||||
return (
|
||||
<HStack space={2} justifyContent="end">
|
||||
<Button className="focus" color="gray" onClick={hide}>
|
||||
<Button className="focus" color="gray" onClick={handleHide}>
|
||||
Cancel
|
||||
</Button>
|
||||
<Button className="focus" ref={focusRef} color="primary">
|
||||
Confirm
|
||||
<Button className="focus" ref={focusRef} color={confirmButtonColor} onClick={handleSuccess}>
|
||||
{confirmButtonText}
|
||||
</Button>
|
||||
</HStack>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user