-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodo-app.js
419 lines (356 loc) · 9.23 KB
/
todo-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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/**** Demo *****/
/** @jsx TinyReact.createElement */
const root = document.getElementById("root");
// Step 0: createElement
// Step 1: Rendering simple native elements
// Step 1.1 : Setting props and event handlers
// Step 2: Diffing native elements
// Step 4: Adding support for ref.
// Step 5: Functional Components
// Step 6: Props
// Step 7: Diffing functional Components
// Step 8: Stateful Components
// Step 9: Diffing Stateful Components
/***** IMMPLEMENTATION NOTES */
// Convert the below Hello into its equivalent VDOM.
// Step 0: createElement
var Hello = (
<div>
<h1 className="header">Hello React!</h1>
<h2>(coding nirvana)</h2>
<h3>(This will change)</h3>
<button onClick={() => alert("Hi!")}>Click me!</button>
<h3>This will be deleted</h3>
</div>
);
// For Babel to covert this into its equivalent JS code,
// We have to implement createElement method.
console.log(Hello);
// Step 1 & 2: Rendering simple native elements
//TinyReact.render(Hello, root);
// Step 3: Diffing Native element
var NewHello = (
<div>
<h1 className="header">Hello Tiny React</h1>
<h2>(coding nirvana)</h2>
<h3>(I said already. This changed!)</h3>
<button onClick={() => alert("Tiny React!")}>Click me!</button>
</div>
);
// setTimeout(function() {
// alert("Re-rendering!!");
// TinyReact.render(NewHello, root);
// }, 3000);
var Greeting = function(props) {
return (
<div className="greeting">
<h1 className="header">Welcome {props.message}</h1>
<h2>NOT CHANGED</h2>
</div>
);
};
// TinyReact.render(<Greeting message="Hello FS" />, root);
// setTimeout(function() {
// alert("Re-rendering..");
// TinyReact.render(<Greeting message="Greeeting Voila! Changed!!" />, root);
// }, 2000);
class Title extends TinyReact.Component {
render() {
return <h2>Nested Component</h2>;
}
}
class Alert extends TinyReact.Component {
constructor(props) {
super(props);
this.state = {
title: "Default title"
};
}
render() {
return (
<div className="alert-container">
<Title />
<h2 className="alert-title">Are you sure this works?</h2>
<h3>{this.state.title}</h3>
<button
onClick={() => {
this.setState({ title: "New Title" });
}}
>
Change Title
</button>
</div>
);
}
}
//TinyReact.render(<Alert title="Sure ?" />, root);
// Case type change: old is native and new is component
let old = (
<div>
<p>1</p>
<p>2</p>
</div>
)
// TinyReact.render(old, root);
// setTimeout(function() {
// alert("Re-rendering..");
// TinyReact.render(<Alert title="Sure ?" />, root);
// }, 2000);
//TODO: Case type change: old is component and new is native
// Need to optimize this case (as items are not replaced, but added and removed.)
//TinyReact.render(<Alert title="Sure ?" />, root);
// setTimeout(function() {
// alert("Re-rendering..");
// TinyReact.render(old, root);
// }, 2000);
//////******************************* TODO APP */
let Header = props => {
return (
<div>
<h1 style="color:green">{props.text}</h1>
<h6>(double click on todo to mark as completed)</h6>
</div>
);
};
class TodoItem extends TinyReact.Component {
constructor(props) {
super(props);
this.logging = true;
}
log(...args) {
if (this.logging) {
for (let i = 0; i < args.length; i++) {
console.log(args[i]);
}
}
}
componentDidMount() {
this.log("2. TodoItem:cdm");
}
componentWillMount() {
this.log("1. TodoItem:cwu");
}
shouldComponentUpdate(nextProps, nextState) {
return true;
}
componentWillReceiveProps(nextProps) {
this.log("TodoItem:cwrp: ", JSON.stringify(nextProps));
}
componentWillUnmount() {
this.log("TodoItem:cwu: " + this.props.task.title);
}
handleEdit = task => {
this.props.onUpdateTask(task.id, this.textInput.value);
};
editView = props => {
if (props.task.edit) {
return (
<span>
<input
type="text"
className="editItemInput"
value={props.task.title}
ref={input => (this.textInput = input)}
/>
<button
type="button"
onClick={() => this.handleEdit(this.props.task)}
>
<i class="fas fa-save" />
</button>
</span>
);
}
return props.task.title;
};
render() {
let className = "todo-item ";
if (this.props.task.completed) {
className += "strike";
}
return (
<li
key={this.props.key}
className={className}
onDblClick={() => this.props.onToggleComplete(this.props.task)}
>
{this.editView(this.props)}
<div className="todo-actions">
<button
type="button"
onClick={() => this.props.onToggleEdit(this.props.task)}
>
<i class="fas fa-edit" />
</button>
{/* <button
type="button"
className="btnDelete"
onClick={() => this.props.onDelete(this.props.task)}
>
<i class="fas fa-trash" />
</button> */}
</div>
</li>
);
}
}
class TodoApp extends TinyReact.Component {
constructor(props) {
super(props);
this.addTodo = this.addTodo.bind(this);
this.deleteTodo = this.deleteTodo.bind(this);
this.onToggleEdit = this.onToggleEdit.bind(this);
this.onUpdateTask = this.onUpdateTask.bind(this);
this.onToggleComplete = this.onToggleComplete.bind(this);
this.onKeyDown = this.onKeyDown.bind(this);
this.state = {
tasks: [{ id: 1, title: "Task 1", edit: false }],
sortOrder: "asc"
};
}
onKeyDown(e) {
if (e.which === 13) {
this.addTodo();
}
}
deleteTodo(task) {
var tasks = this.state.tasks.filter(t => {
return t.id != task.id;
});
this.setState({
header: "# Todos: " + tasks.length,
tasks
});
}
addTodo() {
if (this.newTodo.value.trim() == "") {
alert("You don't wanna do anything !");
return;
}
let newTodo = {
id: +new Date(),
title: this.newTodo.value,
edit: false
};
this.setState({
tasks: [...this.state.tasks, newTodo]
});
this.newTodo.value = "";
this.newTodo.focus();
}
sortToDo = () => {
let tasks = null;
let sortOrder = this.state.sortOrder;
if (!sortOrder) {
tasks = this.state.tasks.sort(
(a, b) => +(a.title > b.title) || -(a.title < b.title)
);
sortOrder = "asc";
} else if (sortOrder === "asc") {
sortOrder = "desc";
tasks = this.state.tasks.sort(
(a, b) => +(b.title > a.title) || -(b.title < a.title)
);
} else {
sortOrder = "asc";
tasks = this.state.tasks.sort(
(a, b) => +(a.title > b.title) || -(a.title < b.title)
);
}
this.setState({
tasks,
sortOrder
});
};
onUpdateTask(taskId, newTitle) {
//alert(newTitle);
//let state = JSON.parse(JSON.stringify(this.state));
var tasks = this.state.tasks.map(t => {
if (t.id === taskId) {
t.title = newTitle;
t.edit = !t.edit;
}
return t;
});
this.setState({
tasks
});
}
// Uses setstate with fn argument
onToggleEdit(task) {
let state = JSON.parse(JSON.stringify(this.state));
let tasks = state.tasks.map(t => {
if (t.id === task.id) {
t.edit = !t.edit;
} else {
//t.edit = false; // Force, due to bug in ref.
}
return t;
});
this.setState({
tasks
});
// this.setState((state, props) => ({
// tasks
// }));
}
onToggleComplete(task) {
var tasks = this.state.tasks.map(t => {
if (t.id === task.id) {
t.completed = !t.completed;
}
return t;
});
this.setState({
tasks
});
}
render() {
let tasksUI = this.state.tasks.map((task, index) => {
return (
<TodoItem
key={task.id}
task={task}
index={index}
onDelete={this.deleteTodo}
onToggleEdit={this.onToggleEdit}
onToggleComplete={this.onToggleComplete}
onUpdateTask={this.onUpdateTask}
/>
);
});
let sortIcon = <i class="fas fa-sort-alpha-down" />;
if (this.state.sortOrder === "asc") {
sortIcon = <i class="fas fa-sort-alpha-up" />;
} else {
sortIcon = <i class="fas fa-sort-alpha-down" />;
}
return (
<div className="container">
{/* <Header text="Todo App" /> */}
{/* <div className="todo-input-container">
<input
type="text"
className="addItemInput"
onKeyDown={this.onKeyDown}
ref={newTodo => (this.newTodo = newTodo)}
placeholder="what do you want to do today?"
/>
<button
type="button"
className="addItemButton"
onClick={this.addTodo}
value="Add Todo"
>
Add Todo
</button>
<button type="button" onClick={this.sortToDo} value="Sort">
{sortIcon}
</button>
</div> */}
<ul className="todos">{tasksUI}</ul>
</div>
);
}
}
TinyReact.render(<TodoApp />, root);