1
1
mirror of https://github.com/primer/css.git synced 2024-12-03 03:33:40 +03:00
css/pages/_app.js

84 lines
2.7 KiB
JavaScript
Raw Normal View History

import React from 'react'
import App, {Container} from 'next/app'
import {MDXProvider} from '@mdx-js/tag'
import Head from 'next/head'
2018-12-21 01:29:18 +03:00
import {BaseStyles, BorderBox, Box, Flex, theme} from '@primer/components'
2019-02-05 00:04:24 +03:00
import {Header, PackageHeader, SideNav} from '../docs/components'
import getComponents from '../docs/markdown'
import {config, requirePage, rootPage} from '../docs/utils'
import {CONTENT_MAX_WIDTH} from '../docs/constants'
2019-02-05 02:46:56 +03:00
import '../src/index.scss'
export default class MyApp extends App {
static async getInitialProps({Component, ctx}) {
let page = {}
if (Component.getInitialProps) {
page = await Component.getInitialProps(ctx)
}
return {page}
}
render() {
// strip the trailing slash
const pathname = this.props.router.pathname.replace(/\/$/, '')
const {Component, page} = this.props
2019-01-11 01:19:31 +03:00
const node = rootPage.first(node => node.path === pathname) || {}
const {file, meta = {}} = node || {}
const components = getComponents(node)
2018-12-04 02:53:47 +03:00
2019-01-11 01:19:31 +03:00
const Hero = file ? requirePage(file).Hero : null
return (
<BaseStyles fontSize={2} style={{fontFamily: theme.fonts.normal}}>
<Container>
<Head>
2018-12-04 02:53:47 +03:00
<title>Primer CSS{meta.title ? ` / ${meta.title}` : null}</title>
</Head>
<Header />
2018-12-21 01:29:18 +03:00
<Flex
flexDirection={['column', 'column', 'column', 'row-reverse']}
alignContent="stretch"
justifyContent="space-between"
>
<Box width={['auto', 'auto', '100%']}>
{Hero ? <Hero /> : null}
<Box color="gray.9" maxWidth={['auto', 'auto', 'auto', CONTENT_MAX_WIDTH]} px={6} mx="auto" my={6}>
<div className="markdown-body">
{!meta.hero && meta.title ? <h1>{meta.title}</h1> : null}
2018-12-07 11:29:20 +03:00
<PackageHeader {...meta} />
<MDXProvider components={components}>
<Component {...page} />
</MDXProvider>
2019-01-08 23:12:35 +03:00
{config.production ? null : (
<details>
<summary>Metadata</summary>
<pre>{JSON.stringify(meta, null, 2)}</pre>
</details>
)}
</div>
2018-12-04 02:53:47 +03:00
{/* TODO: bring back edit link! */}
</Box>
</Box>
2018-12-21 01:29:18 +03:00
<BorderBox
width={['100%', '100%', 256]}
minWidth={256}
2018-12-21 01:29:18 +03:00
bg="gray.0"
borderColor="gray.2"
borderRadius={0}
border={0}
borderRight={1}
borderTop={[1, 1, 0, 0]}
>
2018-12-07 12:31:33 +03:00
<SideNav />
2018-12-21 01:29:18 +03:00
</BorderBox>
</Flex>
</Container>
</BaseStyles>
)
}
}