-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlayout.js
106 lines (92 loc) · 2.21 KB
/
layout.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// @flow
import React from 'react'
import type { Children } from 'react'
import classnames from 'classnames'
import Nav from './nav'
import Chap from './chap'
type NavItem = Object & {
[key: string]: string
}
type Author = {
url?: string,
name?: string
}
type RepositoryType = 'git' | 'svn'
type Repository =
| string
| {
type: RepositoryType,
url: string
}
type Pkg = {
name: string,
homepage?: string,
author?: Author,
repository: Repository
}
type Props = {
children?: Children,
title: string,
className?: string,
toc: NavItem,
pkg: Pkg,
root: string
}
// @TODO need to improve performance
const fixURI = (url: string = '') => {
let arr = url.split('/')
let res = arr.map(dir => {
return encodeURIComponent(dir)
})
return res.join('/')
}
export default ({
children,
title = '',
className,
toc = {},
pkg,
root = ''
}: Props) => {
return (
<div className={className}>
<header className="site-header">
<h1><a href={pkg.homepage}>{pkg.name}</a></h1>
<Nav {...pkg} />
</header>
<section className="row main">
<aside className="col-xs-12 col-sm-3 col-md-3 col-lg-3">
{Object.keys(toc).map((key: string, i: number) => {
let nav: NavItem = toc[key]
return (
<Chap title={key === '.' ? '' : key} key={i}>
{Object.keys(nav).map((label: string) => {
let url = `${root}${nav[label].replace(/\.md/g, '.html')}`
return (
<li
key={label}
className={classnames({ active: title === label })}
>
<a href={fixURI(url)}>
{label}
</a>
</li>
)
})}
</Chap>
)
})}
</aside>
<article className="col-xs-12 col-sm-9 col-md-9 col-lg-9">
{children}
</article>
</section>
{pkg.author
? <footer>
© 2017 <a href={pkg.author.url}>{pkg.author.name || pkg.name}</a>
. All rights reserved.
</footer>
: null}
</div>
)
}