mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
95 lines
2.5 KiB
JavaScript
95 lines
2.5 KiB
JavaScript
import {useCheckbox, CheckboxGroup, Chip, VisuallyHidden, tv} from "@heroui/react";
|
|
|
|
export const CustomCheckbox = (props) => {
|
|
const checkbox = tv({
|
|
slots: {
|
|
base: "border-default hover:bg-default-200",
|
|
content: "text-default-500",
|
|
},
|
|
variants: {
|
|
isSelected: {
|
|
true: {
|
|
base: "border-primary bg-primary hover:bg-primary-500 hover:border-primary-500",
|
|
content: "text-primary-foreground pl-1",
|
|
},
|
|
},
|
|
isFocusVisible: {
|
|
true: {
|
|
base: "outline-none ring-2 ring-focus ring-offset-2 ring-offset-background",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const {children, isSelected, isFocusVisible, getBaseProps, getLabelProps, getInputProps} =
|
|
useCheckbox({
|
|
...props,
|
|
});
|
|
|
|
const styles = checkbox({isSelected, isFocusVisible});
|
|
|
|
return (
|
|
<label {...getBaseProps()}>
|
|
<VisuallyHidden>
|
|
<input {...getInputProps()} />
|
|
</VisuallyHidden>
|
|
<Chip
|
|
classNames={{
|
|
base: styles.base(),
|
|
content: styles.content(),
|
|
}}
|
|
color="primary"
|
|
startContent={isSelected ? <CheckIcon className="ml-1" /> : null}
|
|
variant="faded"
|
|
{...getLabelProps()}
|
|
>
|
|
{children ? children : isSelected ? "Enabled" : "Disabled"}
|
|
</Chip>
|
|
</label>
|
|
);
|
|
};
|
|
|
|
export const CheckIcon = (props) => {
|
|
return (
|
|
<svg
|
|
aria-hidden="true"
|
|
fill="none"
|
|
focusable="false"
|
|
height="1em"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
viewBox="0 0 24 24"
|
|
width="1em"
|
|
{...props}
|
|
>
|
|
<polyline points="20 6 9 17 4 12" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default function App() {
|
|
const [groupSelected, setGroupSelected] = React.useState([]);
|
|
|
|
return (
|
|
<div className="flex flex-col gap-1 w-full">
|
|
<CheckboxGroup
|
|
className="gap-1"
|
|
label="Select amenities"
|
|
orientation="horizontal"
|
|
value={groupSelected}
|
|
onChange={setGroupSelected}
|
|
>
|
|
<CustomCheckbox value="wifi">Wifi</CustomCheckbox>
|
|
<CustomCheckbox value="tv">TV</CustomCheckbox>
|
|
<CustomCheckbox value="kitchen">Kitchen</CustomCheckbox>
|
|
<CustomCheckbox value="parking">Parking</CustomCheckbox>
|
|
<CustomCheckbox value="pool">Pool</CustomCheckbox>
|
|
<CustomCheckbox value="gym">Gym</CustomCheckbox>
|
|
</CheckboxGroup>
|
|
<p className="mt-4 ml-1 text-default-500">Selected: {groupSelected.join(", ")}</p>
|
|
</div>
|
|
);
|
|
}
|