MCPcopy Create free account
hub / github.com/plotly/dash / commitMutationEffects

Function commitMutationEffects

dash/deps/react-dom@18.3.1.js:24288–24296  ·  view source on GitHub ↗
(root, finishedWork, committedLanes)

Source from the content-addressed store, hash-verified

24286 }
24287 } // This function detects when a Suspense boundary goes from visible to hidden.
24288 function commitMutationEffects(root, finishedWork, committedLanes) {
24289 inProgressLanes = committedLanes;
24290 inProgressRoot = root;
24291 setCurrentFiber(finishedWork);
24292 commitMutationEffectsOnFiber(finishedWork, root);
24293 setCurrentFiber(finishedWork);
24294 inProgressLanes = null;
24295 inProgressRoot = null;
24296 }
24297
24298 function recursivelyTraverseMutationEffects(root, parentFiber, lanes) {
24299 // 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…