forked from irinazheltisheva/fastsite-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSiteTable.js
More file actions
53 lines (51 loc) · 1.26 KB
/
SiteTable.js
File metadata and controls
53 lines (51 loc) · 1.26 KB
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
import React from 'react'
const SiteTable = props => (
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{props.users.length > 0 ? (
props.users.map(user => (
<tr key={user.id}>
<td><a href={process.env.REACT_APP_SITES_URL+user.id} target="_blank" rel="noopener noreferrer">{user.id}</a></td>
<td>{user.name}</td>
<td>
<button
onClick={() => {
props.editRow(user)
}}
className="button muted-button"
>
Edit
</button>
<button
onClick={() => {
props.viewContent(user)
}}
className="button muted-button"
>
Content
</button>
<button
onClick={() => props.deleteUser(user.id)}
className="button muted-button"
>
Delete
</button>
</td>
</tr>
))
) : (
<tr>
<td colSpan={3}>No sites</td>
</tr>
)}
</tbody>
</table>
)
export default SiteTable