No video

Handling user roles is not that simple on Next.js using Firebase.

  Рет қаралды 9,748

Timegame

Timegame

Күн бұрын

Пікірлер: 39
@user-ub8ic8dj3m
@user-ub8ic8dj3m 5 ай бұрын
You have no idea how much I had to browse to find this. THANK YOU!
@darksideeditions4251
@darksideeditions4251 11 күн бұрын
Dude, wtf... very good! I from brazil and understood everything, even though my English is low level.
@evenngmusic8868
@evenngmusic8868 7 ай бұрын
I d like more of firebase+ next.js videos!!
@hiper2d
@hiper2d 2 ай бұрын
This is a super helpful video. Next.js and Firebase don't have a good tutorial to understand how to integrate them together. All the information is in doc but it is very hard to find it when doing this all for the first time. The idea of creating client.ts and server.ts files to distinguish client-side and server-side configs is great.
@teetanrobotics5363
@teetanrobotics5363 8 ай бұрын
Thank you so much, Miguel Vieira, for the incredibly clear and thorough explanation in this video! Your expertise made a complex topic like handling user roles in Next.js using Firebase seem much more manageable. Your effort in breaking down the concepts and providing practical examples is truly appreciated. It's evident that you put a lot of thought into making the content accessible for viewers like me. Kudos to your excellent teaching style and the valuable insights you shared. Looking forward to more tutorials from you!
@noormuhammad888
@noormuhammad888 4 ай бұрын
It took me a while to grasp the concepts. Very well job Miguel.
@emanuelc1025
@emanuelc1025 6 ай бұрын
THANKS.. I waste a lot of time with next auth + credentials.. and was a madness..
@Spike_104
@Spike_104 Ай бұрын
I can't thank you enough man 🙏🙏🙏
@MikeBritton
@MikeBritton 6 ай бұрын
Thanks for sharing this. It's helped me tremendously.
@hiraneranda4604
@hiraneranda4604 4 ай бұрын
awesome content. Thanks man ❤❤
@cwu202
@cwu202 4 ай бұрын
well explained and useful, thanks sir
@josephsam2145
@josephsam2145 Ай бұрын
I am stuck here 'NEXT_PUBLIC_APP_ENV' is not recognized as an internal or external command, operable program or batch file. when I change the scripts.dev in package.json to "dev": "NEXT_PUBLIC_APP_ENV='emulator' next dev",
@AmitDiggaoo7
@AmitDiggaoo7 5 ай бұрын
Thanks. Saw other videos but they were doing things on the client side. One question related to nextjs. Is it okay copy the firebase/functions folder inside nextjs. Like can it be bundled to the frontend and increase security risks or bundle size?
@emanuelc1025
@emanuelc1025 6 ай бұрын
Role are based on email string here! But, could be bettter to have a dinamic way to set if is pro or admin.
@davidlintin
@davidlintin 5 ай бұрын
You can implement the same for pro as admin using custom auth claims.
@animeshorts8404
@animeshorts8404 9 ай бұрын
Thanks. Can you do one with Prisma and mongoDB where the main admin can promote the users to moderator or admin
@edit_Pro_1
@edit_Pro_1 9 ай бұрын
Thinks man
@evenngmusic8868
@evenngmusic8868 7 ай бұрын
Jesus Thank you
@rajeshg9864
@rajeshg9864 17 күн бұрын
Great video - Takes care of the emulator and the Cloud Firestor The website is not working How can I get the code?
@timegamedevelop
@timegamedevelop 17 күн бұрын
Sorry about that. Should be working now
@Pierrot24382
@Pierrot24382 7 ай бұрын
Thank you Miguel, this is very helpful! Is this the safest way to handle auth with Firebase?
@eltrolado5764
@eltrolado5764 6 ай бұрын
safest and easier next-auth but the documentation is crap and they changed many things bewteen v3 and v4 and v4 is poorly documented
@gilbertonuzuruike1735
@gilbertonuzuruike1735 3 ай бұрын
Is it possible to use this approach to make calls to 'Callable' functions created in the Firebase functions code
@timegamedevelop
@timegamedevelop 3 ай бұрын
Yes
@artbrare
@artbrare 6 ай бұрын
Hi, How can I implement this but still be able to use firestore realtime updates in my client components
@davidlintin
@davidlintin 5 ай бұрын
Hi Miguel, great tutorial. I just have a question (newish to next.js) when you wrap the children with the AuthProvider (which is client component) in the Root Layout doesn’t that make the whole app client component? From what I understand any children of client component become client component?
@amosdaniel237
@amosdaniel237 4 ай бұрын
I was looking for this comment😢 I had the same thoughts.
@noormuhammad888
@noormuhammad888 4 ай бұрын
No it doesn’t . Only the component where you use it becomes a client component. The way provider works, it takes a children props in the root architecture and clients component on the other-hand are assigned not based on the architecture of your project rather on where it is being used.
@noormuhammad888
@noormuhammad888 4 ай бұрын
@@amosdaniel237 No it doesn’t . Only the component where you use it becomes a client component. The way provider works, it takes a children props in the root architecture and clients component on the other-hand are assigned not based on the architecture of your project rather on where it is being used.
@Wisdomica
@Wisdomica 4 ай бұрын
Hola Miguel! Gracias por tu contenido. Una pregunta, ¿Cómo puedo utilizar el simulador de Firebase si mis "Environmental Variables" no son reconocidas. Sigo obteniendo este error donde "NEXT_PUBLIC_APP_ENV='emulator'", (no es un comando externo o interno deconocido) ya intenté todo pero no funciona... agradecería enormemente tu ayuda
@mogo6798
@mogo6798 3 ай бұрын
try script this way "dev": "set NEXT_PUBLIC_APP_ENV=emulator&& next dev",
@kushailsingh8400
@kushailsingh8400 3 ай бұрын
HOW CAN WE DO THIS FOR SERVER ACTIONS?
@ManishShrestha-yz1ye
@ManishShrestha-yz1ye 4 ай бұрын
Can you please create a video on integrating Stripe to grant access to our pro features
@timegamedevelop
@timegamedevelop 3 ай бұрын
You can check an example on my netflix’s clone video
@gibber1sh-c6w
@gibber1sh-c6w 3 ай бұрын
@@timegamedevelop man, create a SaaS boilerplate with Next.js 14, Firestore/Firebase Auth, Stripe and some Email sending service and I'll buy it
@benjaoliva3383
@benjaoliva3383 5 ай бұрын
Isn't using the Auth provider as 'use clien' makes all the children pages client side also ?
@babatundetaiwo5184
@babatundetaiwo5184 5 ай бұрын
No it doesn’t . Only the component where you use it becomes a client component. The way provider works, it takes a children props in the root architecture and clients component on the other-hand are assigned not based on the architecture of your project rather on where it is being used.
@benjaoliva3383
@benjaoliva3383 5 ай бұрын
@@babatundetaiwo5184 yeah, tried my self doing a React provider and is as you mentioned. Thanks!
@srubio604
@srubio604 4 ай бұрын
what happens with the firebase rules? i need that.
The Story of Next.js
12:13
uidotdev
Рет қаралды 569 М.
WTF Do These Even Mean
13:44
Web Dev Simplified
Рет қаралды 84 М.
All 29 Next.js Mistakes Beginners Make
1:45:10
ByteGrad
Рет қаралды 116 М.
Angular Firebase Authentication - Implement Auth in Minutes
22:23
Monsterlessons Academy
Рет қаралды 11 М.
"The Life & Death of htmx" by Alexander Petros at Big Sky Dev Con 2024
23:01
Montana Programmers
Рет қаралды 55 М.
Turns out REST APIs weren't the answer (and that's OK!)
10:38
Dylan Beattie
Рет қаралды 152 М.
The Big Headless CMS Lie (James Mikrut)
18:14
Vercel
Рет қаралды 56 М.
How to HACK a smart contract
30:47
Timegame
Рет қаралды 11 М.