next.js icon indicating copy to clipboard operation
next.js copied to clipboard

next.js 14 redirect() inside a server action can't switch between root layouts (was working in next.js 13)

Open meszaros-lajos-gyorgy opened this issue 1 year ago • 27 comments

Link to the code that reproduces this issue

https://github.com/meszaros-lajos-gyorgy/nextjs-14-redirect-bug

To Reproduce

  1. start the development server with npm run dev
  2. open http://localhost:3000/en in your browser
  3. Click on the "search" submit button on top of the page next to the text input (it doesn't matter what you enter into the textfield, it always redirects to the same route -> http://localhost:3000/en/search/hello)

Current vs. Expected behavior

Expected result:

You should land on /en/search/hello as that is the hardcoded redirection inside the server action in services/SiteSearch.service.ts.

( This was the behavior in Next.js 13.4.12, but it also threw an error (see https://github.com/vercel/next.js/issues/53392) )

Actual result:

The server action sends back a redirect instruction among the response headers:

X-Action-Redirect: /en/search/hello

but the page does not go to that path

Verify canary release

  • [X] I verified that the issue exists in the latest Next.js canary release

Provide environment information

Operating System:
  Platform: linux
  Arch: x64
  Version: #37~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct  9 15:34:04 UTC 2
Binaries:
  Node: 21.1.0
  npm: 10.2.0
  Yarn: 1.22.15
  pnpm: 6.11.0
Relevant Packages:
  next: 14.0.2
  eslint-config-next: 14.0.2
  react: 18.2.0
  react-dom: 18.2.0
  typescript: 5.2.2
Next.js Config:
  output: N/A

Which area(s) are affected? (Select all that apply)

App Router

Additional context

When I try the same but first opening http://localhost:3000/en/search/world and then try to redirect via the server action then it works without any issues.

I've also wrote down all of the infos above to the readme in my repo.

meszaros-lajos-gyorgy avatar Nov 09 '23 21:11 meszaros-lajos-gyorgy

Still not working in 14.0.3

meszaros-lajos-gyorgy avatar Nov 17 '23 07:11 meszaros-lajos-gyorgy

The issue is still present in 14.0.4-canary.18

meszaros-lajos-gyorgy avatar Nov 27 '23 09:11 meszaros-lajos-gyorgy

Do we have an update on this one?

I had to do a bit of a workaround to render my login page instead of the nav as redirect does not work for me:

// Next
import { redirect } from "next/navigation"

// Queries
import { getUser } from "@/actions/queries/user/getUser"

// Auth
import { auth } from "@/auth"

// Components
import Nav from "@/components/nav"

// Pages
import LoginPage from "../(auth)/login/page"

export default async function AppLayout({
  children,
}: {
  children: React.ReactNode
}) {
  const session = auth()

  if (!session) {
    redirect("/login")
  }

  const user = session !== null ? await getUser() : null

  return <>{user ? <Nav user={user}>{children}</Nav> : <LoginPage />}</>
}

mathiasrscom avatar Dec 02 '23 00:12 mathiasrscom

Version 14.0.4-canary.39 still broken

meszaros-lajos-gyorgy avatar Dec 04 '23 11:12 meszaros-lajos-gyorgy

probably the same issue or very similar: https://github.com/vercel/next.js/issues/59217

meszaros-lajos-gyorgy avatar Dec 04 '23 11:12 meszaros-lajos-gyorgy

any work around?

muhaimincs avatar Dec 06 '23 03:12 muhaimincs

This whole time I thought it was me, but yes this is a pretty major issue for us.

jmarbutt avatar Dec 10 '23 01:12 jmarbutt

Still broken in v14.0.5-canary.6.

The possible workaround here is that the server action sends back some json data to the client and then the client can do a redirect on client side. Kinda removes the purpose of having server side actions though. Or we can always downgrade back to v13 I guess.

meszaros-lajos-gyorgy avatar Dec 11 '23 18:12 meszaros-lajos-gyorgy

This actually does work for me for all redirects apart from redirect('/') or redirect('').

I have two root layouts in seperate groups. Where a server action from the login page does a redirect().

image

pinoniq avatar Dec 12 '23 21:12 pinoniq

This email was not delivered due to system error. I discovered it and forwarded to you. issue has been fixed since then

Best Regards

Daniel @.***> Sr. Systems Engineer

@.***http://www.progress.com/

PROGRESS SOFTWARE CORPORATION 15 Wayside Rd, Suite 400 Burlington, MA 01803 USA

DIRECT 1 781 207 9256

WWW.PROGRESS.COMhttp://www.progress.com/

From: Jeroen Meeus @.> Sent: Tuesday, December 12, 2023 4:51 PM To: vercel/next.js @.> Cc: Subscribed @.***> Subject: Re: [vercel/next.js] next.js 14 redirect() inside a server action can't switch between root layouts (was working in next.js 13) (Issue #58263)

This actually does work for me for all redirects apart from redirect('/') or redirect('').

I have two root layouts in seperate groups. Where a server action from the login page does a redirect().

image.png (view on web)https://github.com/vercel/next.js/assets/1027292/fbc991f1-d720-4c92-a60f-b0d0b862aa0d

— Reply to this email directly, view it on GitHubhttps://github.com/vercel/next.js/issues/58263#issuecomment-1852864225, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ALWM4WBE7JVMBUFERLXAJ6TYJDGV5AVCNFSM6AAAAAA7FGXDWCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQNJSHA3DIMRSGU. You are receiving this because you are subscribed to this thread.Message ID: @.***>

PaskalevStoyan avatar Dec 13 '23 20:12 PaskalevStoyan

It's still not working

charandeep7 avatar Dec 16 '23 18:12 charandeep7

I'm with the same problem. Redirect is not updating the route

carolinevsboliveira avatar Dec 17 '23 18:12 carolinevsboliveira

Same for me. The first 3 hours i thought its about me being fairly new to NextJS but redirecting to some destination within my origin RootLayout works without issues. Its the context switching which breaks the redirect.

This one is pretty ugly because it affects one super mainstream use case "redirect after login", where its pretty normal that the login page is inside your "website" Routing Group and the target route is something like a dashboard in the "WebApp" Routing Group.

For the time being i will re-architect my loginpage to be a client comoonent which calls a handleSubmit() which calls my server action to auth and then get back JSON to handleSubmit where i will do a Route push. Works but ugly.

logemann avatar Dec 25 '23 01:12 logemann

Off topic, but I have to admit that I regret choosing Next 13 for a new project. This whole next generation of next.js kinda feels like a work-in-progress/proof-of-concept project rather than something that is production ready.

meszaros-lajos-gyorgy avatar Dec 29 '23 20:12 meszaros-lajos-gyorgy

I've spent way too many frustrating hours on this. For me, the work around is to just have a common root layout with minimum markup.

Project structure: image

Example of /app/layout.tsx

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="zh">
        <body>{children}</body>
    </html>
  )
}

mr-14 avatar Jan 05 '24 02:01 mr-14

Still broken in v14.0.5-canary.43

meszaros-lajos-gyorgy avatar Jan 08 '24 01:01 meszaros-lajos-gyorgy

wow, same issue. cant use with condition

innobrightcafe avatar Jan 08 '24 19:01 innobrightcafe

still not working

AndreyKornyusko avatar Jan 16 '24 11:01 AndreyKornyusko

because of that i reverted from a two root layout setup to one rootLayout (which basically has no layout at all).

logemann avatar Jan 16 '24 12:01 logemann

I've spent way too many frustrating hours on this. For me, the work around is to just have a common root layout with minimum markup.

Project structure: image

Example of /app/layout.tsx

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="zh">
        <body>{children}</body>
    </html>
  )
}

This works for me as well. For [email protected] when you have group routes defined in the app it's required to use an minimum layout.tsx for work.

guscsales avatar Jan 20 '24 00:01 guscsales

I've spent way too many frustrating hours on this. For me, the work around is to just have a common root layout with minimum markup.

Project structure: image

Example of /app/layout.tsx

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="zh">
        <body>{children}</body>
    </html>
  )
}

This worked! Thank you! This is such an annoying and undocumented issue. Wasted almost 3 hours before I saw this thread.

sachinbhatnagar avatar Jan 21 '24 17:01 sachinbhatnagar

Tested it on the latest canary version 14.1.1-canary.45, still broken, updated the repo for reproducing the issue.

meszaros-lajos-gyorgy avatar Feb 11 '24 15:02 meszaros-lajos-gyorgy

Moving from NuxtJs to NextJs and got the same problem, I am starting to regret it based on this simple requirement :-(

iamgmd avatar Feb 12 '24 15:02 iamgmd

How hasn't this got much attention? Feels like a pretty big issue.

adamchipperfield avatar Feb 13 '24 22:02 adamchipperfield

Actually, I did get this working as I wanted, bear with me, I am new to NextJs and what I am doing maybe not what is intended but for me, all of my errors have gone and the redirect works as expected along with the different layouts rendering how I want them.

In my scenario I wanted 2 layouts, the anon layout and the landing layout. The only difference between those two is that I also have a Navbar in the landing layout.

@guscsales is correct, you need the root layout and the other layouts become nested layouts (I think).

So what I did is have the layout.tsx in the root of the app, with this being the root layout, it holds all of the top level stuff. (fyi, I have ShadCn also installed) and the other layouts are in route groups (anon) and (landing)

import { Montserrat as FontSans } from "next/font/google";
import "@/styles/globals.css";

const defaultUrl = process.env.VERCEL_URL
  ? `https://${process.env.VERCEL_URL}`
  : "http://localhost:3000";

export const metadata = {
  metadataBase: new URL(defaultUrl),
  title: "My NextJs and Supabase site",
  description: "The fastest way to build apps with Next.js and Supabase",
};

import { cn } from "@/lib/utils";

export const fontSans = FontSans({
  subsets: ["latin"],
  variable: "--font-sans",
});

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body
        className={cn(
          "min-h-screen bg-background font-sans text-foreground antialiased",
          fontSans.variable,
        )}
      >
        {children}
      </body>
    </html>
  );
}

The (anon)/layout.tsx looks like this:-

export default function AnonLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div className="flex min-h-screen flex-col items-center">{children}</div>
  );
}

The (landing)/layout.tsx looks like this:-

import Navbar from "@/components/Navbar";

export default function LandingLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div className="min-h-screen bg-background font-sans text-foreground antialiased">
      <Navbar />
      {children}
    </div>
  );
}

In my (anon)/login/page.tsx I have my signin method redirect as below.

  const signIn = async (formData: FormData) => {
    "use server";

    const email = formData.get("email") as string;
    const password = formData.get("password") as string;
    const supabase = createClient();

    const { error } = await supabase.auth.signInWithPassword({
      email,
      password,
    });

    if (error) {
      return redirect("/login?message=Could not authenticate user");
    }

    return redirect("/");
  };

Apologies for the messy response, just wanted to let peeps know how I am doing this. Feel free to correct me, as I said, I am new to NextJs.

It maybe that the problem derives from the fact that you can/should only have one <html><body> so don't put them in anything else except the root layout.tsx.

iamgmd avatar Feb 14 '24 15:02 iamgmd

@meszaros-lajos-gyorgy I have just amended your code slightly below and the redirect works as expected:

Add layout.tsx in src/app:-

export const metadata = {
  title: "Next.js",
  description: "Generated by Next.js",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}

Amend src/app/[locale]/layout.tsx to:

import { SiteSearch } from "@/components/SiteSearch";

export default function LocaleLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div>
      <SiteSearch />
      {children}
    </div>
  );
}

Amend src/app/search/layout.tsx:

import { SiteSearch } from "@/components/SiteSearch";

export default function SearchLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div>
      <SiteSearch />
      {children}
    </div>
  );
}

Amend src/app/search/[search]/page.tsx to get the params:

export default async function SearchPageEN(args: any) {
  return (
    <div>
      <h1>/en/search/{args.params.search}</h1>
    </div>
  );
}

let us know if it all works for you.

iamgmd avatar Feb 14 '24 16:02 iamgmd

I also ended up creating a fake root element called (root) with nothing more than the html and body tags inside. It's just inconvinient as you have to adjust the paths of every import in all the files inside the app folder.

Update: I've stopped using next.js altogether somewhere in mid-April and I'm just using vanilla react now. There are way too many unanswered questions and way too many issues which don't get addressed. In every release all I see are fixes for Turbopack.

meszaros-lajos-gyorgy avatar Feb 15 '24 09:02 meszaros-lajos-gyorgy

I do agree with comment above, that if your architecture is splitted between route groups without any root layout, then you need to have 1 root layout on your project that's used by your next app.

I think it's a bug that next cannot redirect to different layout

cantdocpp avatar Feb 17 '24 10:02 cantdocpp

Still not working. I have two root layouts for the info. Next version is 14.1.0. As a workaround for now, I am returning a status from the server action like {status: error | success} and based on that handling the redirection on the client side via useRouter from next/navigation.

dorji-dev avatar Feb 19 '24 16:02 dorji-dev

I think the same problem occurs when you have just one root layout, I've asked about this on stackOverflow https://stackoverflow.com/questions/78029743/how-to-properly-use-redirect-on-nextjs-14

Using Next 14.1.0, but couldn't do any of the workarounds cited here, because i'm trying to keep the page as a server page

arkantoster avatar Feb 20 '24 19:02 arkantoster

Same here with routing groups and next 14.1.0

ootkin avatar Mar 01 '24 10:03 ootkin