GithubHelp home page GithubHelp logo

Comments (4)

CAYdenberg avatar CAYdenberg commented on June 11, 2024

Can you show us how you are issuing the redirect and how you are testing it? Because as read this is a description of unexpected behaviour by your browser, not Fresh.

from fresh.

MitchMcKean avatar MitchMcKean commented on June 11, 2024

Yes of course. I hope I am not wasting anyone's time by this maybe being a problem with my browser.
So if I hit a page directly by typing the address and the page response is a redirect, everything works fine and maybe I am wrong and this is also expected behavior but if I send a request to the Fresh Server and the response is a redirect, the address bar wont change but the page will load as expected.

So I am trying to use a Form for Login like this

export const handler: Handlers = {
  async GET(req: Request, ctx: FreshContext) {
    return await ctx.render();
  },
  async POST(req: Request, ctx: FreshContext) {
    const form = await req.formData();
    const email = form.get("email")?.toString();
    const password = form.get("password")?.toString();

    console.log(`Login for ${email} with ${password}`);

    const headers = new Headers();
    headers.set("location", "/posts");
    return new Response(null, {
      status: 303,
      headers,
    });
  },
};

export default function Login() {
  return (
    <>
      <Head>
        <title>Login</title>
      </Head>
      <div className="flex flex-wrap w-full max-w-sm bg-emerald-950 rounded-lg mt-24 p-4 mx-auto">
        <h1 className="text-4xl font-extrabold mx-auto">Login</h1>
        <div className="py-4 w-full">
          <form method="POST">
            <label
              className="block text-red-100 text-base uppercase font-bold mb-1"
              htmlFor="email"
            >
              EMail
            </label>
            <input
              type="email"
              id="email"
              name="email"
              className="w-full border bg-gray-800/50 rounded px-3 py-2 outline-none text-white"
            />
            <label
              className="block text-red-100 text-base uppercase font-bold mb-1 mt-4"
              htmlFor="password"
            >
              password
            </label>
            <input
              type="password"
              id="password"
              name="password"
              className="w-full border bg-gray-800/50 rounded px-3 py-2 outline-none text-white"
            />
            <div class="flex w-full justify-center pt-4">
              <button
                type="submit"
                className="relative bg-emerald-500 border border-transparent hover:border-emerald-200 py-2 px-6 rounded-md font-bold text-lg text-white"
              >
                Sign In / Login
              </button>
            </div>
          </form>
        </div>
      </div>
    </>
  );
}

from fresh.

marvinhagemeister avatar marvinhagemeister commented on June 11, 2024

Thanks for sharing the reproduction code. That made it a lot easier to understand what your scenario is, what happened and what you did expect to happen. Can confirm that this is a bug.

from fresh.

MitchMcKean avatar MitchMcKean commented on June 11, 2024

could it also be that in this case of a redirect, fresh also does not load any islands that are related to that page that the redirect is pointing to. Only those island exist, that already have been loaded.

from fresh.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.