mirror of
https://github.com/primer/css.git
synced 2024-12-01 04:21:12 +03:00
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
import React from 'react'
|
|
import App, {Container} from 'next/app'
|
|
import {MDXProvider} from '@mdx-js/tag'
|
|
import Head from 'next/head'
|
|
import {withMDXLive} from 'mdx-live'
|
|
import getConfig from 'next/config'
|
|
import Octicon, {Pencil} from '@githubprimer/octicons-react'
|
|
import {basename, join} from 'path'
|
|
import * as primerComponents from '@primer/components'
|
|
import * as docComponents from '../src/components'
|
|
import {pathMap, requirePage} from '../src/utils'
|
|
|
|
import 'primer/index.scss'
|
|
|
|
const {BaseStyles, Box, Flex, Link, Text, theme} = primerComponents
|
|
const {SideNav, Header, IndexHero} = docComponents
|
|
|
|
const components = {
|
|
...docComponents,
|
|
...primerComponents,
|
|
Octicon,
|
|
// render links with our component
|
|
a: Link,
|
|
code: withMDXLive('pre'),
|
|
pre: props => props.children
|
|
}
|
|
|
|
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 filename = pathMap[pathname]
|
|
const {Component, page} = this.props
|
|
|
|
const meta = {}
|
|
if (filename) {
|
|
Object.assign(meta, requirePage(filename).meta)
|
|
}
|
|
|
|
return (
|
|
<BaseStyles style={{fontFamily: theme.fonts.normal}}>
|
|
<Container>
|
|
<Head>
|
|
<title>Primer CSS{meta.title ? ` / ${meta.title}` : null}</title>
|
|
</Head>
|
|
<Header />
|
|
<Flex display={['block', 'block', 'flex', 'flex']} flexDirection="row-reverse">
|
|
<Box width="100%">
|
|
{meta.hero ? <IndexHero /> : null}
|
|
<Box color="gray.9" maxWidth={1012} width="100%" my={6} mx="auto" px={6}>
|
|
<div className="markdown-body">
|
|
{meta.title ? <h1>{meta.title}</h1> : null}
|
|
<MDXProvider components={components}>
|
|
<Component {...page} />
|
|
<pre>meta: {JSON.stringify(meta, null, 2)}</pre>
|
|
</MDXProvider>
|
|
</div>
|
|
{/* TODO: bring back edit link! */}
|
|
</Box>
|
|
</Box>
|
|
<SideNav />
|
|
</Flex>
|
|
</Container>
|
|
</BaseStyles>
|
|
)
|
|
}
|
|
}
|