Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(website): add mica sustainability indicator route and table #745

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
237 changes: 237 additions & 0 deletions apps/website/components/MicaComplianceTable.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
import { Panel, Text, Tooltip } from '@siafoundation/design-system'
import { MicaIndicatorObject } from '../content/mica'
import {
CloudUpload32,
Earth32,
Flash32,
Information16,
TrashCan32,
} from '@carbon/icons-react'
import { cx } from 'class-variance-authority'

type MicaComplianceTableCellGroupLayoutProps = {
indicatorData: {
title: string
description: string
unit: string
result: {
value: number
year: number
}
}
displayValue: string
customTitle?: string
last?: boolean
}

function MicaComplianceTableCellGroupLayout({
indicatorData,
displayValue,
customTitle,
last,
}: MicaComplianceTableCellGroupLayoutProps) {
const { title, description } = indicatorData
return (
<>
<td
className={cx(
'text-left py-4',
!last && 'border-b-2 border-gray-100 dark:border-b-graydark-100'
)}
>
<Text size="16" weight="light" className="pl-2 md:pl-0">
{customTitle || title}
</Text>
</td>
<td
className={cx(
'text-left py-4',
!last && 'border-b-2 border-gray-100 dark:border-b-graydark-100'
)}
>
<div className="flex justify-end items-center gap-2 pr-2">
<Text size="16" weight="light" noWrap>
{displayValue}
</Text>
<Tooltip content={description}>
<Information16 className="hover:cursor-pointer fill-emerald-700 dark:fill-emerald-500" />
</Tooltip>
</div>
</td>
</>
)
}

type MicaComplianceTableProps = {
micaIndicators: MicaIndicatorObject
lastUpdated: string
}

export function MicaComplianceTable({
micaIndicators,
lastUpdated,
}: MicaComplianceTableProps) {
return (
<>
<Panel>
<table className="table-auto border-collapse w-full">
<thead className="bg-slate-50 dark:bg-black">
<tr className="border-b-2 border-gray-100 dark:border-b-graydark-100">
<th className="py-6 hidden md:table-cell">
<Text tag="span" size="16">
Domain
</Text>
</th>
<th className="text-left py-6">
<Text tag="span" size="16" className="pl-2 md:pl-0">
Sustainability Indicator
</Text>
</th>
<th className="py-6"></th>
</tr>
</thead>
<tbody className="text-center">
<tr>
<td
className="py-4 border-b-2 border-gray-100 dark:border-b-graydark-100 hidden md:table-cell "
rowSpan={3}
>
<div className="flex flex-col justify-content items-center gap-4">
<Flash32 className="fill-emerald-700 dark:fill-emerald-500" />
<Text size="16" weight="light" color="subtle">
Energy
</Text>
</div>
</td>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_1']}
displayValue={`${Math.round(
micaIndicators['indicator_1'].result.value
).toLocaleString()}${' '}${micaIndicators[
'indicator_1'
].unit.replace('kwh', 'kWh')}`}
/>
</tr>
<tr>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_2']}
displayValue={`${micaIndicators[
'indicator_2'
].result.value.toFixed(2)}%`}
/>
</tr>
<tr>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_3']}
displayValue={`${micaIndicators[
'indicator_3'
].result.value.toFixed(6)}${' '}
${micaIndicators['indicator_3'].unit.replace('kwh', 'kWh')}`}
/>
</tr>
<tr>
<td
className="py-4 border-b-2 border-gray-100 dark:border-b-graydark-100 hidden md:table-cell"
rowSpan={3}
>
<div className="flex flex-col justify-content items-center gap-4">
<CloudUpload32 className="fill-emerald-700 dark:fill-emerald-500" />
<Text size="16" weight="light" color="subtle">
GHG Emissions
</Text>
</div>
</td>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_4']}
customTitle="Scope 1 - Controlled"
displayValue={`${
micaIndicators['indicator_4'].result.value
}${' '}
${micaIndicators['indicator_4'].unit}`}
/>
</tr>
<tr>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_5']}
customTitle="Scope 2 - Purchased"
displayValue={`${micaIndicators[
'indicator_5'
].result.value.toLocaleString()}${' '}
${micaIndicators['indicator_5'].unit}`}
/>
</tr>
<tr>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_6']}
displayValue={`${micaIndicators[
'indicator_6'
].result.value.toFixed(6)}${' '}
${micaIndicators['indicator_6'].unit}`}
/>
</tr>
<tr>
<td
className="py-4 border-b-2 border-gray-100 dark:border-b-graydark-100 hidden md:table-cell"
rowSpan={3}
>
<div className="flex flex-col justify-content items-center gap-4">
<TrashCan32 className="fill-emerald-700 dark:fill-emerald-500" />
<Text size="16" weight="light" color="subtle">
Waste Production
</Text>
</div>
</td>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_7']}
displayValue={`${micaIndicators[
'indicator_7'
].result.value.toFixed(2)}${' '}
${micaIndicators['indicator_7'].unit}`}
/>
</tr>
<tr>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_8']}
displayValue={`${micaIndicators[
'indicator_8'
].result.value.toFixed(2)}%`}
/>
</tr>
<tr>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_9']}
displayValue={`${micaIndicators[
'indicator_9'
].result.value.toFixed(6)}${' '}
${micaIndicators['indicator_9'].unit}`}
/>
</tr>
<tr>
<td className="py-4 hidden md:table-cell">
<div className="flex flex-col justify-content items-center gap-4">
<Earth32 className="fill-emerald-700 dark:fill-emerald-500" />
<Text size="16" weight="light" color="subtle">
Natural resources
</Text>
</div>
</td>
<MicaComplianceTableCellGroupLayout
indicatorData={micaIndicators['indicator_10']}
displayValue={`${Math.round(
micaIndicators['indicator_10'].result.value
).toLocaleString()}${' '}
${micaIndicators['indicator_10'].unit}`}
last
/>
</tr>
</tbody>
</table>
</Panel>
<div className="w-full flex justify-end py-2">
<Text size="12" weight="light">
Last updated {lastUpdated.slice(0, lastUpdated.indexOf('T'))}
</Text>
</div>
</>
)
}
4 changes: 4 additions & 0 deletions apps/website/config/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,8 @@ export const routes = {
letter: {
index: '/letter',
},
micaIndicators: {
index: '/mica-indicators',
methodology: '/mica-indicators/methodology',
},
}
4 changes: 4 additions & 0 deletions apps/website/config/siteMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ export const menuSections = [
title: 'Whitepaper',
newTab: true,
},
{
link: routes.micaIndicators.index,
title: 'MiCA Indicators',
},
],
},
{
Expand Down
30 changes: 30 additions & 0 deletions apps/website/content/mica.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { to } from '@siafoundation/request'
import axios from 'axios'
import * as dotenv from 'dotenv'

dotenv.config()

export type MicaIndicator = {
indicator: number
title: string
description: string
unit: string
result: {
value: number
year: number
}
}

export type MicaIndicatorObject = { [key: string]: MicaIndicator }

export async function getMicaIndicators() {
const [indicators, indicatorsError] = await to<MicaIndicatorObject>(
axios(
`https://ccri.sia.tools/mica/overview/sia?responseType=recent&key=${process.env['CCRI_TOKEN']}`
)
)

if (indicatorsError) throw indicatorsError

return indicators
}
72 changes: 72 additions & 0 deletions apps/website/pages/mica-indicators/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
import { Layout } from '../../components/Layout'
import { textContent } from '../../lib/utils'
import { routes } from '../../config/routes'
import { SectionTransparent } from '../../components/SectionTransparent'
import { Link, SiteHeading } from '@siafoundation/design-system'
import { SectionGradient } from '../../components/SectionGradient'
import { backgrounds, previews } from '../../content/assets'
import { MicaComplianceTable } from '../../components/MicaComplianceTable'
import { hoursInSeconds } from '@siafoundation/units'
import { AsyncReturnType } from '../../lib/types'
import { getMicaIndicators } from '../../content/mica'

type Props = AsyncReturnType<typeof getStaticProps>['props']

export default function MicaIndicators({ micaIndicators, lastUpdated }: Props) {
const title = 'MiCA Indicators'
const description = (
<>
The EU Markets in Crypto-Assets (
<Link href="https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica">
MiCA)
</Link>{' '}
regulation requires token issuers and crypto-asset service providers
(CASPs) to disclose sustainability data. This following data is maintained
in partnership with the Crypto Carbon Ratings Institute (
<Link href="https://carbon-ratings.com/">CCRI</Link>). You can find their
methodology <Link href="/mica-indicators/methodology">here</Link>.
</>
)

return (
<Layout
title={title}
description={textContent(description)}
path={routes.micaIndicators.index}
heading={
<SectionTransparent className="pt-24 md:pt-32 pb-0">
<SiteHeading
size="64"
title={title}
description={description}
anchorLink={false}
/>
</SectionTransparent>
}
backgroundImage={backgrounds.waterfall}
previewImage={previews.waterfall}
>
<SectionGradient className="pb:30 pt-8 pb-20">
<MicaComplianceTable
micaIndicators={micaIndicators}
lastUpdated={lastUpdated}
/>
</SectionGradient>
</Layout>
)
}

export async function getStaticProps() {
const micaIndicators = await getMicaIndicators()
const lastUpdated = new Date().toISOString()

const props = {
micaIndicators,
lastUpdated,
}

return {
props,
revalidate: hoursInSeconds(24),
}
}
Loading
Loading