Qwik JS Full Stack App | User Login Via Supabase Coding | Part 5

Поділитися
Вставка
  • Опубліковано 8 лют 2025
  • It is time to allow users to successfully login to our application using Qwik JS via the Supabase integration that we set up in prior tutorials. This will involve copying much of the same code we used on the Qwik JS Signup page and repurposing it for logging in. However, we will also create and event listener for Auth session changes via the Supabase connection and a Staging page which will handle redirecting to a user dashboard etc.
    Next video: • Qwik JS Full Stack App...
    Previous video: • Qwik JS Full Stack App...

КОМЕНТАРІ • 22

  • @brachypelma24
    @brachypelma24 Рік тому +3

    Thanks again for this great content. One thing to note @9:50 and thereafter: useClientEffect$ is no longer part of Qwik (I think it was removed around 1.0). I think the relevant replacement is useVisibleTask$, which is the client-side-only hook for current (mid-2023) versions of Qwik.

  • @RobertoOrtis
    @RobertoOrtis 2 роки тому +4

    Golden content! You deserve at least a million subscribers :) Please keep the content coming! Qwik is amazing, i am just starting a project on it.

    • @coderaiders-yt
      @coderaiders-yt  2 роки тому +2

      Roberto! That is such motivating feedback, thank you! More Qwik content coming. I think you may like the useContext video that just dropped if you haven't worked with that yet. Also OAuth on Wed coming. Thanks again brother!

    • @RobertoOrtis
      @RobertoOrtis 2 роки тому +1

      @@coderaiders-yt awesome man!! I am sure you will get to 1k subscribers very soon. The way you go over every single detail is amazing, clear and very easy to understand. The time goes fast when watching your videos. I will check it out today.

  • @quilagameplay3161
    @quilagameplay3161 Рік тому

    thank you, I have been learning a lot of things with you

  • @brachypelma24
    @brachypelma24 Рік тому +2

    Also, re @16:00, I think useNavigate has changed since you posted this. From what I see in the current Qwik documentation, you would now write this as nav("/destination/path"). nav.path("/destination/path") gets flagged with a type error with the current version of Qwik/Qwik City.

  • @shanthu7803
    @shanthu7803 2 роки тому

    Great tutorial, Keep up the good work, Learned a lot from you. Thank you

  • @keepkoolpt
    @keepkoolpt 2 роки тому +1

    great content again......thanks

    • @coderaiders-yt
      @coderaiders-yt  2 роки тому +1

      Excellent, it sounds like this content is hopefully adding some value.

  • @jay5902
    @jay5902 2 роки тому

    Not sure if you're aware. @11:50 you tried to show a very short lived console log. You can set the console to preserve logs so it wouldn't vanish from view.

  • @JavierCarrion
    @JavierCarrion Рік тому

    I don't understand why would you useLocation? I got to assume you are using an older version of qwik. Notice that useLocation is a read-only API, you should never attempt to mutate the values of the loc object returned. Instead look into the useNavigate() API.

  • @adamtang5148
    @adamtang5148 Рік тому

    hmm... first time see login process with so many loc.