Questions tagged [react-fiber]

React Fiber is a reimplementation of React's core rendering algorithm that was introduced with React v16.0. It introduced scheduling and incremental rendering among many other features.

Resources

64 questions
0
votes
1 answer

Can I block prerender children on React Fiber?

I wrote component on React Fiber. This component receive 1 cond props, and that is true, render children. "use strict"; import * as React from "react"; import * as ReactDOM from "react-dom"; interface IfProps { cond: boolean; } export class If…
kmdsbng
  • 41
  • 2
0
votes
2 answers

componentDidCatch is not getting called when there is an error in promise

As per the new react 16 release doc it says "React 16 prints all errors that occurred during rendering to the console in development, even if the application accidentally swallows them." I have a Parent component and a Child component. I have…
John
  • 8,846
  • 8
  • 50
  • 85
0
votes
0 answers

Meteor Session is one step behind

I am trying to check if the username exists in users collection, In the instance of checking the data, function run faster than the call method(as you all know).This result to Session to become one step behind when the user is checking the username…
mcnk
  • 1,690
  • 3
  • 20
  • 29
-2
votes
1 answer

Use hydrate() with async. components

The application I'm working on is based on React Fiber and React Router V3. Trying to use hydrate() instead of render() with async components I've faced with the following issue: HTML returned from SSR is different from client-side one. As a result…
1 2 3 4
5