Display resources page data

This commit is contained in:
Paul W. 2021-12-07 23:30:34 -05:00
parent 13de0e15b0
commit b817641b4b

View File

@ -1,5 +1,6 @@
import React, { ReactElement } from 'react'; import React, { ReactElement } from 'react';
import Layout from '../components/layout'; import Layout from '../components/layout';
import style from '../styles/lists.module.css';
type listItem = { type listItem = {
children?: listItem[] | string[]; children?: listItem[] | string[];
@ -87,17 +88,17 @@ function mapChild(obj: listItem | string, level: number) {
if (typeof obj === 'string') { if (typeof obj === 'string') {
if (obj === '') if (obj === '')
return <></> return <></>
return <li>{obj}</li> return <span className={style.listItem}>{obj}</span>
} }
if (obj.title === '') if (obj.title === '')
return <></> return <></>
if (obj.url) if (obj.url)
return <li key=''><a href={obj.url}>{obj.title}</a></li> return <span className={style.listItem}><a href={obj.url}>{obj.title}</a></span>
if (!obj.children) if (!obj.children)
return <li>{obj.title}</li> return <span className={style.listItem}>{obj.title}</span>
let title: ReactElement; let title: ReactElement;
@ -110,9 +111,9 @@ function mapChild(obj: listItem | string, level: number) {
<> <>
{title} {title}
{obj.description ? <p>{obj.description}</p> : <></>} {obj.description ? <p>{obj.description}</p> : <></>}
<ul> <div>
{obj.children.map(l => mapChild(l, level + 1))} {obj.children.map(l => mapChild(l, level + 1))}
</ul> </div>
</> </>
); );
} }
@ -121,7 +122,7 @@ function Resources() {
return ( return (
<Layout name='Resources' title='Some Useful Resources'> <Layout name='Resources' title='Some Useful Resources'>
<section className='block'> <section className='block'>
{list.map(l => mapChild(l, 0))}
</section> </section>
</Layout>); </Layout>);
} }