Last active
April 11, 2021 03:00
-
-
Save ndugger/900e6e3f0080ead2d2d83e790d625b43 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, Fragment, createElement } from 'cortex' | |
import { createStyleSheet } from 'cortex-css' | |
import { Router, useRouter } from 'cortex-router' | |
import { useArticles } from '~/hooks/useArticles' | |
import { useVideos } from '~/hooks/useVideos' | |
import { Article } from '~/models/Article' | |
import { Video } from '~/models/Video' | |
import { mapTitleToSlug } from '~/utilities/mapTitleToSlug' | |
import { Container } from '~/views/components/Container' | |
import { Flexbox } from '~/views/components/Flexbox' | |
import { Footer } from '~/views/components/Footer' | |
import { Grid } from '~/views/components/Grid' | |
import { Header } from '~/views/components/Header' | |
import { Indicator } from '~/views/components/Indicator' | |
import { Section } from '~/views/components/Section' | |
import { Spacer } from '~/views/components/Spacer' | |
import { Typography } from '~/views/components/Typography' | |
import { FeaturedArticle } from '~/views/templates/FeaturedArticle' | |
import { FeaturedExcerpt } from '~/views/templates/FeaturedExcerpt' | |
import { FeaturedVideo } from '~/views/templates/FeaturedVideo' | |
const GAP_PX = 40 | |
const LATEST_FINDINGS = 'Latest_Findings' | |
const LATEST_FINDINGS_GLYPH = 'base-station-fill' | |
const ON_DEMAND = 'On_Demand' | |
const ON_DEMAND_GLYPH = 'play-circle-fill' | |
const ON_DEMAND_ID = 'on_demand' | |
export class IndexPage extends Component { | |
protected routeToArticlePage(router: Router.Context, article: Article) { | |
router.navigate(`/news/${ article.id }/${ mapTitleToSlug(article.title) }`) | |
} | |
protected routeToVideoPage(router: Router.Context, video: Video) { | |
router.navigate(`/videos/${ video.id }/${ mapTitleToSlug(video.title) }`) | |
} | |
protected render() { | |
const router = useRouter() | |
const articles = useArticles(10, 0) | |
const videos = useVideos(10, 0) | |
if ([ articles, videos ].some(req => req.pending)) return [ | |
<Flexbox align={ Flexbox.Alignment.Center } grow justify={ Flexbox.Alignment.Center }> | |
<Indicator/> | |
</Flexbox> | |
] | |
if ([ articles, videos ].some(req => req.error)) return [ | |
<Flexbox align={ Flexbox.Alignment.Center } grow justify={ Flexbox.Alignment.Center }> | |
<Typography variant={ Typography.Variant.Heading }> | |
{ [ articles, videos ].filter(req => req.error).map(req => req.error.message) } | |
</Typography> | |
</Flexbox> | |
] | |
return [ | |
<Container padding={ 24 }> | |
<Section glyph={ LATEST_FINDINGS_GLYPH } heading={ LATEST_FINDINGS }> | |
<Grid columns={ 3 } gap={ GAP_PX }> | |
<Fragment> | |
{ articles.data.slice(0, 3).map(article => ( | |
<FeaturedArticle | |
article={ article } | |
onclick={ () => this.routeToArticlePage(router, article) }/> | |
)) } | |
</Fragment> | |
</Grid> | |
<Spacer height={ GAP_PX }/> | |
<Grid columns={ 4 } gap={ GAP_PX }> | |
<Fragment> | |
{ articles.data.slice(0, 4).map(article => ( | |
<FeaturedArticle | |
article={ article } | |
onclick={ () => this.routeToArticlePage(router, article) } | |
/> | |
)) } | |
</Fragment> | |
</Grid> | |
<Spacer height={ GAP_PX }/> | |
<Grid columns={ 2 } gap={ GAP_PX }> | |
{ articles.data.slice(0, 2).map(article => ( | |
<FeaturedArticle | |
article={ article } | |
listing | |
onclick={ () => this.routeToArticlePage(router, article) }/> | |
)) } | |
</Grid> | |
<Spacer height={ GAP_PX }/> | |
<Grid columns={ 3 } gap={ GAP_PX }> | |
<Container> | |
<Grid columns={ 1 } gap={ GAP_PX }> | |
<Fragment> | |
{ articles.data.slice(0, 3).map(article => ( | |
<FeaturedExcerpt article={ article }/> | |
)) } | |
</Fragment> | |
</Grid> | |
</Container> | |
<Section glyph={ ON_DEMAND_GLYPH } heading={ ON_DEMAND } id={ ON_DEMAND_ID }> | |
<Grid columns={ 2 } gap={ GAP_PX }> | |
<Fragment> | |
{ videos.data.slice(0, 4).map(video => ( | |
<FeaturedVideo | |
landscape | |
onclick={ () => this.routeToVideoPage(router, video) } | |
video={ video }/> | |
)) } | |
</Fragment> | |
</Grid> | |
</Section> | |
</Grid> | |
</Section> | |
</Container> | |
] | |
} | |
protected theme() { | |
return createStyleSheet(css => { | |
css.selectHost(css => { | |
css.write(` | |
display: contents; | |
`) | |
}) | |
css.selectId(ON_DEMAND_ID, css => { | |
css.write(` | |
grid-column-end: span 2; | |
grid-column-start: 2; | |
grid-row-end: span; | |
`) | |
}) | |
}) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment