#reactsuspense search results

Ok #ReactHooks & #ReactSuspense fans! Check it out!! I furiously reworked some examples I had laying around to use hooks, and got them recorded/edited/uploaded. 🔥 kcd.im/hooks-and-susp… 🔥 - Most hooks covered - Fundamental Suspense - react-cache - Lots of fire 🔥🔥🔥🔥

kentcdodds's tweet image. Ok #ReactHooks & #ReactSuspense fans! Check it out!!

I furiously reworked some examples I had laying around to use hooks, and got them recorded/edited/uploaded.

🔥 kcd.im/hooks-and-susp… 🔥

- Most hooks covered
- Fundamental Suspense
- react-cache
- Lots of fire 🔥🔥🔥🔥

📌 Async UI Simplified React 19's *Suspense for Data Fetching* lets components truly wait for data, simplifying complex loading states and eliminating race conditions. What patterns are you ditching? #ReactSuspense react.dev


What if we play a *suspense* sound when react's `useSuspense` hook is showing the suspense? 😅 How about X-Files intro sound as the suspense sound? #react #reactjs #reactsuspense #thexfiles


My new project with: - react-router v6-alpha #ReactSuspense - react-suspense-fetch #RenderAsYouFetch - proxy-based tracking #ReactTracked See: "Pending...", "Loading..." and then "Fetching content..."


In @dustint314 's talk, you will learn how #ReactSuspense delays the rendering of a component if that component is fetching data, or even loading images! You will also get a glimpse of the under-the-hood magic of react-cache - the engine that allows Suspense to do this #reactweek

reactweek's tweet image. In @dustint314 's talk, you will learn how #ReactSuspense delays the rendering of a component if that component is fetching data, or even loading images! You will also get a glimpse of the under-the-hood magic of react-cache - the engine that allows Suspense to do this #reactweek

Check this out! A diagram to show various data fetching approaches in @ReactJS. #RenderAsYouFetch is a new pattern with #ReactSuspense and #React #ConcurrentMode. #ReactJS official doc: reactjs.org/docs/concurren…

dai_shi's tweet image. Check this out!

A diagram to show various data fetching approaches in @ReactJS. #RenderAsYouFetch is a new pattern with #ReactSuspense and #React #ConcurrentMode.

#ReactJS official doc: reactjs.org/docs/concurren…

Usa useDeferredValue con Suspense para hidratar datos lentamente sin bloquear la renderización inicial de la UI. Reduce la percepción de lentitud en apps React complejas. 🚀 #ReactSuspense #Performance #WebDev


I think I should more promote my new #ReactJS lib "use-atom." The major differences from @RecoilJS are (1) no string key (2) #TypeScript oriented (3) #ReactSuspense only. github.com/dai-shi/use-at… #React #JavaScript #ReactHooks #ConcurrentMode

dai_shi's tweet image. I think I should more promote my new #ReactJS lib "use-atom."

The major differences from @RecoilJS are (1) no string key (2) #TypeScript oriented (3) #ReactSuspense only.

github.com/dai-shi/use-at…

#React #JavaScript #ReactHooks #ConcurrentMode

Hey friends 👋 I need some #ReactSuspense help with a little demo app. Recorded a short video to show what's going on. Here's the PR. Comments, help, and even PRs appreciated :) github.com/kentcdodds/rea…


#reactsuspense is 🔥 🔥🔥, spent all my downtime at the airport this morning, removing isLoading and replaced with the new suspense component and the new lazy API. #reactconf2018


🚀 Data Fetching Reimagined: *React Suspense* It elegantly streamlines complex asynchronous UI, eliminating waterfall requests and manual loading states. #ReactSuspense #FrontendDev react.dev


Mais um vídeo da série de Masterclass 13.4 desta vez sobre React Suspense e Loading ui #Nextjs 13.4 #Masterclass #ReactSuspense #LoadingUI youtu.be/K2Eyf7YOx-o

devdeck101's tweet image. Mais um vídeo da série de Masterclass   13.4 desta vez sobre React Suspense e Loading ui #Nextjs 13.4 #Masterclass #ReactSuspense #LoadingUI
youtu.be/K2Eyf7YOx-o

¡Suspense en React, a tope! 🚀 Evita el flickering al renderizar datos asíncronos. Usa startTransition para re-renderizar la UI *después* de que los datos lleguen. Mejora la UX y mantiene el estado reactivo sin bloquear el hilo principal. #ReactSuspense #ReactJS...


¡Optimiza React Suspense! 🧵 Evita re-renders innecesarios en componentes fallback durante las esperas. Usa useMemo en el componente que renderiza el fallback para memorizar su resultado, solo actualizándose si sus dependencias cambian. #ReactSuspense #Performance...


Aquí tienes un tweet sobre React Suspense, pensando en la especificidad y utilidad que buscas: **Tweet 1 (Énfasis en Optimización):** > 💡 #ReactSuspense: ¿Rendimiento lento con useQuery o fetches iniciales? Usa startTransition para actualizar el estado que...


🤔 ¿Cómo optimizar el renderizado de componentes React con Suspense en escenarios de datos fallidos? ¿Usar ErrorBoundary y un fallback específico para cada fetch o una estrategia global? ¿Impacta significativamente el tiempo percibido? #ReactSuspense...


📌 Async UI Simplified React 19's *Suspense for Data Fetching* lets components truly wait for data, simplifying complex loading states and eliminating race conditions. What patterns are you ditching? #ReactSuspense react.dev


Usa useDeferredValue con Suspense para hidratar datos lentamente sin bloquear la renderización inicial de la UI. Reduce la percepción de lentitud en apps React complejas. 🚀 #ReactSuspense #Performance #WebDev


Aquí tienes un tweet sobre React Suspense, pensando en la especificidad y utilidad que buscas: **Tweet 1 (Énfasis en Optimización):** > 💡 #ReactSuspense: ¿Rendimiento lento con useQuery o fetches iniciales? Usa startTransition para actualizar el estado que...


🚀 Data Fetching Reimagined: *React Suspense* It elegantly streamlines complex asynchronous UI, eliminating waterfall requests and manual loading states. #ReactSuspense #FrontendDev react.dev


¡Suspense en React, a tope! 🚀 Evita el flickering al renderizar datos asíncronos. Usa startTransition para re-renderizar la UI *después* de que los datos lleguen. Mejora la UX y mantiene el estado reactivo sin bloquear el hilo principal. #ReactSuspense #ReactJS...


🤔 ¿Cómo optimizar el renderizado de componentes React con Suspense en escenarios de datos fallidos? ¿Usar ErrorBoundary y un fallback específico para cada fetch o una estrategia global? ¿Impacta significativamente el tiempo percibido? #ReactSuspense...


¿Cómo optimizar el performance de React Suspense con múltiples recursos (datos, componentes) simultáneos? ¿Debemos priorizar la fetching en algún orden estratégico para mejorar la UX, o es mejor un fetch paralelo ciego? #ReactSuspense #ReactJS #Performance


¿Cómo optimizar la recuperación de datos en componentes React con Suspense para evitar flashing content cuando múltiples recursos (imágenes, datos) se renderizan condicionalmente? ¿Estrategias específicas más allá de startTransition? #ReactSuspense...


¡Optimiza React Suspense! 🧵 Evita re-renders innecesarios en componentes fallback durante las esperas. Usa useMemo en el componente que renderiza el fallback para memorizar su resultado, solo actualizándose si sus dependencias cambian. #ReactSuspense #Performance...


🚀 React's Loading Revolution: *Suspense for Data Fetching* simplifies managing complex loading states and eliminates data waterfalls, making your UI feel instantly faster. #ReactSuspense #DataFetching react.dev


¡React Suspense en producción es posible! 💡 Al usar startTransition, prioriza renderizados non-critical (UI updates) dentro de tus boundarys. Evita bloqueos y mejora la UX al mostrar contenido accesible rápido. #ReactSuspense #Performance #WebDev


Algunos de los temas que han salido a la palestra incluyen: - Cómo encajan #GraphQL, #Apollo y #ReactSuspense en un proyecto frontend que sigue una arquitectura limpia. - Un profundo análisis de lean #software #development. - O resolver un #reto de #programación todos juntos.

540deg's tweet image. Algunos de los temas que han salido a la palestra incluyen: 

- Cómo encajan #GraphQL, #Apollo y #ReactSuspense en un proyecto frontend que sigue una arquitectura limpia.
- Un profundo análisis de lean #software #development.
- O resolver un #reto de #programación todos juntos.
540deg's tweet image. Algunos de los temas que han salido a la palestra incluyen: 

- Cómo encajan #GraphQL, #Apollo y #ReactSuspense en un proyecto frontend que sigue una arquitectura limpia.
- Un profundo análisis de lean #software #development.
- O resolver un #reto de #programación todos juntos.

Great insights from @c_isambert on #ReactSuspense! Understanding the magic behind Suspense and its inner workings is crucial for developers handling asynchronous operations effectively. #React #WebDevelopment gitnation.com/contents/react…


🌟 Suspense for Data Fetching: Simplifying data fetching has never been easier. Suspense lets you handle asynchronous operations seamlessly, providing a more intuitive way to manage loading states. #ReactSuspense


🔄 Elevate your app with React Suspense & Concurrent Mode! How do you handle async rendering for smoother user experiences? #ReactSuspense #ConcurrentMode #React #technology #SoftwareEngineering #Connections #learnsomethingnew


Mais um vídeo da série de Masterclass 13.4 desta vez sobre React Suspense e Loading ui #Nextjs 13.4 #Masterclass #ReactSuspense #LoadingUI youtu.be/K2Eyf7YOx-o

devdeck101's tweet image. Mais um vídeo da série de Masterclass   13.4 desta vez sobre React Suspense e Loading ui #Nextjs 13.4 #Masterclass #ReactSuspense #LoadingUI
youtu.be/K2Eyf7YOx-o

Case #4: API throttling w/ deferred rendering UI #React #ReactSuspense


Ok #ReactHooks & #ReactSuspense fans! Check it out!! I furiously reworked some examples I had laying around to use hooks, and got them recorded/edited/uploaded. 🔥 kcd.im/hooks-and-susp… 🔥 - Most hooks covered - Fundamental Suspense - react-cache - Lots of fire 🔥🔥🔥🔥

kentcdodds's tweet image. Ok #ReactHooks & #ReactSuspense fans! Check it out!!

I furiously reworked some examples I had laying around to use hooks, and got them recorded/edited/uploaded.

🔥 kcd.im/hooks-and-susp… 🔥

- Most hooks covered
- Fundamental Suspense
- react-cache
- Lots of fire 🔥🔥🔥🔥

Check this out! A diagram to show various data fetching approaches in @ReactJS. #RenderAsYouFetch is a new pattern with #ReactSuspense and #React #ConcurrentMode. #ReactJS official doc: reactjs.org/docs/concurren…

dai_shi's tweet image. Check this out!

A diagram to show various data fetching approaches in @ReactJS. #RenderAsYouFetch is a new pattern with #ReactSuspense and #React #ConcurrentMode.

#ReactJS official doc: reactjs.org/docs/concurren…

Check out various data fetching patterns with or without #ReactSuspense. - Fetch-on-Render (useEffect) - Fetch-Then-Render - Fetch-on-Render (Suspense) - Render-as-You-Fetch (Suspense) #ReactJS #React #JavaScript carbon.now.sh/?bg=rgba(171%2…

dai_shi's tweet image. Check out various data fetching patterns with or without #ReactSuspense.
- Fetch-on-Render (useEffect)
- Fetch-Then-Render
- Fetch-on-Render (Suspense)
- Render-as-You-Fetch (Suspense)

#ReactJS #React #JavaScript

carbon.now.sh/?bg=rgba(171%2…
dai_shi's tweet image. Check out various data fetching patterns with or without #ReactSuspense.
- Fetch-on-Render (useEffect)
- Fetch-Then-Render
- Fetch-on-Render (Suspense)
- Render-as-You-Fetch (Suspense)

#ReactJS #React #JavaScript

carbon.now.sh/?bg=rgba(171%2…
dai_shi's tweet image. Check out various data fetching patterns with or without #ReactSuspense.
- Fetch-on-Render (useEffect)
- Fetch-Then-Render
- Fetch-on-Render (Suspense)
- Render-as-You-Fetch (Suspense)

#ReactJS #React #JavaScript

carbon.now.sh/?bg=rgba(171%2…
dai_shi's tweet image. Check out various data fetching patterns with or without #ReactSuspense.
- Fetch-on-Render (useEffect)
- Fetch-Then-Render
- Fetch-on-Render (Suspense)
- Render-as-You-Fetch (Suspense)

#ReactJS #React #JavaScript

carbon.now.sh/?bg=rgba(171%2…

Mental model with #ReactSuspense #RenderAsYouFetch #1: Don't useEffect. Define fetch function and component at the same level. Create remote data and react element at the same level. Blog post: blog.axlight.com/posts/diving-i… #ReactJS #React #JavaScript

dai_shi's tweet image. Mental model with #ReactSuspense #RenderAsYouFetch #1:

Don't useEffect.

Define fetch function and component at the same level.
Create remote data and react element at the same level.

Blog post: blog.axlight.com/posts/diving-i…

#ReactJS #React #JavaScript

I think I should more promote my new #ReactJS lib "use-atom." The major differences from @RecoilJS are (1) no string key (2) #TypeScript oriented (3) #ReactSuspense only. github.com/dai-shi/use-at… #React #JavaScript #ReactHooks #ConcurrentMode

dai_shi's tweet image. I think I should more promote my new #ReactJS lib "use-atom."

The major differences from @RecoilJS are (1) no string key (2) #TypeScript oriented (3) #ReactSuspense only.

github.com/dai-shi/use-at…

#React #JavaScript #ReactHooks #ConcurrentMode

Case #4: API throttling w/ deferred rendering Seems like that perceived performance on inputs that trigger throttled requests in the background could also be improved in some cases using async rendering. #React #ReactSuspense

mehieltwit's tweet image. Case #4: API throttling w/ deferred rendering

Seems like that perceived performance on inputs that trigger throttled 
requests in the background could also be improved in some cases using 
async rendering.

#React #ReactSuspense
mehieltwit's tweet image. Case #4: API throttling w/ deferred rendering

Seems like that perceived performance on inputs that trigger throttled 
requests in the background could also be improved in some cases using 
async rendering.

#React #ReactSuspense

In @dustint314 's talk, you will learn how #ReactSuspense delays the rendering of a component if that component is fetching data, or even loading images! You will also get a glimpse of the under-the-hood magic of react-cache - the engine that allows Suspense to do this #reactweek

reactweek's tweet image. In @dustint314 's talk, you will learn how #ReactSuspense delays the rendering of a component if that component is fetching data, or even loading images! You will also get a glimpse of the under-the-hood magic of react-cache - the engine that allows Suspense to do this #reactweek

What if we play a *suspense* sound when react's `useSuspense` hook is showing the suspense? 😅 How about X-Files intro sound as the suspense sound? #react #reactjs #reactsuspense #thexfiles


Case #3: State Hydration Suspending in Component's constructor (part of render phase) is an easy and awesome way to hydrate state using @reactjs. Pretty useful for reading auth user info on load before continuing rendering a permissions-aware tree. #React #ReactSuspense

mehieltwit's tweet image. Case #3: State Hydration

Suspending in Component's constructor 
(part of render phase) is an easy and awesome way to 
hydrate state using @reactjs. 

Pretty useful for reading auth user info on load before continuing 
rendering a permissions-aware tree.

#React #ReactSuspense

Mental model with #ReactSuspense #RenderAsYouFetch #3: Treat remote data just like local data. Your business logic doesn't need to know if data is already fetched or not. Technically, proxies or getters help. Blog post: blog.axlight.com/posts/diving-i… #ReactJS #React #JavaScript

dai_shi's tweet image. Mental model with #ReactSuspense #RenderAsYouFetch #3:

Treat remote data just like local data.

Your business logic doesn't need to know if data is already fetched or not. Technically, proxies or getters help.

Blog post: blog.axlight.com/posts/diving-i…

#ReactJS #React #JavaScript

react-hooks-fetch with #ReactSuspense: Experiment 6 github.com/dai-shi/react-… Today, I'm just renaming APIs. #TypeScript example: codesandbox.io/s/github/dai-s… How do you like this one? #ReactJS #ReactJS #JavaScript #ReactHooks

dai_shi's tweet image. react-hooks-fetch with #ReactSuspense: Experiment 6 github.com/dai-shi/react-…

Today, I'm just renaming APIs.
#TypeScript example: codesandbox.io/s/github/dai-s…

How do you like this one?

#ReactJS #ReactJS #JavaScript #ReactHooks

Mental model with #ReactSuspense #RenderAsYouFetch #2: Feed fetched data into a component with props. Fetch data outside a component and pass it. If you knew the fetch parameters in advance, it would be possible. Blog post: blog.axlight.com/posts/diving-i… #ReactJS #React #JavaScript

dai_shi's tweet image. Mental model with #ReactSuspense #RenderAsYouFetch #2:

Feed fetched data into a component with props.

Fetch data outside a component and pass it.
If you knew the fetch parameters in advance, it would be possible.

Blog post: blog.axlight.com/posts/diving-i…

#ReactJS #React #JavaScript

Mais um vídeo da série de Masterclass 13.4 desta vez sobre React Suspense e Loading ui #Nextjs 13.4 #Masterclass #ReactSuspense #LoadingUI youtu.be/K2Eyf7YOx-o

devdeck101's tweet image. Mais um vídeo da série de Masterclass   13.4 desta vez sobre React Suspense e Loading ui #Nextjs 13.4 #Masterclass #ReactSuspense #LoadingUI
youtu.be/K2Eyf7YOx-o

Sorry to update too often: Experiment 5 github.com/dai-shi/react-… This one is more explicit. The minimal example: codesandbox.io/s/github/dai-s… I will create more later. This is a #ReactHooks library with #ReactSuspense. No useEffect for data fetching. #reactjs #javascript #typescript

dai_shi's tweet image. Sorry to update too often: Experiment 5 github.com/dai-shi/react-…

This one is more explicit.
The minimal example: codesandbox.io/s/github/dai-s…
I will create more later.

This is a #ReactHooks library with #ReactSuspense. No useEffect for data fetching. #reactjs #javascript #typescript

Case #5: Assets loading We can load most kinds of assets in a suspense-enabled way. That enables control of the waiting time with @reactjs Placeholders. See, github.com/palmerhq/react… #React #ReactSuspense

mehieltwit's tweet image. Case #5: Assets loading

We can load most kinds of assets in a suspense-enabled way.
That enables control of the waiting time with @reactjs Placeholders.

See, github.com/palmerhq/react…

#React #ReactSuspense

Algunos de los temas que han salido a la palestra incluyen: - Cómo encajan #GraphQL, #Apollo y #ReactSuspense en un proyecto frontend que sigue una arquitectura limpia. - Un profundo análisis de lean #software #development. - O resolver un #reto de #programación todos juntos.

540deg's tweet image. Algunos de los temas que han salido a la palestra incluyen: 

- Cómo encajan #GraphQL, #Apollo y #ReactSuspense en un proyecto frontend que sigue una arquitectura limpia.
- Un profundo análisis de lean #software #development.
- O resolver un #reto de #programación todos juntos.
540deg's tweet image. Algunos de los temas que han salido a la palestra incluyen: 

- Cómo encajan #GraphQL, #Apollo y #ReactSuspense en un proyecto frontend que sigue una arquitectura limpia.
- Un profundo análisis de lean #software #development.
- O resolver un #reto de #programación todos juntos.

My #ReactSuspense experiment 7. github.com/dai-shi/react-… It provides a primitive API to fetch data with Suspense. This time, we name "createFetcher" and "useSuspendable". Please check out the example and the type definition. #ReactJS #React #JavaScript #TypeScript #ReactHooks

dai_shi's tweet image. My #ReactSuspense experiment 7. github.com/dai-shi/react-…

It provides a primitive API to fetch data with Suspense. This time, we name "createFetcher" and "useSuspendable". Please check out the example and the type definition.

#ReactJS #React #JavaScript #TypeScript #ReactHooks

Loading...

Something went wrong.


Something went wrong.


United States Trends