mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-02 00:05:35 +01:00
Improve Deployments.jsx
This commit is contained in:
parent
8f4d8c9279
commit
f23dd976b2
@ -46,18 +46,7 @@ export default function Deployments({ data, location }) {
|
||||
setLoading(false)
|
||||
}, [])
|
||||
|
||||
const getAquariusVersion = async (url) => {
|
||||
if (!url) return
|
||||
try {
|
||||
const data = await fetch(url)
|
||||
const { version } = await data.json()
|
||||
return version
|
||||
} catch {
|
||||
return '-'
|
||||
}
|
||||
}
|
||||
|
||||
const getProviderVersion = async (url) => {
|
||||
const getVersion = async (url) => {
|
||||
if (!url) return
|
||||
try {
|
||||
const data = await fetch(url)
|
||||
@ -72,8 +61,8 @@ export default function Deployments({ data, location }) {
|
||||
const objs = []
|
||||
|
||||
for (const key of Object.keys(networks)) {
|
||||
const aquariusVerison = await getAquariusVersion(networks[key].aquarius)
|
||||
const providerVerison = await getProviderVersion(networks[key].provider)
|
||||
const aquariusVerison = await getVersion(networks[key].aquarius)
|
||||
const providerVerison = await getVersion(networks[key].provider)
|
||||
objs.push(
|
||||
<tr key={key}>
|
||||
<td>{key}</td>
|
||||
@ -85,7 +74,6 @@ export default function Deployments({ data, location }) {
|
||||
|
||||
return (
|
||||
<div>
|
||||
{' '}
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user