-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
363 lines (300 loc) · 8.57 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/////////////////////////////
// my own react ////////
///////////////////////////
///////////////// data structures ///////////////
// const fiber = {
// type: "string",
// dom: "dom element",
// props: { ...props, children: [] },
// };
///////////////////// not a comment do not delete ///////////////////////////
/** @jsx Didact.createElement */
///////////////// VARS ////////////////////////////////////////////
let nextUnitOfWork = null;
let wipRoot = null;
let currentRoot = null;
let deletion = null;
let wipFiber = {};
let hookIndex = 0;
///////////////// ENUMS ////////////////////////////////////////////
const elementTypes = Object.freeze({ TEXT_ELEMENT: "TEXT_ELEMENT" });
/////////////////////// functions /////////////////////////////
const isProperty = (key) => key !== "children";
///////////////// apis ////////////////////////////////////////////
//useState
const useState = (initial) => {
console.log("running useState");
const oldHook =
wipFiber.alternate &&
wipFiber.alternate.hooks &&
wipFiber.alternate.hooks[hookIndex];
const hook = { state: oldHook ? oldHook.state : initial, queue: [] };
const actions = oldHook ? oldHook.queue : [];
actions.forEach((action) => {
hook.state = action(hook.state);
});
const setState = (action) => {
hook.queue.push(action);
wipRoot = {
dom: currentRoot.dom,
props: currentRoot.props,
alternate: currentRoot,
};
nextUnitOfWork = wipRoot;
deletion = [];
};
wipFiber.hooks.push(hook);
hookIndex++;
return [hook.state, setState];
};
// create fiber
const createElement = (type, props, ...children) => ({
type,
props: {
...props,
children: children.map((child) =>
typeof child === "object" ? child : createTextElement(child)
),
},
});
// create fiber for text
const createTextElement = (text) => ({
type: elementTypes.TEXT_ELEMENT,
props: { nodeValue: text, children: [] },
});
// createDom
const createDom = (fiber) => {
// create dom node
const dom =
fiber.type === elementTypes.TEXT_ELEMENT
? document.createTextNode("")
: document.createElement(fiber.type);
// attach attributes; attributes are all props keys besides key === 'children'
Object.keys(fiber.props)
.filter(isProperty)
.forEach((name) => {
dom[name] = fiber.props[name];
});
// add event listeners
Object.keys(fiber.props)
.filter(isEvent)
.forEach((name) => {
const eventType = name.toLocaleLowerCase().substring(2);
dom.addEventListener(eventType, fiber.props[name]);
});
return dom;
};
// updateFunctionComponent
const updateFunctionComponent = (fiber) => {
wipFiber = fiber;
hookIndex = 0;
wipFiber.hooks = [];
const children = [fiber.type(fiber.props)];
reconcileChildren(fiber, children);
};
// updateHostComponent
const updateHostComponent = (fiber) => {
if (!fiber.dom) {
fiber.dom = createDom(fiber);
}
const elements = fiber.props.children;
reconcileChildren(fiber, elements);
};
// perform unit of work
const performUnitOfWork = (fiber) => {
const isFunctionComponent = fiber.type instanceof Function;
if (isFunctionComponent) {
// handle function component
updateFunctionComponent(fiber);
} else {
// handle host component
updateHostComponent(fiber);
}
// next unit of work child=>sibling=>uncle
// first next unit if work should be the its child if any
if (fiber.child) {
return fiber.child;
}
// if childless, next unit of work is the nextSibling(s)
let nextFiber = fiber;
while (nextFiber) {
if (nextFiber.sibling) {
return nextFiber.sibling;
}
// if it has no sibling then next unit is the uncle if any
nextFiber = nextFiber.parent;
}
};
// reconcileChildren
const reconcileChildren = (wipFiber, elements) => {
let index = 0;
let previousSibling = null;
let oldFiber = wipFiber.alternate && wipFiber.alternate.child;
while (index < elements.length || oldFiber) {
const element = elements[index];
const newFiber = null;
const sameType = oldFiber && element && element.type === oldFiber.type;
if (sameType) {
// update props
newFiber = {
type: oldFiber.type,
props: element.props,
dom: oldFiber.dom,
parent: wipFiber,
alternate: oldFiber,
effectTag: "UPDATE",
};
}
if (element && !sameType) {
// add node
newFiber = {
type: element.type,
props: element.props,
dom: null,
parent: wipFiber,
alternate: null,
effectTag: "PLACEMENT",
};
}
if (oldFiber && !sameType) {
// delete old
oldFiber.effectTag = "DELETION";
deletion.push(oldFiber);
}
if (oldFiber) {
oldFiber = oldFiber.sibling;
}
if (index === 0) {
wipFiber.child = newFiber;
} else {
previousSibling.sibling = newFiber;
}
previousSibling = newFiber;
index++;
}
};
// workloop
// deadline :requestIdleCallbackObject props {timeRemaining: fn. }
const workloop = (deadline) => {
let shouldYield = false;
while (nextUnitOfWork && !shouldYield) {
nextUnitOfWork = performUnitOfWork(nextUnitOfWork);
let timeRemaining = deadline.timeRemaining();
shouldYield = timeRemaining < 1;
}
if (!nextUnitOfWork && wipRoot) {
commitRoot();
}
window.requestIdleCallback(workloop);
};
// commitRoot
const commitRoot = () => {
deletion.forEach(commitWork);
commitWork(wipRoot.child);
currentRoot = wipRoot;
wipRoot = null;
};
// commitWork
const commitWork = (fiber) => {
if (!fiber) {
return;
}
let parentFiber = fiber.parent;
while (!parentFiber.dom) {
parentFiber = parentFiber.parent;
}
// const domParent = fiber.parent.dom;
const domParent = parentFiber.dom;
if (fiber.effectTag === "PLACEMENT" && fiber.dom != null) {
domParent.appendChild(fiber.dom);
} else if (fiber.effectTag === "DELETION" && fiber.dom != null) {
// domParent.removeChild(fiber.dom);
commitDeletion(fiber, domParent);
} else if (fiber.effectTag === "UPDATE" && fiber.dom != null) {
updateDom(fiber.dom, fiber.alternate.props, fiber.props);
}
commitWork(fiber.child);
commitWork(fiber.sibling);
};
const commitDeletion = (fiber, domParent) => {
if (fiber.child.dom) {
domParent.removeChild(fiber);
} else {
commitDeletion(fiber.child, domParent);
}
};
const isGone = (next) => (key) => !(key in next);
const isNew = (prev, next) => (key) => prev[key] !== next[key];
const isEvent = (key) => key.startsWith("on");
// updateDom
const updateDom = (dom, prevProps, nextProps) => {
// remove old props(attributes)
Object.keys(prevProps)
.filter(isProperty)
.filter(isGone(prevProps, nextProps))
.forEach((name) => (dom[name] = ""));
// remove old or changed event listeners
Object.keys(prevProps)
.filter(isEvent)
.filter((key) => !(key in nextProps) || isNew(prevProps, nextProps)(key))
.forEach((name) => {
const eventType = name.toLocaleLowerCase().substring(2);
dom.removeEventListener(eventType, prevProps[name]);
});
// add event listener
Object.keys(nextProps)
.filter(isEvent)
.filter(isNew(prevProps, nextProps))
.forEach((name) => {
const eventType = name.toLocaleLowerCase().substring(2);
dom.addEventListener(eventType, nextProps[name]);
});
// set new or changed properties
Object.keys(nextProps)
.filter(isProperty)
.filter(isNew(prevProps, nextProps))
.forEach((name) => (dom[name] = nextProps[name]));
};
const render = (element, container) => {
// keep track of the root of the fiber tree
wipRoot = {
dom: container,
props: { children: [element] },
alternate: currentRoot,
};
deletion = [];
// set the next unit of work
nextUnitOfWork = wipRoot;
};
const Didact = { createElement, createTextElement, render, useState };
/////////////////////////////////////////////////////////////
const container = document.getElementById("root");
const Counter = () => {
const [counter, setCounter] = Didact.useState(1);
console.log(counter);
return (
<span>
{counter}
<button onClick={() => setCounter((prev) => prev + 1)}>+</button>
</span>
);
};
const Title = (props) => (
<h3>
Create your own <strong>{props.label}</strong>
</h3>
);
const updateValue = (e) => rerender(e.target.value);
const rerender = (value = "") => {
const element = (
<div>
<Counter />
<Title label="react" />
<input onInput={updateValue} value={value} />
<h1>Hello {value}</h1>
</div>
);
Didact.render(element, container);
};
rerender();
window.requestIdleCallback(workloop);