This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
402 lines (331 loc) · 13.1 KB
/
index.html
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html>
<html lang="en">
<head>
<title>React-based application</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/@shower/ribbon/styles/styles.css">
<style>
.shower {
--slide-ratio: calc(16 / 9);
}
.slide {
padding: 10px 0 0 70px;
}
.slide::after {
left: initial;
right: 0;
width: calc(var(--ribbon-size) / 2);
height: calc(var(--ribbon-size) * 1);
padding-top: 0;
}
</style>
</head>
<body class="shower list">
<header class="caption">
<h1>React-based application.</h1>
<p>CSSSR, 2019</p>
</header>
<section class="slide" id="cover">
<h2 class="shout">React-based application</h2>
</section>
<!-- TOC (begin) -->
<section class="slide">
<h2>Примерный план</h2>
<ul>
<li>В чем проблема? Какие есть решения?</li>
<li>Почему CRA?</li>
<li>Redux</li>
<li>CSS, UI</li>
<li>Тестирование</li>
<li>Дальнейшее развитие приложения</li>
</ul>
</section>
<!-- TOC (end) -->
<!-- В чем проблема? (begin) -->
<section class="slide">
<h2>В чем проблема?</h2>
<ul>
<li class="next">React — только View</li>
<li class="next">А нужно:
<ul>
<li>роутинг;</li>
<li>управление состоянием;</li>
<li>синхронизация с бекендом;</li>
<li>инструменты отладки;</li>
<li>...</li>
</ul>
</li>
</ul>
</section>
<!-- В чем проблема? (end) -->
<!-- Решения (begin) -->
<section class="slide">
<h2>Google [react boilerplate]:</h2>
<p><span style="font-size: 8em;">~ 805 000</span></p>
<p>результатов</p>
</section>
<!-- Решения (end) -->
<!-- Решения (картинка) (begin) -->
<section class="slide">
<img src="./pictures/react-boilerplate-search-result.jpg" alt="react boilerplate search result" class="cover">
</section>
<!-- Решения (картинка) (end) -->
<!-- Решения (картинка) (begin) -->
<section class="slide">
<img src="./pictures/full-suite.jpg" alt="full-suite" class="cover">
</section>
<!-- Решения (картинка) (end) -->
<!-- Почему CRA? (begin) -->
<section class="slide">
<h2>Почему CRA?</h2>
<ul>
<li>Less to Learn (<code>babel</code>, <code>webpack</code>, <code>jest</code>, etc)
<img src="./pictures/set-env.jpeg" height="200px" />
</li>
<li>Only One Dependency (<code>react-scripts</code>)</li>
<li>No Lock-In (<code>eject</code>)</li>
<li>Easy to maintain (<code>react-scripts@latest</code>)</li>
</ul>
</section>
<!-- Почему CRA? (end) -->
<!-- Начинаем кодить (begin) -->
<section class="slide">
<h2>Начинаем кодить</h2>
<pre>
<code><b>npx</b> create-react-app my-app</code>
<code><b>cd</b> my-app</code>
<code><b>npm</b> start</code>
</pre>
<p style="margin-top: -30px; text-align: center;">или <a
href="https://codesandbox.io/s/prod-dream-z1tbq">codesandbox</a>
<img src="./pictures/CodeSandbox-react-template.png" />
</p>
</section>
<!-- Начинаем кодить (end) -->
<!-- Добавляем инструменты (begin) -->
<section class="slide">
<h2>Добавляем инструменты</h2>
<ul>
<li class="next"><a target="_blank" href="https://yarnpkg.com/en/package/json-server">json-server</a></li>
<li class="next"><a target="_blank" href="https://yarnpkg.com/en/package/faker">faker</a></li>
<li class="next">eslint (config)</li>
<li class="next">prettier (config)</li>
</ul>
<p class="next">
<a target="_blank" href="https://github.com/alexbaumgertner/modular-application-skeleton/tree/variant/simple">
modular-application-skeleton#variant/simple
</a>
</p>
</section>
<!-- Добавляем инструменты (end) -->
<!-- Добавляем инструменты для отладки (begin) -->
<section class="slide">
<h2>Добавляем инструменты для отладки</h2>
<ul>
<li><a target="_blank" href="https://github.com/facebook/react-devtools">React Developer Tools</a></li>
<li><a target="_blank" href="http://extension.remotedev.io">Redux DevTools</a></li>
<li><a target="_blank" href="https://github.com/tulios/json-viewer">json-viewer</a></li>
</ul>
</section>
<!-- Добавляем инструменты для отладки (end) -->
<!-- Redux: старт (begin) -->
<section class="slide">
<h2>Redux: старт</h2>
<p>1) Установка: <a target="_blank" href="https://redux.js.org/introduction/installation">redux</a>, <a
href="https://react-redux.js.org/introduction/quick-start">react-redux</a></p>
<pre>
<code><b>yarn</b> add redux react-redux -S</code>
</pre>
<p>2) Подключение: <a target="_blank" href="https://github.com/reduxjs/redux/tree/master/examples/real-world">reduxjs#examples/real-world</a>
</p>
</section>
<!-- Redux: старт (end) -->
<!-- Redux: получение данных (begin) -->
<section class="slide">
<h2>Redux: получение данных</h2>
<p>Redux thunk: <a target="_blank" href="https://github.com/reduxjs/redux-thunk#installation">install</a></p>
<code>yarn add redux-thunk</code>
<h3>Результат:</h3>
<p><a target="_blank" href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/2/files">modular-application-skeleton#variant/init-redux</a>
</p>
</section>
<!-- Redux: получение данных (end) -->
<!-- Redux init итог — картинка (begin) -->
<section class="slide">
<img src="pictures/init-redux.png" alt="init redux" class="cover">
</section>
<!-- Redux init итог — картинка (end) -->
<!-- Redux init итог — текст (begin) -->
<section class="slide">
<h2 class="shout shrink">Один CRUD — <br /> 300 строк кода</h2>
</section>
<!-- Redux init итог — текст (end) -->
<!-- 300 спартанцев (begin) -->
<section class="slide">
<img src="pictures/300-spartans.jpg" alt="300 spartans" class="cover">
</section>
<!-- 300 спартанцев (end) -->
<!-- redux-starter-kit (begin) -->
<section class="slide">
<img src="pictures/redux-starter-kit.png" alt="redux starter kit" class="cover">
</section>
<!-- redux-starter-kit (end) -->
<!-- redux-starter-kit, установка (begin) -->
<section class="slide">
<h2>redux-starter-kit, <a target="_blank"
href="https://redux-starter-kit.js.org/introduction/quick-start">установка</a></h2>
<p>
<code>
yarn add redux-starter-kit
</code>
<a target="_blank" href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/1/files">
<img src="./pictures/switch-to-redux-starter-kit__2019-05-22__12-41-38.png" height="360px" />
</a>
</p>
</section>
<!-- redux-starter-kit, установка (end) -->
<!-- Селекторы, мемоизация, иммутабельность (begin) -->
<section class="slide">
<h2><a target="_blank" href="https://redux-starter-kit.js.org/api/createselector">Селекторы</a>, мемоизация,
иммутабельность</h2>
<p>Селекторы — вычисления данных на основе state.
<br>
<a
target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/1/commits/ba4589c7f6dc63227fd434823f029508fe20de10">
<img src="./pictures/add-selectors.png" height="350px" />
</a>
</p>
</section>
<!-- Селекторы, мемоизация, иммутабельность (end) -->
<!-- Перерыв 5 мин (begin) -->
<section class="slide">
<h2 class="shout">Перерыв 5 мин</h2>
<p>Задавайте вопросы, за лучший будет приз!</p>
</section>
<!-- Перерыв 5 мин (end) -->
<!-- CSS (begin) -->
<section class="slide">
<h2>CSS</h2>
<ul>
<li class="next"><a target="_blank" href="https://wsd.events/2015/10/31/pres/css-modules/">css-modules</a></li>
<li class="next"><a target="_blank" href="https://ru.bem.info/methodology/">BEM</a></li>
<li class="next">
<a
target="_blank"
href="https://github.com/bem/bem-react/tree/master/packages/classname">
@bem-react/classname
</a>: нет поддержки css-modules
</li>
<li class="next">
<a target="_blank" href="https://github.com/mistakster/bem-cn-lite">
bem-cn-lite
</a>: нет поддержки css-modules
</li>
<li class="next" style="font-weight: bold;">
<a target="_blank" href="https://github.com/Connormiha/bem-css-modules">bem-css-modules</a>: есть поддержка
css-modules!
</li>
</ul>
</section>
<!-- CSS (end) -->
<!-- css-modules vs convention (begin) -->
<section class="slide">
<h2>css-modules vs pure BEM</h2>
<p>
<img src="./pictures/css-modules.png" />
</p>
<p>VS</p>
<p>
<img src="./pictures/bem-css-naming.png" />
<br>
<a
target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/1/commits/32a8d9e9286bffb775abd7b4e931805cdea4b725?file-filters%5B%5D=.css&file-filters%5B%5D=.js&file-filters%5B%5D=.json&file-filters%5B%5D=.jsx">
bem-css-naming
</a>
</p>
</section>
<!-- css-modules vs convention (end) -->
<!-- UI-библиотеки (begin) -->
<section class="slide">
<h2>UI-библиотеки</h2>
<ul>
<li><a target="_blank" href="https://react.semantic-ui.com">semantic-ui</a></li>
<li><a target="_blank" href="https://react-bootstrap.github.io">react-bootstrap</a></li>
<li><a target="_blank" href="https://material-ui.com">Material-UI</a></li>
<li class="next"><a target="_blank" href="https://ru.bem.info/technologies/bem-react/">
bem-react</a> (в стадии активной разработки)
</li>
</ul>
</section>
<!-- UI-библиотеки (end) -->
<!-- Тестирование (begin) -->
<section class="slide">
<h2>Тестирование</h2>
<ul>
<li><a target="_blank" href="https://jestjs.io">Jestjs</a>: unit, integration</li>
<li>
<a target="_blank" href="https://pptr.dev">Puppeteer</a>: end-to-end.
<a
target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/1/commits/d8c6573dd193b4fa4e61791fa33312928384eb44?file-filters%5B%5D=.js&file-filters%5B%5D=.json">
Пример
</a>
</li>
<li><a target="_blank" href="https://gemini-testing.github.io">Gemini</a> UI-lib (screenshots)</li>
</ul>
</section>
<!-- Тестирование (end) -->
<!-- CI (begin) -->
<section class="slide">
<h2>CI</h2>
<ul>
<li><a target="_blank" href="https://yarnpkg.com/en/package/husky">husky</a></li>
<li><a target="_blank" href="https://yarnpkg.com/en/package/lint-staged">lint-staged</a></li>
</ul>
</section>
<!-- CI (end) -->
<!-- Вопросы (begin) -->
<section class="slide">
<h2 class="shout">Секция вопросов и ответов</h2>
</section>
<!-- Вопросы (end) -->
<!-- Дальнейшее развитие приложения (begin) -->
<section class="slide">
<h2>Дальнейшее развитие приложения</h2>
<ul>
<li>Авторизация, <a href="https://auth0.com">auth0.com</a></li>
<li><a target="_blank" href="https://redux.js.org/recipes/server-rendering">Server Side Rendering</a></li>
<li><a target="_blank" href="https://redux-saga.js.org">redux-saga</a>: сложная бизнес-логика</li>
<li><a target="_blank" href="https://micro-frontends.org">микрофронтед</a>: разделение проекта между командами</li>
<li>
<a target="_blank" href="https://github.com/logux/logux">logux</a>:
<abbr
title="Conflict-free Replicated Data Types, что по-русски переводится примерно как Бесконфликтные реплицированные типы данных">
CRDT
</abbr>
</li>
<li>Routing (with Redux)</li>
<li><a target="_blank" href="https://reactjs.org/docs/code-splitting.html">Code Splitting</a></li>
</ul>
</section>
<!-- Дальнейшее развитие приложения (end) -->
<section class="slide">
<h2>Спасибо!</h2>
<img src="https://alexbaumgertner.github.io/photos/alexbaumgertner_2014.jpg" width="300" style="float: right;"
alt="alexbaumgertner">
<ul style="margin: 200px 0 0 0;">
<li><a target="_blank" href="https://csssr.com/ru/school">csssr.com/ru/school</a></li>
<li><a target="_blank" href="https://twitter.com/csssr_dev">twitter.com/csssr_dev</a></li>
<li><a target="_blank" href="mailto:[email protected]">[email protected]</a></li>
</ul>
</section>
<footer class="badge">
<a href="https://github.com/easy-deep-learning/react-based-app">Fork me on GitHub</a>
</footer>
<div class="progress"></div>
<script src="node_modules/shower-core/shower.min.js"></script>
</body>
</html>