Closed rliang closed 10 months ago
Moreover, the terminal also logs an error:
error - TypeError: (0 , react_dom__WEBPACK_IMPORTED_MODULE_1__.experimental_useFormStatus) is not a function
Even though the initial state is correctly displayed in the browser.
Just hit this too
I was able to get rid of the error by installing the next
/canary
builds of React and ReactDOM, however I still don't see updated values from useFormStatus
after I submit my form
Found out that useFormStatus
in fact looks up the status of the nearest <form>
parent element, i.e. the element that uses this hook must be a child of a <form>
.
Still getting the error in the server console though, even after upgrading next/react/react-dom.
I have an incredibly simple component, hitting the Error: (0 , react_dom__WEBPACK_IMPORTED_MODULE_3__.experimental_useFormStatus) is not a function
issue.
Installed react@next and react-dom@next and no change unfortunately.
Also having the same issue.
Same error here!
I managed to get rid of the experimental_useFormStatus is not a function
error with the following versions:
{
"react": "experimental",
"react-dom": "experimental",
"next": "canary"
}
But it's only for client components. So I get that error on server components.
You're importing a component that needs experimental_useFormStatus. It only works in a Client Component but none of its parents are marked with "use client", so they're Server Components by default.
@mauricekleine
How did you manage to get rid of experimental_useFormStatus is not a function
exactly? The following way?
{
"react": "next",
"react-dom": "next",
"next": "canary"
}
Found out that
useFormStatus
in fact looks up the status of the nearest<form>
parent element, i.e. the element that uses this hook must be a child of a<form>
.Still getting the error in the server console though, even after upgrading next/react/react-dom.
Thanks, I got it to work with this comment without having to resort to full-experimental mode, i.e. this works:
// app/.../page.tsx
"use server";
import { ClientComponent } from "./ClientComponent";
async function doSomething() {}
export default function Page() {
return <form action={doSomething}><ClientComponent /></form>;
}
// app/.../ClientComponent.tsx
"use client";
import { experimental_useFormStatus as useFormStatus } from "react-dom";
export function ClientComponent() {
const formStatus = useFormStatus();
return <input type="submit" disabled={formStatus.pending}>Go</input>;
}
@Gregoor Yeah that works because you're using it in a client component. Documentation doesn't state that:
@Gregoor You found a way to retrieve the response from the server action? I want to receive if had an error on server-side, and display that on my client component.
any idea why the pending flag does not update when the form is submitting? It’s always false.
@Gregoor Yeah that works because you're using it in a client component. [Documentation doesn't state that]
Yes-ish, but it did not work when <form>
was within ClientComponent
(formStatus
would not update). I'm sensing there is sth like React's Context going on here.
@Gregoor You found a way to retrieve the response from the server action? I want to receive if had an error on server-side, and display that on my client component.
Not yet, but I'd like to know that too
So... what is the recommended way of showing a loading status for server-component form submissions?
So... what is the recommended way of showing a loading status for server-component form submissions?
The only solution that has worked for me is having the form
and server action in a server component, then have a client component inside the form (should be a child of the form) consuming useFormStatus
.
You can find a full working example here: https://github.com/techulus/manage-prompt/blob/c9dad49a802c2192d1553d62e4b3151dda134fdf/app/console/workflows/new/page.tsx#L7
Is there a way for the form to avoid rerender & the useFormStatus
hook to work? It seems to be connected to the request sent by the form but it rerender the entire form once the request is returned & if you avoid the post by handling the server action and passing false to the on submit the useFormStatus
hook does not changes state
Documentation has been updated with NextJS v13.4.5.
Just in case if anyone is getting caught on the part where return value is not updated for a submitted form, I wrote a small utility that could help you with that. It allows you to lift the state of useFormStatus
from child component up to the parent.
https://gist.github.com/JLarky/190bab52ff13c44f9420523d1792fbf0
Just in case if anyone is getting caught on the part where return value is not updated for a submitted form, I wrote a small utility that could help you with that. It allows you to lift the state of
useFormStatus
from child component up to the parent.https://gist.github.com/JLarky/190bab52ff13c44f9420523d1792fbf0
Thank you! I appreciate the gist -- it worked great.
In next.config.js enable server actions.Don't forget to use npm run dev to build the project again. This worked for me.
const nextConfig = { experimental:{ serverActions:true, }, }
In next.config.js enable server actions.Don't forget to use npm run dev to build the project again. This worked for me.
const nextConfig = { experimental:{ serverActions:true, }, }
This worked for me too
Did anyone figure this out? I'm struggling to get this repo working with this error: https://github.com/steven-tey/prisma-server-actions
I have tried a lot of different ways, but the API is definitely experimental and breaks. So, reverted back to not using form action for complex form processing.
I got a TS error when trying to import:
import { experimental_useFormStatus as useFormStatus } from "react-dom";
When ignoring this error, problem seems to be solved
// ts-ignore because experimental_useFormStatus is not in the types
// @ts-ignore
import { experimental_useFormStatus as useFormStatus } from "react-dom";
Does anyone knows how to make this work with jest+testing library and with storybook, in both integration and visual tests i am getting (0 , react_dom__WEBPACK_IMPORTED_MODULE_1__.experimental_useFormState) is not a function
Found out that
useFormStatus
in fact looks up the status of the nearest<form>
parent element, i.e. the element that uses this hook must be a child of a<form>
.Still getting the error in the server console though, even after upgrading next/react/react-dom.
Has anyone found a way to get around that ?
what if I want to have
export default function Contact() {
const [state, formAction] = useFormState(myAction, initialState);
const { pending } = useFormStatus();
return <div>
{pending ? <h1>Loading...<h1> : ''}
<div>
...
<form action={formAction}>
....
Has anyone found a way to get around that ?
what if I want to have
export default function Contact() { const [state, formAction] = useFormState(myAction, initialState); const { pending } = useFormStatus(); return <div> {pending ? <h1>Loading...<h1> : ''} <div> ... <form action={formAction}> ....
@panoskouff useFormStatus
can only be used inside a client component, which is a child of a <form>
.
So what you can do is create a separate loading client component and place that inside your form.
"use client"
export default function SubmitButton() {
const { pending } = useFormStatus()
return (
<button type="submit" disabled={pending}>{pending ? 'Loading...' : 'Submit'}</button>
)
}
export default function Contact() {
return (
<form action={formAction}>
...
<SubmitButton />
</form>
)
}
If you don't want anything to be visible from the form, you could make all your inputs part of a client component.
"use client"
export default FormInputs() {
const { pending } = useFormStatus()
return (
<>
{pending ? (
<h1>Loading...<h1>
) : (
<>
<label><input /></label>
...
</>
)}
</>
)
}
Adding my learnings going through this. The documentation of NextJS is really not complete. Best would be to watch the video on Youtube: https://www.youtube.com/watch?v=dDpZfOQBMaU and check its repo here: https://github.com/vercel/next.js/tree/canary/examples/next-forms
Maybe I am missing something, but the docs say import { useFormStatus } from 'react-dom'
whilst the repo includes it experimentally import { experimental_useFormStatus as useFormStatus } from 'react-dom'
. Plus, y'all need to either update typescript definitions or // @ts-expect-error
.
Am I missing something here?
Update: just saw one of the comments suggested the following, which would be the alternative (more global) approach. I still believe the docs should be updated to give a better overview and examples, just as the YouTube video does.
{
"react": "experimental",
"react-dom": "experimental",
"next": "canary"
}
I got a TS error when trying to import:
import { experimental_useFormStatus as useFormStatus } from "react-dom";
When ignoring this error, problem seems to be solved
// ts-ignore because experimental_useFormStatus is not in the types // @ts-ignore import { experimental_useFormStatus as useFormStatus } from "react-dom";
But while deploying in vercel I will throw same error. Locally it runs despite of typescript error.
I got a TS error when trying to import:
import { experimental_useFormStatus as useFormStatus } from "react-dom";
When ignoring this error, problem seems to be solved
// ts-ignore because experimental_useFormStatus is not in the types // @ts-ignore import { experimental_useFormStatus as useFormStatus } from "react-dom";
But while deploying in vercel I will throw same error. Locally it runs despite of typescript error.
Above to work locally and on vercel, have it like this:
// @ts-expect-error import { experimental_useFormStatus as useFormStatus } from "react-dom";
Hi, the documentation needs to be updated in nextjs. They even did not mention this experimental stuff. Also i'm kinda start get frustrated these days. I'm currently in a migration to nextjs with my pet project and keep hit these kind of walls. Started with prisma and edge runtime. I know this is not easy and i'm really appriciate the work behind this meta framework but this server side action things needs to be clearified. Most of these kind of frameworks already can provide a single loading state from server side action. I think the workaround maybe the startTransition hook but i don't know because this is very under documented. Sorry for this but i'm overall kinda frustrated the current frontend era....
I see that this nextjs product have import { experimental_useFormStatus as useFormStatus } from "react-dom"; in the addButton.tsx with no error and no // @ts-expect-error https://github.com/saleor/storefront
how was this problem solved im still very much confused
I updated NextJS 13.5.5 to 13.5.7, it worked for me.
Just run npm i next@canary
how was this problem solved im still very much confused
This does work in NextJS 13.5.6, but now seems to be broken in NextJS 14.0.0.
Anyone else having this issue?
This does work in NextJS 13.5.6, but now seems to be broken in NextJS 14.0.0.
Can you be more specific? What I shared above (https://github.com/vercel/next.js/issues/49232#issuecomment-1768650794) works for me.
Ignore me... Apologies....
I was missing my morning coffee and not reading error responses... and on my second attempt see it's working.
Our code for NextJS 13.5.6 works in NextJS 14.0.0, with the only change being to remove the 'experimental_' prefix within the imports (both for useFormState and useFormStatus).
I just updated to next.js 14. I had to add @ts-expect-error
// @ts-expect-error
import { useFormStatus } from 'react-dom';
else typescript throws an error that useFormStatus is not exported . It works fine for me now though.
In my case the TS module resolution error was solved by adding yarn add -D @types/react-dom
instead of using // @ts-expect-error
refer to the NextJS latest example https://github.com/vercel/next.js/tree/canary/examples/next-forms in that use correct the verion of react-dom in package.json to latest. This will resolve the pnpm run build error "@types/react-dom": "^18.2.14",
refer to the NextJS latest example https://github.com/vercel/next.js/tree/canary/examples/next-forms in that use correct the verion of react-dom in package.json to latest. This will resolve the pnpm run build error "@types/react-dom": "^18.2.14",
Yes! See above: https://github.com/vercel/next.js/issues/49232#issuecomment-1768650794
Maybe not the Not the "experimental" nor "canary" versions
But the "latest" Or still better to use specific versions as in the official example ammended with the type react-dom version I have mentioned above. Cheers!
On Fri, 3 Nov, 2023, 14:23 micheltucker, @.***> wrote:
refer to the NextJS latest example https://github.com/vercel/next.js/tree/canary/examples/next-forms in that use correct the verion of react-dom in package.json to latest. This will resolve the pnpm run build error @.***/react-dom": "^18.2.14",
Yes! See above: #49232 (comment) https://github.com/vercel/next.js/issues/49232#issuecomment-1768650794
— Reply to this email directly, view it on GitHub https://github.com/vercel/next.js/issues/49232#issuecomment-1792068800, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQZ4KG2SQQRNCFPRXLHX2BDYCSWKLAVCNFSM6AAAAAAXWE2PJKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOJSGA3DQOBQGA . You are receiving this because you commented.Message ID: <vercel/next. @.***>
Started working for me after running yarn add next@latest
👻.
I still cannot get rid of this error TypeError: (0 , react_dom__WEBPACK_IMPORTED_MODULE_2__.useFormStatus) is not a function
. I have tried all solutions mentioned above, but none had effect, experimental or not did not matter. I'm using this function in my other project and it is working perfectly fine. I have copied all dependencies versions from there but still no effect on my current project...
Any other ideas how to get rid of this error?
Hi in my case i was using the useFormStatus in the same component as the form to disable the submit button when the for is submiting. and i got that issue: TypeError: (0 , react_dom__WEBPACK_IMPORTED_MODULE_2__.useFormStatus) is not a function
.
I created a separate component, lets called SubmitButton and i placed the useFormStatus and call it there, then i import the component and used as a child of the form, and then i used the ts annotation: // @ts-ignore import { experimental_useFormStatus as useFormStatus } from "react-dom";
mentioned by @WilsonKinyua
The button component:
` const SubmitButton = () => {
const {pending} = useFormStatus();
return (
<Button type="submit"
className="group rounded-full h-[3rem] w-[8rem] flex gap-2 outline-none transition-all focus:scale-110 hover:scale-110 hover:bg-gray-950 active:scale-105 dark:bg-white dark:bg-opacity-10 disabled:scale-100 disabled:bg-opacity-65">
{
pending
?
(
<div className="h-5 w-5 rounded-full border-b-2 border-white animate-spin"/>
)
:
(
<>
Submit{" "}
<FaPaperPlane
className="text-xs opacity-70 transition-all group-hover:translate-x-1 group-hover:-translate-y-1"/>{" "}
</>
)
}
</Button>
)
} `
I just fixed it by changing versions of:
"@types/react-dom": "18.2.17",
"@types/react": "18.2.39",
"next": "canary",
"eslint-config-next": "canary",
"react": "next",
"react-dom": "next",
with the given values. I hope that works.
@kuijpie thank you 🙏🏻
the only thing that helped me is to place action and form tag in a Server component, but the form content in JSX.fragment inside Client component.
If you're using the next and react libraries with their experimental version, you should upgrade your @types/react-dom
to 18.2.7
version, and error goes to the void. I mean it worked for me!
I got the error TypeError: (0 , react_dom__WEBPACK_IMPORTED_MODULE_1__.useFormStatus) is not a function
For me useFormStatus
is shown as stable.
"use client";
import { Button, ButtonProps } from "@mui/material";
import { useFormStatus } from "react-dom";
const FormButton = (props: ButtonProps) => {
const { pending } = useFormStatus();
return <Button disabled={pending} {...props} />;
};
export default FormButton;
The above code does not give a TS error but gives the runtime error mentioned earlier. The reason is types and the implementations do not match. In implementation, it is still experimental. So I had to do this,
"use client";
import { Button, ButtonProps } from "@mui/material";
// import { useFormStatus } from "react-dom";
// @ts-expect-error Types and implementations do not match
import { experimental_useFormStatus as useFormStatus } from "react-dom";
const FormButton = (props: ButtonProps) => {
const { pending } = useFormStatus();
return <Button disabled={pending} {...props} />;
};
export default FormButton;
Now the runtime error goes away and useFormStatus
works (functionally) as expected.
in package.json
versions look like this,
"dependencies": {
"next": "13.5.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18"
}
I have no idea how to do version matching here because they all have the same major release version.
After upgrading to Next 14 (14.0.4 to be exact), I could import useFormStatus
(the stable one).
Verify canary release
Provide environment information
Which area(s) of Next.js are affected? (leave empty if unsure)
App directory (appDir: true)
Link to the code that reproduces this issue
https://github.com/rliang/next-use-form-status-bug-reproduction
To Reproduce
npm run dev
localhost:3000
in the browsersubmit
buttonDescribe the Bug
useFormStatus
doesn't work, such that its return value is never updated when submitting a form.Expected Behavior
The page should update the
formStatus
after clicking onsubmit
.Which browser are you using? (if relevant)
No response
How are you deploying your application? (if relevant)
No response
NEXT-1168