@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
96 lines (95 loc) • 3.56 kB
JavaScript
"use client";
import { getRadius } from "../../../core/utils/get-size/get-size.mjs";
import { createVarsResolver } from "../../../core/styles-api/create-vars-resolver/create-vars-resolver.mjs";
import { useProps } from "../../../core/MantineProvider/use-props/use-props.mjs";
import { useStyles } from "../../../core/styles-api/use-styles/use-styles.mjs";
import { factory } from "../../../core/factory/factory.mjs";
import { useDirection } from "../../../core/DirectionProvider/DirectionProvider.mjs";
import { UnstyledButton } from "../../UnstyledButton/UnstyledButton.mjs";
import { RadioGroupContext } from "../RadioGroup/RadioGroup.mjs";
import RadioCard_module_default from "./RadioCard.module.mjs";
import { createContext, use } from "react";
import { jsx } from "react/jsx-runtime";
//#region packages/@mantine/core/src/components/Radio/RadioCard/RadioCard.tsx
const RadioCardContext = createContext(null);
const defaultProps = { withBorder: true };
const varsResolver = createVarsResolver((_, { radius }) => ({ card: { "--card-radius": getRadius(radius) } }));
const RadioCard = factory((_props) => {
const props = useProps("RadioCard", defaultProps, _props);
const { classNames, className, style, styles, unstyled, vars, checked, mod, withBorder, value, onClick, name, onKeyDown, attributes, ...others } = props;
const getStyles = useStyles({
name: "RadioCard",
classes: RadioCard_module_default,
props,
className,
style,
classNames,
styles,
unstyled,
attributes,
vars,
varsResolver,
rootSelector: "card"
});
const { dir } = useDirection();
const ctx = use(RadioGroupContext);
const _checked = typeof checked === "boolean" ? checked : ctx?.value === value || false;
const _name = name || ctx?.name;
const handleKeyDown = (event) => {
onKeyDown?.(event);
if (!_name) return;
if ([
"ArrowDown",
"ArrowUp",
"ArrowLeft",
"ArrowRight"
].includes(event.nativeEvent.code)) {
event.preventDefault();
const siblings = Array.from(document.querySelectorAll(`[role="radio"][name="${_name}"]`));
const currentIndex = siblings.findIndex((element) => element === event.target);
const nextIndex = currentIndex + 1 >= siblings.length ? 0 : currentIndex + 1;
const prevIndex = currentIndex - 1 < 0 ? siblings.length - 1 : currentIndex - 1;
if (event.nativeEvent.code === "ArrowDown") {
siblings[nextIndex].focus();
siblings[nextIndex].click();
}
if (event.nativeEvent.code === "ArrowUp") {
siblings[prevIndex].focus();
siblings[prevIndex].click();
}
if (event.nativeEvent.code === "ArrowLeft") {
siblings[dir === "ltr" ? prevIndex : nextIndex].focus();
siblings[dir === "ltr" ? prevIndex : nextIndex].click();
}
if (event.nativeEvent.code === "ArrowRight") {
siblings[dir === "ltr" ? nextIndex : prevIndex].focus();
siblings[dir === "ltr" ? nextIndex : prevIndex].click();
}
}
};
return /* @__PURE__ */ jsx(RadioCardContext, {
value: { checked: _checked },
children: /* @__PURE__ */ jsx(UnstyledButton, {
mod: [{
"with-border": withBorder,
checked: _checked
}, mod],
...getStyles("card"),
...others,
role: "radio",
"aria-checked": _checked,
name: _name,
onClick: (event) => {
onClick?.(event);
ctx?.onChange(value || "");
},
onKeyDown: handleKeyDown
})
});
});
RadioCard.displayName = "@mantine/core/RadioCard";
RadioCard.classes = RadioCard_module_default;
RadioCard.varsResolver = varsResolver;
//#endregion
export { RadioCard, RadioCardContext };
//# sourceMappingURL=RadioCard.mjs.map