MCPcopy Index your code
hub / github.com/plotly/dash / commitMutationEffects

Function commitMutationEffects

dash/deps/react-dom@18.2.0.js:24249–24257  ·  view source on GitHub ↗
(root, finishedWork, committedLanes)

Source from the content-addressed store, hash-verified

24247 }
24248 } // This function detects when a Suspense boundary goes from visible to hidden.
24249 function commitMutationEffects(root, finishedWork, committedLanes) {
24250 inProgressLanes = committedLanes;
24251 inProgressRoot = root;
24252 setCurrentFiber(finishedWork);
24253 commitMutationEffectsOnFiber(finishedWork, root);
24254 setCurrentFiber(finishedWork);
24255 inProgressLanes = null;
24256 inProgressRoot = null;
24257 }
24258
24259 function recursivelyTraverseMutationEffects(root, parentFiber, lanes) {
24260 // Deletions effects can be scheduled on any fiber type. They need to happen

Callers 1

commitRootImplFunction · 0.70

Calls 2

setCurrentFiberFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…