-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] - Using Dropdown component in Next.JS throws a runtime exception #1403
Comments
Happens on Tabs too @tabs/2.0.11 For now wrapping them in a client component ("use client") makes them work. |
Hey @iyxan23 we are waiting for the next react-aria release to get this issue fixed, the current collection approach is compiled by next.js in a different way so it removes the |
Alright! I'll be keeping an eye on new updates 😉 |
Hy guys, Do we have an estimate of when this will be fixed? |
The Select component doesn't seem to be working either. |
What exactly do we add to our code to temporarily resolve it? I'm running into this issue with dropdowns. |
No need to mark the whole page or larger server components as client components because of this. You can just do this
Now you can just import the component from this file and you're done |
Thanks for this. It's works for me.. I was finding around for Tabs issue, but I didn't find.... |
Is there any way to work around this on a component which must be server-side generated? |
Hey there, any updates for tabs? |
Still doesn't seem to be working. The workaround is creating a mess between client component and server action... I hope this gets fixed soon. |
any updates? |
If you put your offending Accordion/Dropdown/Select, etc. code into a new component, put |
same issue here any updates? |
same issue... |
+1 |
2 similar comments
+1 |
+1 |
You meant "other directory" insidie app directory like 'src/app/something/layout' or 'src/something/layout' ? or either works. Thanks in advance |
Hello i found a fix for that:
|
I love you |
@jrgarciadev |
Still having this issue trying to use dropdowns, any timeline on a update? |
Hi, try with the 'use client' y your component |
This works but breaks SSR |
Every nextUi component has the 'use client' declared at top, and i don't know if the dev want to change it, finally i decided to use primereact, is very easy |
Guys did you read the dev's reply? He said you should use "use client" for now, but internally nextjs removes the 'use client' so the component is rendered in the server... |
this bug also applies to Select. the docs don't mention |
@Veeresh-R-G it's more like you missed |
@wingkwong I had copied the code from the docs at Next-UI. For the first time I ran the code, it did show the mentioned errors, but now its working fine. Thanks for the prompt reply 😀 |
Any updates on this issue? appears to still be broken, even when I try exporting it in a simple component that says "use client" as the top, e.g. "use client" export {Select, SelectItem} from "@nextui-org/select" Instead, I have to put "use client" on the page where I invoke Select, which is not ideal. |
If you're using the Pages Directory, you don't need to worry about this. Unfortunately the only "fix" for now (for App Directory projects) is to move your element (whether it's a Table, an Accordion or some other element with this issue) to a seperate Client Component and render that where you need to. |
it's not work // /utils/nextui.ts
"use client";
import { Accordion, AccordionItem } from "@nextui-org/accordion";
export { Accordion, AccordionItem }; // /app/veterinary/page.tsx
import { Accordion, AccordionItem } from "@/utils/nextui";
import { title } from "@/components/primitives";
const VeterinaryPage = async () => {
const res = await fetch(
`${process.env.API_HOST}/categories/categories?source=1`,
);
const data = (await res.json()) || [];
return (
<div className="flex flex-col items-center justify-center gap-4">
<h1 className={title()}>专业医疗</h1>
{/* body */}
<div className="flex flex-wrap gap-4 mt-4">
<Accordion variant="splitted">
{data.map((item: any) => (
<AccordionItem
key={item.id}
aria-label="Accordion 1"
title={item.name}
>
{item.children.map((child: any) => (
<span key={item.id}>{child.name}</span>
))}
</AccordionItem>
))}
</Accordion>
</div>
</div>
);
};
export default VeterinaryPage; thorow error
|
@citrusjunoss You can't use these elements with server components (for now I guess), also, why would you import the Accordion in a CC file and export it? Just make the VeterinaryPage not async, use the "use client" directive, wrap the fetch in a useEffect, store the data as state and you're good. Take a look at these docs for fetching |
Do I have to give up server-side rendering for my entire page because of this component, if so, then give up on this component, server-side rendering is more important to me BTW, I see the official website describes it this way, won't he take effect if I put it in a file like this? ![]() |
@citrusjunoss Yes, you can export part of your code into a new file and use it in your server component (as long as the new file has a "use client" directive) |
It's been a while. Shouldn't this be documented as note? |
That "bug" has been there for > 1 year !! I understand the wait ... but hey at least document it ! (so that users don't spend hours in the middle of the night trying to figure it out !! ^^) Source : heroui-inc#1403 (comment)
Among these components that pose challenges for SSR, the most impactful one is the |
I'm confused, there have been 9 react-aria releases since this issue was raised, have any of them addressed this problem? If I understand correctly many components are only client side due to the use of 'use client', is that correct? |
I'm guessing react-aria is never going to fix this. The reasoning is here: adobe/react-spectrum#5826 |
NextUI Version
^2.0.15
Describe the bug
Using the Dropdown component as stated in the docs causes a Runtime Exception when the trigger is clicked. The error itself does not provide any meaningful information for debugging:
Error: Unknown element <[object Object]> in collection.
, so I believe this is an internal bug. Source: https://nextui.org/docs/components/dropdownYour Example Website or App
No response
Steps to Reproduce the Bug or Issue
Error: Unknown element <[object Object]> in collection.
Additional info: I'm using Vivaldi, a derivative of chrome.
Expected behavior
I expected the dropdown to show and to not raise an exception.
Screenshots or Videos
nextui-bug.mp4
Operating System Version
Fedora 38 KDE Plasma; Linux laptop 6.3.11-200.fc38.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jul 2 13:17:31 UTC 2023 x86_64 GNU/Linux
Browser
Other (add additonal context)
The text was updated successfully, but these errors were encountered: