Loading video...

Video Failed to Load

Go Home

React Server Actions have helped me: ◆ Write less code ◆ Build better user experiences How can we create products that are resilient to slower internet connections and instantly provide feedback on user input? ↓

77,472 views • 2 years ago •via X (Twitter)

11 Comments

Surjith S M ✪'s profile picture
Surjith S M ✪2 years ago

What if the user closed the tab thinking they made the vote but in reality the request is still pending?

Lee Robinson's profile picture
Lee Robinson2 years ago

This seems to work: useEffect(() => { function handler(e) { if (!state.pending) return; e.preventDefault(); } window.addEventListener('beforeunload', handler); return () => { window.removeEventListener('beforeunload', handler); }; }, [state.pending]); Where `state.pending` comes from `useOptimistic` state.

Wonderchat's profile picture
Wonderchat2 years ago

Automate up to 70% of your customer support today. Save time and help your users find answers quickly. Try now at

⟁ndrew V's profile picture
⟁ndrew V2 years ago

curious about error handling, if the optimistic+server actions, end up conflicting with db data. I get it that the likelihood is .0001 low of the conflict in this example, but say in a scenario where 100 users are up and down voting... what could my risk of mutant mutations be?

Lee Robinson's profile picture
Lee Robinson2 years ago

Since I'm using Redis here, you could use transactions to make sure every upvote was counted when 100 folks modify the same item. There wouldn't be conflicts on inserts since each has a new UUID. Does that answer your question?

Jonny Summers-Muir's profile picture
Jonny Summers-Muir2 years ago

Love this @leeerob - I think this was where I tripped up a bit in the NextJS docs. There isn’t a huge amount of information on using forms in a client context (useFormState etc) vs a RSC context. It’s like the ServerActions guide and forms in nextjs guide need squashing together.

Lee Robinson's profile picture
Lee Robinson2 years ago

Good news, we recently updated these docs and combined them!

Jay's profile picture
Jay2 years ago

What are you using to generate those subtitles and the animation?

Faizan Arif's profile picture
Faizan Arif2 years ago

What about error handling? Let’s say some API failed in server actions, what is the optimistic and standard way to handle all those errors on client side?

Lee Robinson's profile picture
Lee Robinson2 years ago

I cover error handling a bit here with `useFormStatus`

hardcoded's profile picture
hardcoded2 years ago

This is great!

Related Videos