-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.js
135 lines (130 loc) · 3.29 KB
/
home.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
import React, { Component } from "react";
import "./home.css";
import ReactDOM from "react-dom";
const Row = ({ id, name, age, designation, contact, remove }) => (
<div className="row">
<table>
<td>
<div className="remove">
<a href="# " onClick={() => remove(id)}>
X
</a>
</div>
</td>
<td>
<div>{id}</div>
</td>
<td>
<div>{name}</div>
</td>
<td>
<div>{age}</div>
</td>
<td>
<div>{designation}</div>
</td>
<td>
<div>{contact}</div>
</td>
</table>
</div>
);
class home extends Component {
state = {
data: [
{
id: 1,
name: "Govarthini.V",
age:19,
designation:"FrontEnd Web Developer",
contact:9876543210,
},
{
id: 2,
name: "KayalVizhi",
age:20,
designation:"BackEnd Web Developer",
contact:8567900000,
},
{
id: 3,
name: "Vishvaja.J",
age:20,
designation:"BackEnd Web Developer",
contact:9589545300,
},
{
id: 4,
name: "Katherine",
age:20,
designation:"FrontEnd Web Developer",
contact:856754860,
},
],
};
/*
I like to write it this way to explicity state that a function is being returned
But you could simplify this by using arrow syntax twice,
compareBy = (key) => (a,b) => { ...... }
*/
compareBy = (key) => {
return function (a, b) {
if (a[key] < b[key]) return -1;
if (a[key] > b[key]) return 1;
return 0;
};
};
sortBy = (key) => {
let arrayCopy = [...this.state.data];
arrayCopy.sort(this.compareBy(key));
this.setState({ data: arrayCopy });
};
remove = (rowId) => {
// Array.prototype.filter returns new array
// so we aren't mutating state here
const arrayCopy = this.state.data.filter((row) => row.id !== rowId);
this.setState({ data: arrayCopy });
};
render() {
const rows = this.state.data.map((rowData) => (
<Row remove={this.remove} {...rowData} />
));
return (
<div id="app">
<br />
<br />
<br />
<br />
<br />
<br />
<div className="table">
<div className="header">
<table>
<div className="remove"></div>
<tr>
<th>DEL</th>
<th>
<div onClick={() => this.sortBy("id")}>ID</div>
</th>
<th>
<div onClick={() => this.sortBy("name")}>Name</div>
</th>
<th>
<div onClick={() => this.sortBy("age")}>Age</div>
</th>
<th>
<div onClick={() => this.sortBy("designation")}>Designation</div>
</th>
<th>
<div onClick={() => this.sortBy("contact")}>Contact</div>
</th>
</tr>
</table>
</div>
<div className="body">{rows}</div>
</div>
</div>
);
}
}
export default home;