You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Since linkFiber invoke a throttle function that get delay for 70 ms, between each test, linkFiber need to be delayed for 75 ms to ensure no overlapping async calls.
Copy file name to clipboardExpand all lines: src/backend/controllers/createTree.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ import {
32
32
* @param currentFiberNode A Fiber object
33
33
* @return An instance of a Tree object
34
34
*/
35
-
// TODO: Not sure why the ritd need to be outside of the createTree function. Want to put inside, but in case this need to be keep track for front end.
35
+
// TODO: Not sure why the ritd need to be outside of the _createTree function. Want to put inside, but in case this need to be keep track for front end.
Copy file name to clipboardExpand all lines: src/backend/models/filterConditions.ts
+2-27Lines changed: 2 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -2,31 +2,7 @@ import {
2
2
FunctionComponent,
3
3
ClassComponent,
4
4
IndeterminateComponent,// Before we know whether it is function or class
5
-
HostRoot,// Root of a host tree. Could be nested inside another node.
6
-
HostPortal,// A subtree. Could be an entry point to a different renderer.
7
-
/**
8
-
* Host Component: a type of component that represents a native DOM element in the browser environment, such as div, span, input, h1 etc.
9
-
*/
10
-
HostComponent,// has stateNode of html elements
11
-
HostText,
12
-
Fragment,
13
-
Mode,
14
-
ContextConsumer,
15
5
ContextProvider,
16
-
ForwardRef,
17
-
Profiler,
18
-
SuspenseComponent,
19
-
MemoComponent,
20
-
SimpleMemoComponent,// A higher order component where if the component renders the same result given the same props, react skips rendering the component and uses last rendered result. Has memoizedProps/memoizedState but no stateNode
21
-
LazyComponent,
22
-
IncompleteClassComponent,
23
-
DehydratedFragment,
24
-
SuspenseListComponent,
25
-
FundamentalComponent,
26
-
ScopeComponent,
27
-
Block,
28
-
OffscreenComponent,
29
-
LegacyHiddenComponent,
30
6
WorkTag,
31
7
}from'../types/backendTypes';
32
8
@@ -72,11 +48,10 @@ export const remixDefaultComponents = new Set([
@@ -13,22 +12,16 @@ import createTree from '../controllers/createTree';
13
12
* @param fiberRoot The `fiberRootNode`, which is the root node of the fiber tree is stored in the current property of the fiber root object which we can use to traverse the tree
14
13
*/
15
14
// updating tree depending on current mode on the panel (pause, etc)
0 commit comments