-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathunl-report.js
229 lines (213 loc) · 6.9 KB
/
unl-report.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
import { useTranslation, Trans } from 'next-i18next'
import { useState, useEffect } from 'react'
import axios from 'axios'
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
import { useRouter } from 'next/router'
import { getIsSsrMobile } from '../utils/mobile'
export const getServerSideProps = async (context) => {
const { locale } = context
return {
props: {
isSsrMobile: getIsSsrMobile(context),
...(await serverSideTranslations(locale, ['common', 'unl-report']))
}
}
}
import SEO from '../components/SEO'
import CopyButton from '../components/UI/CopyButton'
import { useWidth } from '../utils'
import { userOrServiceLink, niceNumber, shortHash, addressUsernameOrServiceLink } from '../utils/format'
import Link from 'next/link'
export default function UNLreport() {
const { t } = useTranslation(['common', 'unl-report'])
const router = useRouter()
const { isReady } = router
const windowWidth = useWidth()
const [rawData, setRawData] = useState({})
const [data, setData] = useState([])
const [loading, setLoading] = useState(false)
const [errorMessage, setErrorMessage] = useState('')
const controller = new AbortController()
const checkApi = async () => {
let apiUrl = 'v2/unl-report'
setLoading(true)
setRawData({})
setData([])
const response = await axios
.get(apiUrl, {
signal: controller.signal
})
.catch((error) => {
if (error && error.message !== 'canceled') {
setErrorMessage(t('error.' + error.message))
setLoading(false) //keep here for fast tab clickers
}
})
const newdata = response?.data
if (newdata) {
setRawData(newdata)
setLoading(false) //keep here for fast tab clickers
if (newdata.ledgerEntry) {
setErrorMessage('')
setData(newdata.activeValidators)
} else {
if (newdata.error) {
setErrorMessage(newdata.error)
} else {
setErrorMessage('Error')
console.log(newdata)
}
}
}
}
/*
{
"ledgerEntry": "61E32E7A24A238F1C619D5F9DDCC41A94B33B66C0163F7EFCC8A19C9FD6F28DC",
"ledgerHash": "082C7468B15FC93DF216FE1B58CA326F7DF42A753F0399C027F747E572DFA913",
"ledgerIndex": 7322707,
activeValidators: [
{
"account": "rGhk2uLd8ShzX2Zrcgn8sQk1LWBG4jjEwf",
"publicKey": "DECODED",
accountDetails,
}
],
importVLKeys: [
{
"account": "rGhk2uLd8ShzX2Zrcgn8sQk1LWBG4jjEwf",
"publicKey": "DECODED",
accountDetails,
}
],
validated: true
}
*/
useEffect(() => {
checkApi()
return () => {
controller.abort()
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isReady])
return (
<>
<SEO title={t('header', { ns: 'unl-report' })} />
<div className="content-text">
<h1 className="center">{t('header', { ns: 'unl-report' })}</h1>
<div className="flex">
<div className="grey-box center">
<Trans i18nKey="desc" ns="unl-report">
Here you can find UNL report for Ledger <b>{{ ledgerIndex: rawData?.ledgerIndex || '' }}</b>, ledger
entry: 61E32E...6F28DC.
</Trans>
<br />
<br />
{loading ? (
t('general.loading')
) : (
<Trans i18nKey="summary" ns="unl-report">
There are <b>{{ activeValidators: niceNumber(data?.length) }}</b> active validators.
</Trans>
)}
</div>
</div>
<br />
{windowWidth > 1000 ? (
<table className="table-large shrink">
<thead>
<tr>
<th className="center">{t('table.index')}</th>
<th className="left">{t('table.public-key')}</th>
<th>{t('table.address')}</th>
</tr>
</thead>
<tbody>
{loading ? (
<tr className="right">
<td colSpan="100">
<br />
<span className="waiting"></span>
<br />
{t('general.loading')}
<br />
<br />
</td>
</tr>
) : (
<>
{!errorMessage && data ? (
<>
{data.length > 0 &&
data.map((av, i) => (
<tr key={i}>
<td className="center">{i + 1}</td>
<td className="left">
<CopyButton text={av.publicKey} /> {shortHash(av.publicKey)}
</td>
<td>
<CopyButton text={av.account} /> {addressUsernameOrServiceLink(av, 'account')}
</td>
</tr>
))}
</>
) : (
<tr>
<td colSpan="100" className="center orange bold">
{errorMessage}
</td>
</tr>
)}
</>
)}
</tbody>
</table>
) : (
<table className="table-mobile">
<thead></thead>
<tbody>
{loading ? (
<tr className="center">
<td colSpan="100">
<br />
<span className="waiting"></span>
<br />
{t('general.loading')}
<br />
<br />
</td>
</tr>
) : (
<>
{!errorMessage ? (
data.map((av, i) => (
<tr key={i}>
<td style={{ padding: '5px' }} className="center">
<b>{i + 1}</b>
</td>
<td>
<p>
{t('table.address')}: <Link href={'/account/' + av.account}>{av.account}</Link>{' '}
{userOrServiceLink(av, 'account')}
</p>
<p>
{t('table.public-key')}: {shortHash(av.publicKey)} <CopyButton text={av.publicKey} />
</p>
</td>
</tr>
))
) : (
<tr>
<td colSpan="100" className="center orange bold">
{errorMessage}
</td>
</tr>
)}
</>
)}
</tbody>
</table>
)}
</div>
</>
)
}