-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.tsx
More file actions
46 lines (36 loc) · 1.37 KB
/
index.tsx
File metadata and controls
46 lines (36 loc) · 1.37 KB
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
import Switch from '@node-core/ui-components/Common/Switch';
import { getTranslations } from 'next-intl/server';
import provideReleaseData from '#site/next-data/providers/releaseData';
import provideVulnerabilities from '#site/next-data/providers/vulnerabilities';
import type { FC } from 'react';
import EOLReleaseTableBody from './TableBody';
import styles from './index.module.css';
const EOLReleaseTable: FC = async () => {
const releaseData = await provideReleaseData();
const vulnerabilities = await provideVulnerabilities();
const eolReleases = releaseData.filter(release => release.status === 'EoL');
const t = await getTranslations();
return (
<div className={styles.eolTableWrapper}>
<Switch id="hide-non-lts" label={t('components.eolTable.hideNonLts')} />
<table id="tbVulnerabilities">
<thead>
<tr>
<th>
{t('components.eolTable.version')} (
{t('components.eolTable.codename')})
</th>
<th>{t('components.eolTable.lastUpdated')}</th>
<th>{t('components.eolTable.vulnerabilities')}</th>
<th>{t('components.eolTable.details')}</th>
</tr>
</thead>
<EOLReleaseTableBody
eolReleases={eolReleases}
vulnerabilities={vulnerabilities}
/>
</table>
</div>
);
};
export default EOLReleaseTable;