Understand the Supabase SSR Package easily

Поділитися
Вставка
  • Опубліковано 27 лис 2024

КОМЕНТАРІ • 88

  • @ArnasStasiulis
    @ArnasStasiulis 9 місяців тому +35

    when the video starts with "It's not you. The problem isn't you.", you know you're in the right place

    • @activenode
      @activenode  9 місяців тому +1

      That was the most important part to highlight

  • @flavioneto1081
    @flavioneto1081 11 місяців тому +11

    there was no other tutorial so clear and to the point about the supabase/ssr lib (definitely including the own docs lol), thanks a lot

  • @taviiiz
    @taviiiz 9 місяців тому +4

    Finally a super clear and helpful tutorial about this! It's better than the docs.
    Thanks for sharing 🙌

  • @karankhaira8497
    @karankhaira8497 6 місяців тому +1

    Thanks, most tutorials are outdated, you filled in the gap between the transition form the auth lib to ssr.

  • @francois-pierrethibault2651
    @francois-pierrethibault2651 11 місяців тому +2

    Thanks for this one, was confused with the doc and was not that happy to migrate again :) Now that's easy :)

  • @ThomasWilke86
    @ThomasWilke86 10 місяців тому +1

    Thanks a lot. I am already using the ssr package but didn‘t know if i am right with my implementation. Now it‘s much more clear for me.
    Thanks a lot! :-)

  • @kurwacherry
    @kurwacherry 6 місяців тому

    cant express how helpful this was, thank you very much!

  • @MorganHvidt
    @MorganHvidt 11 місяців тому +1

    Thank you so much for this! It was needed since the auth has changed so many times

    • @kakoozavian
      @kakoozavian 10 місяців тому +1

      Still struggling with dynamic routing. Returning null on my side

  • @SmartSleeper
    @SmartSleeper 11 місяців тому +1

    You're a lifesaver! I am just starting out with Supabase and Next and you were the only one who could make me understand. Does authentication happen the way it was done before?

  • @xiiEJRAM
    @xiiEJRAM 11 місяців тому +1

    Great explanation your tutorials are really EPIC , I love your style in explain concepts , keep going please

  • @louaiboumedienne8276
    @louaiboumedienne8276 11 місяців тому

    perfect one, straight to the point 🎯

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

    Perfect timing and well explained!

  • @usman6
    @usman6 11 місяців тому

    thanks, this helped a lot. I would love a video on how to use these different functions in the app like getting user session etc

    • @activenode
      @activenode  11 місяців тому +3

      So more like a "how to deal with authentication" tutorial?

    • @usman6
      @usman6 11 місяців тому

      @@activenode yes!

  • @m_t_jawaad
    @m_t_jawaad 9 місяців тому

    Immediately subscribed

  • @JuicyBenji
    @JuicyBenji 8 місяців тому

    Great video, keep it up. You just earned yourself a sub :D

    • @activenode
      @activenode  6 місяців тому

      Lovely! Have a great week!

  • @tech_interviewer
    @tech_interviewer Рік тому +1

    This is great! Thank you! Quick question: When do we want to use the server client / not the component one? For instance, assume you have a fetchUserData function that takes in an id. While loading a server side page, we should use server component client. When exactly the server client comes in picture? Only the server actions and route handlers?

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

      With NextJS 14, everything runs on the server by default. So only if you explicitly use 'use client'; it will run on the client. So, only then you want to use the createFrontendSupabaseClient.
      Yes, onlly in Route Handlers and Server Actions you would use the non-serverComponent version - the createSupabaseAppServerClient();
      On the server component you'd use createSupabaseAppServerClient(true); or as we simplified createSupabaseServerComponentClient();
      Does that help?

    • @HarisHussain
      @HarisHussain 4 місяці тому

      @@activenodeSo for realtime Supabase updates where one subscribes to a channel in useEffect hook on a client page/component, I would use createBrowserClient? It seems like I must be missing something since the auth user + channel returns absolutely nothing [] but as soon as I switch to server it works fine (but I need client for realtime) - am I missing some caching or do I just use createBrowserClient?

    • @activenode
      @activenode  4 місяці тому

      @@HarisHussain Yes, for realtime you'd be using createBrowserClient when you want to listen to Realtime updates in your UI (you can theoretically work with RT also on the server but it doesn't sound like that's what you want) .
      Hope that helps!

  • @lawrencegood1675
    @lawrencegood1675 9 місяців тому +1

    "If you're not using middleware with app router, then you're dumb" I died haha

    • @activenode
      @activenode  9 місяців тому

      OK that is evil subbing there :D

  • @vlad_pantyukhin
    @vlad_pantyukhin 11 місяців тому

    Great video! What theme are you using and font in VS Code? Happy Holidays! 🎄

    • @activenode
      @activenode  11 місяців тому

      Hey there! That is: Beautiful Dracula Normal. Same to you 🎊

  • @rishabsharma5307
    @rishabsharma5307 7 місяців тому

    waay too good video

  • @guiyumin
    @guiyumin 9 місяців тому

    nicely done!thanks

  • @AnindoSarker
    @AnindoSarker 8 місяців тому

    Great explanation. Supabase documentation for Nextjs keeps getting confusing

  • @dziaddy
    @dziaddy Місяць тому

    Should I use supabase/ssr just for Auth related stuff? Clients created by that use cookies so it opts out of caching for every request.
    What If I want to fetch todos and cache them? Should I use normal "supabase-js" ?

  • @fulltimefrontend
    @fulltimefrontend 7 місяців тому

    Could not understand how to access serverClient in getServerSideProps, can you share an example ?

  • @junsgk
    @junsgk 11 місяців тому

  • @mr_clean575
    @mr_clean575 11 місяців тому +1

    Which should I use for SvelteKit?

    • @activenode
      @activenode  11 місяців тому +1

      In theory, the same principles apply: For frontend: createBrowserClient, for backend you need to pass the way Svelte handles cookies. You might wanna compare the code here: supabase.com/docs/guides/auth/server-side/creating-a-client?environment=hooks&framework=sveltekit

    • @mr_clean575
      @mr_clean575 10 місяців тому

      @@activenodeThanks!

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

    great,thx.

  • @pcv-free-as-a-bird
    @pcv-free-as-a-bird 5 місяців тому

    Hi there!! Thank you for the video it qas really nice.. I’ve setup supabase/srr on my Remix js app. The createBroswerClient and createServerClient works!!
    But I still not understand the concept between when to use the Broswer one or the Server one.. I know that when it’s for front-end is the Broswer client but I think I would need a real life example to understand both. Anyone can help me?

  • @akosbalint3485
    @akosbalint3485 9 місяців тому

    Isn`t it a security problem to store the supabase keys in the NEXT_PUBLIC env variables? As far as I know those can be read by client side js scripts.

    • @activenode
      @activenode  9 місяців тому +1

      Yes if it's about the Service Key, definitely! I am using the anon key in my .env.local being NEXT_PUBLIC_SUPABASE_KEY. If you use the admin client, you don't need any of that special stuff I'm showing. In that case make sure it's not prefixed with NEXT_PUBLIC_ - as you said it would be a massive security hole - and just use createClient to create it.

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

    👍

  • @joshuablew
    @joshuablew 7 місяців тому

    Hey, thanks for this amazing tutorial! I keep getting this error when building my project after following this setup:
    Static generation failed due to dynamic usage on /orders, reason: cookies
    I'm exclusively using the app router. My /orders page is a SSR page and calls a function "fetchOrders" before returning its components. This fetchOrders function lives in a server actions file with the "use server" file heading. It queries a pg database using Drizzle, and uses the "createSupabaseServerClient" function to fetch the user id for the database query.
    I'm unsure how to reliably get the user id of the logged in user for my database queries with this error throwing.
    Has anyone ran into something like this?

    • @activenode
      @activenode  7 місяців тому +1

      Can you try one thing to troubleshoot? This video shows calling `cookies()` in each function. However, I'm about to make an updated video where I'll be using `const cookieStore = cookies()` in the top of the utils function and then only `cookieStore.get`, `cookieStore.set` etc. So calling `cookies()` immediately will mark the file as "using cookies". Can you try if that helps?

  • @Skmanager-r8b
    @Skmanager-r8b 10 місяців тому

    How are you auto importing the imports. Is there browser extension for this?

    • @activenode
      @activenode  10 місяців тому

      Steg+space in vscode

  • @_bestbeast
    @_bestbeast 7 місяців тому

    I am getting an error that cookies can set in server action or route handler only

    • @activenode
      @activenode  7 місяців тому

      When exactly do you get it? What are you doing?

  • @100p
    @100p Рік тому

    you are beautiful. thank you.

  • @dragos.cojocaru
    @dragos.cojocaru 11 місяців тому

    Can you make a video on self-hosting a Next.js app using SST, OpenNext, PM2 and MinIO?

    • @activenode
      @activenode  11 місяців тому

      That's actually a cool idea, I'll write it down in the ideation list.

  • @imbjarne795
    @imbjarne795 11 місяців тому

    I‘m still a bit confused why shouldn’t I use the nextjs auth helper library

    • @activenode
      @activenode  11 місяців тому +1

      Good question. Well, you can. But the problem is: They won't maintain it anymore in the future. But feature-wise, it's the same thing. Knowing that all of the NextJS Auth Helpers literally do the same thing I found it very confusing to have a different name for each context so once I understood the new package, I found it more convenient.
      Maintenance-wise I'd say: The sooner you switch, the better. But yes, you probably can stay on the old one for quite some time without any issues. Just saying the dependencies could get old etc

    • @imbjarne795
      @imbjarne795 11 місяців тому +1

      Thanks for the reply. I didn't even see that it's deprecated. I also found it a bit confusing having like 6 ways to create a supabase client. I will refactor it asap.

    • @activenode
      @activenode  11 місяців тому

      @@imbjarne795 awesome

  • @ben-gibb
    @ben-gibb 10 місяців тому

    Do you have a repo when I can get the code?

    • @activenode
      @activenode  10 місяців тому

      Yes :) github.com/activenode-edu/supabase-plants-migration-demo

  • @francois-pierrethibault2651
    @francois-pierrethibault2651 11 місяців тому

    a link to a github repo would be nice ;)

    • @activenode
      @activenode  10 місяців тому

      github.com/activenode-edu/supabase-plants-migration-demo

  • @louaiboumedienne8276
    @louaiboumedienne8276 11 місяців тому

    hope u did put the source code

    • @activenode
      @activenode  10 місяців тому

      github.com/activenode-edu/supabase-plants-migration-demo

  • @auchan42
    @auchan42 6 місяців тому

    supabase docs sucked, code samples sucked. thank you so much

  • @soapy4744
    @soapy4744 8 місяців тому +2

    Justin Trudeau????

    • @BK-fk4gf
      @BK-fk4gf 7 місяців тому

      His lost brother

  • @hakuna_matata_hakuna
    @hakuna_matata_hakuna 11 місяців тому

    All of that extra crap was because of nextjs and their hatred for request response model making it hard , other vite frameworks have the request and response accessible in their SSR side nextjs doesn't in server components

    • @Shashanksoni98
      @Shashanksoni98 11 місяців тому

      Hi
      Can you please explain what you just mentioned, I'm learning Next js through UA-cam and didn't come across something that you said maybe I did but can't remember.

    • @hakuna_matata_hakuna
      @hakuna_matata_hakuna 11 місяців тому

      @@Shashanksoni98 the way you get headers and cookies in nextjs varies significantly from how other SSR frameworks do it causing a lot of pain to anyone building integrations that work on the server and client in nextjs

    • @activenode
      @activenode  11 місяців тому +1

      Hey, thanks for that info. In theory NextJS is on the right track by already using the standardized Response and Request instances with a lil bit of extensions (developer.mozilla.org/en-US/docs/Web/API/Response). But across frameworks, not just NextJS, there is no common standardized way yet to access those. It would be easier if they'd all agree on having req/res globally available in such contexts, then one client would fit it all. Not a NextJS specific problem though :)

    • @hakuna_matata_hakuna
      @hakuna_matata_hakuna 11 місяців тому

      @@activenode there's winter CG which is what other frameworks are relying on as a standard , Guillermo recently talked shit about it , the biggest thing I find odd is how it's not possible to access the request context in server component page , you can only access headers and cookies with special functions that rely on async context , you don't get the URL which is funny given how hard they're pushing relying on the URL for state . They're confused and in turn confusing everyone at this point they've even refused to take feedback and add the request object in server components + router events

    • @activenode
      @activenode  11 місяців тому +1

      @@hakuna_matata_hakuna Sorry about the features you are missing, I'm sure collective community feedback will sooner or later lead the path. Thanks for hinting WinterCG, didn't know that one :)

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

    Hi man! Thanks a lot for this tutorial!
    Which client from the options that we created should we be using for Stripe webhook? eg for the NextJS 14 path: app/api/webhooks/route.ts

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

      Hey! Awesome question:
      A stripe webhook firing a route handler, doesn’t need RLS usually as it isn’t a person and hence also cookies don’t matter. Usually, with a webhook, you want an admin client. So you need none of the clients really that I show in this video but you would create some like:
      import {createClient} from ‘@supabase/supbase-js’;
      function getAdminClient() {
      return createClient(URL, SERVICE_KEY);
      }

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

      @@activenode Thanks a lot! Appreciate your reply :)

  • @borisbarzotto5785
    @borisbarzotto5785 11 місяців тому

    Thanks for the explanation, excellent. I wanted to ask you in the last part to make client of the middleware, what should I do with the constant "supabase" that we create there, since we return "res" right away, wouldn't a line like: await supabase.auth.getSession() be missing there? Thanks

    • @activenode
      @activenode  11 місяців тому +1

      Ha, good catch. Yeah, it wasn't a mistake, even though it's common to have that, yes. There are certainly use-cases with and without auth that's why I didn't add it there and left it open for anyone to decide what to do with it, you can even just NOT use it in the middleware. But yes, if you do use auth you should be using the line you posted await supabase.auth.getSession() to ensure token freshness :) Cheers!

  • @austingebauer4532
    @austingebauer4532 10 місяців тому +1

    Do you happen to have an example of the password reset flow using @supabase/ssr? It would be extremely helpful. Thanks for the content!

    • @ben-gibb
      @ben-gibb 10 місяців тому

      I second this

    • @activenode
      @activenode  10 місяців тому

      So, the password reset flow, is nothing but a magic link with type "recovery". That's the short answer.
      The fully server-based variant works differently than the one with frontend. I'll cover this in my upcoming book (still takes some time) but if you don't NEED the fully server I'd recommend you go with the frontend variant.
      That goes like this:
      await supabase.auth.resetPasswordForEmail('hello@example.xyz, {
      redirectTo: 'example.com/account/update-password',
      })
      This will send an e-mail to hello[at]example.xyz containing something like auth-service-url/?token=...&redirectTo=example.com/account/update-password which, when clicked, will verify the token and immediately redirect to the redirectTo URL but add a small code to it (you don't see that because the process is too fast but if you make your network connection really slow, you can watch it). And on THAT page there must be a frontend client (browser client) instantiated. The pure existence of that authenticates the user - so, obviously it must be a URL that is reachable without a valid login. Then, you want to redirect/refresh the page when the authentication is done. And for that you don't have to do much but listen for the event in the frontend client:
      supabase.onAuthStateChange(event => {
      if (event==='SIGNED_IN') refreshOrRedirectPage();
      })
      Hope that helps.

    • @activenode
      @activenode  10 місяців тому

      see my comment for @austingebauer4532

  • @ivan.jeremic
    @ivan.jeremic Місяць тому

    love next but who came up with a cookie api like that one 'cookie().get'? 🤣