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

javascript - Input loses focus when Popover opens in ShadCN - Stack Overflow

programmeradmin2浏览0评论

This ponent contains Popover & Input from shadcn. The issue I'm facing is that when I click on the Input to open the Popover, the Input loses focus, and the cursor moves out.

Expected behavior:
When clicking on the Input ponent, the Popover should open, and the Input should remain focused with the cursor inside it, allowing the user to type without any additional clicks.

Link to Sandbox

"use client";

import { Input } from "@/ponents/ui/input";
import {
  Popover,
  PopoverContent,
  PopoverTrigger,
} from "@/ponents/ui/popover";

export default function Searchbar() {
  return (
    <div className="w-1/3">
      <Popover>
        <PopoverTrigger>
          <Input />
        </PopoverTrigger>
        <PopoverContent>Place content for the popover here.</PopoverContent>
      </Popover>
    </div>
  );
}

This ponent contains Popover & Input from shadcn. The issue I'm facing is that when I click on the Input to open the Popover, the Input loses focus, and the cursor moves out.

Expected behavior:
When clicking on the Input ponent, the Popover should open, and the Input should remain focused with the cursor inside it, allowing the user to type without any additional clicks.

Link to Sandbox

"use client";

import { Input } from "@/ponents/ui/input";
import {
  Popover,
  PopoverContent,
  PopoverTrigger,
} from "@/ponents/ui/popover";

export default function Searchbar() {
  return (
    <div className="w-1/3">
      <Popover>
        <PopoverTrigger>
          <Input />
        </PopoverTrigger>
        <PopoverContent>Place content for the popover here.</PopoverContent>
      </Popover>
    </div>
  );
}
Share Improve this question asked May 2, 2024 at 10:46 Rayaan RRayaan R 951 silver badge6 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 15

You can fix this like so:

<Popover>
  <PopoverTrigger>
    <Input />
  </PopoverTrigger>
  <PopoverContent onOpenAutoFocus={(e) => e.preventDefault()}>
    Place content for the popover here.
  </PopoverContent>
</Popover>

Shadcn's <Popover /> uses Radix UI under the hood. The Radix docs for <Popover /> tell you how to prevent the popover from being focused, but it's not apparent. You have to hover the little "i" icon next to onOpenAutoFocus to see that you need to call preventDefault on the event. In my opinion, a section in their docs dedicated to this would be more helpful than hiding it behind a tooltip.

Here is a working example.

发布评论

评论列表(0)

  1. 暂无评论