-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathHostTable.tsx
146 lines (141 loc) · 3.93 KB
/
HostTable.tsx
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
import React, { useEffect, useState } from 'react'
import { getHostKey, getHostName } from 'libs'
import Loading from 'components/Loading'
import queryString from 'query-string'
import { useStore } from './StoreContext'
import { observer } from 'mobx-react'
import { Affix, Button, Table, message, PageHeader, Popconfirm } from 'antd'
import { Link, useNavigate } from 'react-router-dom'
const Host = (props) => {
const key = getHostKey(props)
const { isRegex, pattern } = props
const query = isRegex ? { isRegex, pattern } : { domain: key }
const to = {
pathname: '/',
search: queryString.stringify(query)
}
return <Link to={to}>{getHostName(props)}</Link>
}
const Regex = (isRegex) => {
if (isRegex) {
return 'Yes'
}
return 'No'
}
export default observer((props) => {
useEffect(() => {
AppStore.init({})
}, [])
const navigate = useNavigate()
const [selectedRowKeys, setSelectedRowKeys] = useState([])
const rowSelection = {
selectedRowKeys,
onChange: setSelectedRowKeys,
selections: [Table.SELECTION_ALL, Table.SELECTION_INVERT]
}
const { AppStore } = useStore()
const { hosts, loading } = AppStore
if (loading) {
return <Loading />
}
const data = hosts.map((host) => {
return {
key: getHostKey(host),
host,
isRegex: Boolean(host.isRegex)
}
})
const columns = [
{
title: 'Host',
dataIndex: 'host',
key: 'host',
render: Host,
sorter: (a, b) => {
const aKey = getHostKey(a.host)
const bKey = getHostKey(b.host)
return aKey.localeCompare(bKey)
}
},
{
title: 'isRegex',
dataIndex: 'isRegex',
key: 'isRegex',
render: Regex,
sorter: (a, b) => a.isRegex - b.isRegex
},
{
title: 'Action',
key: 'action',
render: ({ host }) => {
const name = getHostName(host)
return (
<Popconfirm
title={`Are you sure delete this host: ${name}`}
onConfirm={() => {
AppStore.removeHost({ host })
message.success(`Successfully remove host: ${name}`)
}}
okText='Yes'
cancelText='No'
>
<Button type='danger'>Delete</Button>
</Popconfirm>
)
}
}
]
const hasSelected = selectedRowKeys.length > 0
return (
<div style={{ overflow: 'scroll', height: '100vh' }}>
<Affix offsetTop={0.01}>
<PageHeader
ghost={false}
onBack={() => navigate(-1)}
title='All Hosts & Patterns'
extra={
<>
<span style={{ marginLeft: 8 }}>
{hasSelected
? `Selected ${selectedRowKeys.length} host${
selectedRowKeys.length > 1 ? 's' : ''
}`
: ''}
</span>
<Popconfirm
disabled={!hasSelected}
title={`Are you sure delete all selected host${
selectedRowKeys.length > 1 ? 's' : ''
}`}
onConfirm={() => {
const toDelete = new Set(selectedRowKeys)
data
.filter((x) => toDelete.has(x.key))
.map((x) => x.host)
.forEach((host) => AppStore.removeHost({ host }))
message.success(
`Successfully remove all selected host${
selectedRowKeys.length > 1 ? 's' : ''
}`
)
}}
okText='Yes'
cancelText='No'
>
<Button type='danger' disabled={!hasSelected}>
Delete
</Button>
</Popconfirm>
</>
}
/>
</Affix>
<Table
columns={columns}
rowSelection={rowSelection}
dataSource={data}
pagination={false}
/>
</div>
)
})