summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-theme-default/src/components/Summary.js
blob: d0fbde63621ce6640767bbc48e1f9743f07eaa16 (plain)
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
107
108
109
110
111
const classNames = require('classnames');
const GitBook = require('gitbook-core');
const { React } = GitBook;

let SummaryArticle = React.createClass({
    propTypes: {
        active: React.PropTypes.bool,
        article: GitBook.Shapes.SummaryArticle
    },

    render() {
        const { article, active } = this.props;
        const className = classNames('SummaryArticle', {
            active
        });

        return (
            <GitBook.InjectedComponent matching={{ role: 'summary:article' }} props={this.props}>
                <li className={className}>
                    {article.ref ?
                        <GitBook.Link to={article}>{article.title}</GitBook.Link>
                        : <span>{article.title}</span>}
                </li>
            </GitBook.InjectedComponent>
        );
    }
});
SummaryArticle = GitBook.connect(SummaryArticle, ({page}, {article}) => {
    return {
        active: page.level === article.level
    };
});

const SummaryArticles = React.createClass({
    propTypes: {
        articles: GitBook.Shapes.listOf(GitBook.Shapes.SummaryArticle)
    },

    render() {
        const { articles } = this.props;

        return (
            <GitBook.InjectedComponent matching={{ role: 'summary:articles' }} props={this.props}>
                <ul className="SummaryArticles">
                    {articles.map(article => <SummaryArticle key={article.level} article={article} />)}
                </ul>
            </GitBook.InjectedComponent>
        );
    }
});

const SummaryPart = React.createClass({
    propTypes: {
        part: GitBook.Shapes.SummaryPart
    },

    render() {
        const { part } = this.props;
        const { title, articles } = part;

        const titleEL = title ? <h2 className="SummaryPart-Title">{title}</h2> : null;

        return (
            <GitBook.InjectedComponent matching={{ role: 'summary:part' }} props={this.props}>
                <div className="SummaryPart">
                    {titleEL}
                    <SummaryArticles articles={articles} />
                </div>
            </GitBook.InjectedComponent>
        );
    }
});

const SummaryParts = React.createClass({
    propTypes: {
        parts: GitBook.Shapes.listOf(GitBook.Shapes.SummaryPart)
    },

    render() {
        const { parts } = this.props;

        return (
            <GitBook.InjectedComponent matching={{ role: 'summary:parts' }} props={this.props}>
                <div className="SummaryParts">
                    {parts.map((part, i) => <SummaryPart key={i} part={part} />)}
                </div>
            </GitBook.InjectedComponent>
        );
    }
});

const Summary = React.createClass({
    propTypes: {
        summary: GitBook.Shapes.Summary
    },

    render() {
        const { summary } = this.props;
        const { parts } = summary;

        return (
            <GitBook.InjectedComponent matching={{ role: 'summary:container' }} props={this.props}>
                <div className="Summary book-summary">
                    <SummaryParts parts={parts} />
                </div>
            </GitBook.InjectedComponent>
        );
    }
});

module.exports = Summary;