最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

reactjs - HeroUI ListboxItem doesn't render check mark when selected - Stack Overflow

programmeradmin0浏览0评论

I'm using the Listbox component from HeroUI to allow multiple selections in a form. According to the documentation, a check mark should appear next to each selected ListboxItem. However, in my project, the check mark does not appear.

I've tried:

  • Changing background colors and widths to check if it's hidden
  • Ensuring that selectedKeys contains the selected values

Despite these attempts, the check mark is still missing. I'm using tailwind for styles. Here my code:

"use client";
import { Chip } from "@heroui/chip";
import { useMemo, useState } from "react";
import { Listbox, ListboxItem } from "@heroui/listbox";
import type { Selection } from "@react-types/shared";
import { Label } from "../ui/label";
import {
  Tooltip,
  TooltipContent,
  TooltipProvider,
  TooltipTrigger,
} from "../ui/tooltip";
import { Info } from "lucide-react";

interface SelectOption {
  value: string;
  label: string;
}

interface MultipleSelectorFieldProps {
  id: string;
  label: string;
  tooltipText: string;
  options: SelectOption[];
  onValueChange?: (value: string) => void;
  error?: string;
  className?: string;
}

export default function MultipleSelectorField({
  id,
  label,
  tooltipText,
  options,
}: MultipleSelectorFieldProps) {
  const [values, setValues] = useState<Selection>(new Set());

  const arrayValues =
    values === "all" ? options.map((r) => r.value) : Array.from(values);

  const selectedContent = useMemo(() => {
    if (!arrayValues.length) {
      return null;
    }

    return (
      <div className="w-full h-auto max-h-[195px] mt-2 flex flex-wrap py-0.5 px-2 gap-1 overflow-auto">
        {arrayValues.map((value) => (
          <Chip
            key={value}
            size="md"
            className="bg-blue text-white rounded-full"
          >
            {options.find((op) => op.value === value)?.label}
          </Chip>
        ))}
      </div>
    );
  }, [arrayValues, options]);

  return (
    <div className="space-y-2">
      <div className="flex items-center gap-2">
        <Label htmlFor={id}>{label}</Label>
        <TooltipProvider>
          <Tooltip>
            <TooltipTrigger>
              <Info className="h-4 w-4 text-muted-foreground" />
            </TooltipTrigger>
            <TooltipContent>
              <p>{tooltipText}</p>
            </TooltipContent>
          </Tooltip>
        </TooltipProvider>
      </div>
      <div className="w-full max-h-[300px] border-small px-1 py-2 rounded-2xl border-blueDark/20 dark:border-default-100">
        <p className="text-sm text-muted-foreground pl-2">
          Seleccione los riesgos del reactivo
        </p>
        <div className="grid grid-cols-2">
          <Listbox
            classNames={{
              list: "max-h-[200] overflow-auto",
            }}
            items={options}
            label="Multiple selection"
            selectionMode="multiple"
            variant="flat"
            selectedKeys={values}
            onSelectionChange={setValues}
          >
            {(item) => (
              <ListboxItem key={item.value} textValue={item.label}>
                <Chip size="md">{item.label}</Chip>
              </ListboxItem>
            )}
          </Listbox>
          <div>{selectedContent}</div>
        </div>
      </div>
    </div>
  );
}

How it looks: Running component

Example from HeroUI documentation: HeroUI ListBox Example

发布评论

评论列表(0)

  1. 暂无评论