Comments (5)
we want that the initial loading state to be visible without depending on React's JS to patch things up
Just to be clear, you're looking to avoid the couple lines of JS in the streaming runtime (https://github.com/facebook/react/blob/9617d39eca1fbac58afe73a23580d781ea20211d/packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js)?
Curious – is there an actual reason this matters for you in practice or just that it feels unclean?
from react.
Yeah, we'd just rather not have a completely blank page when JS is disabled.
from react.
@sebmarkbage Thoughts on if it makes sense to have a way to start rendering the shell immediately but block when encountering the first Suspense boundary?
from react.
I don’t get. Why not just remove the Suspense boundary?
from react.
I think the React assumption is that the app shell doesn't depend on any network requests, or that you can wait for them before calling renderToPipeableStream.
We want to early flush style/link tags in our <head>
ASAP; we can do this immediately since it's baked into the build from the bundler. We also have a skeleton loading state that depends on some network queries.
So we can either:
- renderToPipeableStream immediately to early flush, and wrap the skeleton in Suspense, which means the page is blank without Javascript
- Await the network queries first to avoid the Suspense boundary, which gets the skeleton displayed without Javascript, but will delay early flush
from react.
Related Issues (20)
- Bug: When building by UMD, react bundle does not includes Scheduler HOT 4
- Doc's Demo that includes const theme = use(ThemeContext) is broken HOT 2
- Bug: Difference of state behaviour between function components and class components HOT 4
- Bug: After kills the app, the cleanup function in useEffect does not execute? HOT 2
- Please, please the development of React Class Components HOT 1
- Bug: Components rendered in React.Suspense can't have their size reliably measured
- Bug: One unnecessary re-rendering occurs when entering the same value in useState. HOT 1
- Bug: Unable to parse line in .flowconfig file
- Bug: Conflicting useTransition hook in reactjs HOT 1
- Support Palestinian like you did for Ukraine HOT 8
- Termux issue
- Bug: validateDOMNesting(...): <tr> cannot appear as a child of <table>. - but it seems to be not correct according to the specification HOT 6
- Bug: `onMouseLeave` events don't seem to behave correctly HOT 2
- Bug: `useOptimistic` reducer is called twice (not in strict-mode)
- [DevTools Bug]: Hide logs during second render in Strict Mode not working
- react router dom HOT 2
- How to build React Canary from source
- Bug: possible bug in createPortal - invalid hook calls in micro frontends setup
- Bug: how to contribute to open source
- Bug: react-server-dom-webpack gets confused by package.json#exports map and crashes
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.