@theguild/components
Version:
56 lines (55 loc) • 1.51 kB
JavaScript
import { jsx } from "react/jsx-runtime";
import { cn } from "../cn";
const Tag = ({ children, selected, onClick, ...rest }) => {
return /* @__PURE__ */ jsx(
"button",
{
tabIndex: onClick ? 0 : -1,
className: cn(
"hive-focus inline cursor-pointer rounded-full border-0 px-3 py-1 text-xs font-medium outline-none",
selected ? "bg-neutral-700 text-white [.green_&]:bg-green-600" : "bg-neutral-900/5 text-neutral-800 dark:bg-neutral-200/10 dark:text-neutral-200 [.green_&]:bg-green-700 [.green_&]:text-green-200"
),
onClick,
...rest,
children
}
);
};
const TagsContainer = ({
children,
className,
focusgroup
}) => {
return (
// eslint-disable-next-line jsx-a11y/no-static-element-interactions
/* @__PURE__ */ jsx(
"div",
{
className: cn("flex flex-wrap gap-2 py-2", className),
onKeyDown: focusgroup ? moveFocusWithLeftAndRight : void 0,
children
}
)
);
};
const moveFocusWithLeftAndRight = (event) => {
if (event.target instanceof HTMLElement && event.target.tagName === "BUTTON") {
let next;
switch (event.key) {
case "ArrowRight":
next = event.target.nextElementSibling;
break;
case "ArrowLeft":
next = event.target.previousElementSibling;
break;
}
if (next && next instanceof HTMLElement && next.tagName === "BUTTON") {
event.preventDefault();
next.focus();
}
}
};
export {
Tag,
TagsContainer
};