-
-
Notifications
You must be signed in to change notification settings - Fork 895
/
Copy pathbook.js
206 lines (190 loc) · 6.32 KB
/
book.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import PropTypes from 'prop-types';
import Head from 'next/head';
import Link from 'next/link';
import Grid from 'material-ui/Grid';
import Avatar from 'material-ui/Avatar';
import Button from 'material-ui/Button';
import Header from '../components/HomeHeader';
import Footer from '../components/HomeFooter';
import TOC from '../components/TOC';
import BookReviews from '../components/BookReviews';
import {
styleBigAvatar,
styleRaisedButton,
styleHomepageFeature,
styleH1,
} from '../components/SharedStyles';
import withLayout from '../lib/withLayout';
import withAuth from '../lib/withAuth';
import { getTableOfContents, getBookReviews } from '../lib/api/public';
const styleAuthor = {
textAlign: 'center',
padding: '10px 10%',
};
const Book = ({ user, toc, reviews }) => (
<div>
<Head>
<title>Learn how to build a JavaScript web app from scratch</title>
<meta
name="description"
content="Learn how to build a complete web app with a modern JavaScript stack. React, Material UI, Next, Express, Mongoose, and MongoDB. Integrated with AWS SES, Github, Google OAuth, Stripe, and MailChimp."
/>
</Head>
<Header user={user} />
<div style={{ padding: '10px 8%', fontSize: '15px' }}>
<Grid container direction="row" justify="space-around" align="flex-start">
<Grid item sm={12} xs={12} style={{ textAlign: 'center' }}>
<br />
<p style={{ margin: '45px auto', fontSize: '44px', fontWeight: '400' }}>Our Book</p>
<p>
Learn how to build a full-stack JavaScript web application from scratch.<br />
You'll go from 0 lines of code in Chapter 1 to over 12,000 lines of code by Chapter
8.
</p>
<p style={{ textAlign: 'center' }}>
<Link
prefetch
as="/books/builder-book/introduction"
href="/public/read-chapter?bookSlug=builder-book&chapterSlug=introduction"
>
<Button variant="raised" color="primary" style={styleRaisedButton}>
Read Preview
</Button>
</Link>
<a
href="https://github.com/builderbook/builderbook/tree/master/book"
target="_blank"
rel="noopener noreferrer"
>
<Button variant="raised" color="secondary" style={styleRaisedButton}>
Book Code
</Button>
</a>
</p>
</Grid>
</Grid>
<h1 style={styleH1}>What You'll Learn</h1>
<Grid container direction="row" justify="space-around" align="flex-start">
<Grid item sm={6} xs={12} style={styleHomepageFeature}>
<p>
<b>Modern JavaScript stack</b>
</p>
<p>
Learn how to build a web app with React, Material-UI, Next, Express, Mongoose, and
MongoDB. We keep our book up-to-date with the latest versions.
</p>
</Grid>
<Grid item sm={6} xs={12} style={styleHomepageFeature}>
<p>
<b>Popular third party APIs</b>
</p>
<p>
Learn how to integrate a web app with Google for user authentication, Github for
markdown and collaboration, AWS SES for transactional emails, MailChimp for newsletters,
and Stripe for selling.
</p>
</Grid>
</Grid>
<br />
<div>
<BookReviews reviewsArray={reviews} numberOfReviews={8} />
</div>
<br />
<div>
<TOC toc={toc} bookSlug="builder-book" />
</div>
<br />
<h1 style={styleH1}>Authors</h1>
<div style={{ textAlign: 'center' }}>
Together, we've built
<a
href="https://github.com/builderbook/builderbook"
target="_blank"
rel="noopener noreferrer"
>
{' '}
Builder Book
</a>{' '}
and
<a href="https://findharbor.com" target="_blank" rel="noopener noreferrer">
{' '}
Harbor
</a>. Stay tuned for
<a href="https://github.com/builderbook/async" target="_blank" rel="noopener noreferrer">
{' '}
Async
</a>.
</div>
<br />
<Grid container direction="row" justify="space-around" align="flex-start">
<Grid item sm={6} xs={12} style={styleAuthor}>
<Avatar
src="https://storage.googleapis.com/builderbook/timur-picture.png"
style={styleBigAvatar}
alt="Timur Zhiyentayev"
/>
<p>
<a href="https://github.com/tima101" target="_blank" rel="noopener noreferrer">
Timur Zhiyentayev
</a>
<br />
Vancouver, WA
</p>
<p>
Tima is a JavaScript web developer. He likes learning any technology that improves
end-user experience.
</p>
</Grid>
<Grid item sm={6} xs={12} style={styleAuthor}>
<Avatar
src="https://storage.googleapis.com/builderbook/kelly-picture.png"
style={styleBigAvatar}
alt="Kelly Burke"
/>
<p>
<a href="https://github.com/klyburke" target="_blank" rel="noopener noreferrer">
Kelly Burke
</a>
<br />
Vancouver, WA
</p>
<p>
Kelly is a front-end developer. She likes using React and Material Design and enjoys
solving UX problems.
</p>
</Grid>
</Grid>
<br />
</div>
<Footer />
</div>
);
Book.propTypes = {
user: PropTypes.shape({
_id: PropTypes.string.isRequired,
}),
toc: PropTypes.arrayOf(PropTypes.shape({
title: PropTypes.string.isRequired,
})).isRequired,
reviews: PropTypes.arrayOf(PropTypes.object)
.isRequired,
};
Book.defaultProps = {
user: null,
};
Book.getInitialProps = async function getInitialProps() {
let toc = [];
let reviews = [];
try {
toc = await getTableOfContents({ slug: 'builder-book' });
} catch (error) {
console.log(error); // eslint-disable-line
}
try {
reviews = await getBookReviews({ slug: 'builder-book' });
} catch (error) {
console.log(error); // eslint-disable-line
}
return { toc, reviews };
};
export default withAuth(withLayout(Book, { noHeader: true }), { loginRequired: false });