status-frontend/src/pages/index.tsx

101 lines
3.0 KiB
TypeScript
Raw Normal View History

2022-09-29 16:25:10 +02:00
import Head from 'next/head'
2022-10-18 16:45:01 +02:00
import React, { Fragment, ReactElement, useEffect, useState } from 'react'
2022-10-18 19:17:32 +02:00
import { State, Status } from '../@types'
2022-09-29 16:25:10 +02:00
import styles from '../styles/Home.module.css'
2022-10-18 19:17:32 +02:00
import { getData } from '../utils/getData'
2022-10-18 16:27:41 +02:00
import LogoAsset from '../images/logo.svg'
import CheckAsset from '../images/check.svg'
2022-09-30 12:47:53 +02:00
function statusIcon(state: State): ReactElement {
2022-10-18 16:27:41 +02:00
if (state === State.Up) {
return <CheckAsset className={styles.check} />
2022-10-18 16:27:41 +02:00
} else if (state === State.Down) {
return <>🚨</>
2022-10-18 16:27:41 +02:00
} else {
return <>🚧</>
2022-10-17 14:34:22 +02:00
}
2022-10-18 16:27:41 +02:00
}
2022-10-18 16:27:41 +02:00
function statusStyle(state: State) {
if (state === State.Down) {
return styles.down
} else if (state === State.Warning) {
return styles.warning
} else {
return styles.up
}
2022-10-18 16:27:41 +02:00
}
2022-09-30 12:47:53 +02:00
2022-10-18 16:27:41 +02:00
export default function HomePage(): ReactElement {
2022-10-18 19:17:32 +02:00
const [data, setData] = useState<{ [key: string]: Status }>()
2022-09-30 12:47:53 +02:00
useEffect(() => {
async function getStatuses() {
2022-10-18 19:17:32 +02:00
const data = await getData()
setData(data)
2022-09-30 12:47:53 +02:00
}
getStatuses()
}, [])
2022-09-29 16:25:10 +02:00
return (
<div className={styles.container}>
<Head>
<title>Ocean Protocol Status</title>
2022-09-29 16:25:10 +02:00
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
2022-10-18 16:45:01 +02:00
<header>
2022-10-18 16:27:41 +02:00
<LogoAsset className={styles.logo} />
2022-09-30 12:16:56 +02:00
<h1 className={styles.title}>Ocean Status</h1>
2022-10-18 19:17:32 +02:00
<p className={styles.description}>Current Status of Ocean Components</p>
2022-10-18 16:45:01 +02:00
</header>
2022-10-18 16:27:41 +02:00
2022-10-18 16:45:01 +02:00
<main>
2022-10-18 19:17:32 +02:00
{Object.entries(data || {}).map(([key, value]) => (
<Fragment key={key}>
<h2 className={styles.networkName}>{key}</h2>
2022-10-18 16:27:41 +02:00
<div className={styles.grid}>
2022-10-18 19:17:32 +02:00
{Object.entries(value)
.filter(
// TODO: Remove this filter if we fix this on API level
// Needs a new `components` key under Status response
([key]) =>
key !== 'currentBlock' &&
key !== 'lastUpdatedOn' &&
key !== 'network' &&
key !== '_id' &&
key !== '__v'
)
.map(([key, value]) => (
<div
key={key}
className={`${styles.card} ${statusStyle(
// TODO: all component states should be of type Status on API level
key === 'market' || key === 'dataFarming'
? value
: value.status
)}`}
>
<h2>
{statusIcon(
key === 'market' || key === 'dataFarming'
? value
: value.status
)}{' '}
{key}
</h2>
<code className={styles.version}>{value.version}</code>
</div>
))}
2022-10-18 16:27:41 +02:00
</div>
2022-10-18 16:45:01 +02:00
</Fragment>
2022-10-18 16:27:41 +02:00
))}
2022-09-29 16:25:10 +02:00
</main>
2022-09-30 12:16:56 +02:00
<footer className={styles.footer}></footer>
2022-09-29 16:25:10 +02:00
</div>
)
}