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
/
ssr-code-split-lazy_load.html
374 lines (314 loc) · 11.8 KB
/
ssr-code-split-lazy_load.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
<!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>RBA: code splitting, SSR, lazy-loading</h1>
<p>CSSSR, 2019</p>
</header>
<section class="slide">
<h2 class="shout">
React <br>
Based <br>
Application
</h2>
</section>
<section class="slide" id="cover">
<h2 class="shout">RBA: <br>CS, SSR</h2>
</section>
<!-- TOC (begin) -->
<section class="slide">
<h2>Примерный план</h2>
<ul>
<li>В прошлой серии</li>
<li>Профилирование</li>
<li>Code splitting</li>
<li>SSR: что это и зачем
<ul>
<li>CRA + ?</li>
<li>Next JS</li>
</ul>
</li>
<li>Дальнейшее развитие приложения</li>
</ul>
</section>
<!-- TOC (end) -->
<!-- В прошлой серии (begin) -->
<section class="slide">
<h2>В прошлой серии</h2>
<p>Построили каркас приложения:</p>
<ul>
<li><a href="https://facebook.github.io/create-react-app/" target="_blank">create react app</a>
</li>
<li>
<a href="https://redux.js.org" target="_blank">redux</a>,
<a href="https://redux-starter-kit.js.org"
target="_blank">redux-starter-kit</a></li>
<li><a href="https://reacttraining.com/react-router/web" target="_blank">react-router</a></li>
<li><a href="https://react.semantic-ui.com" target="_blank">semantic-ui-react</a></li>
<li><a href="https://github.com/Marak/faker.js" target="_blank">faker</a>,
<a href="https://github.com/typicode/json-server" target="_blank">json-server</a></li>
</ul>
</section>
<!-- В прошлой серии (end) -->
<!-- Следующие шаги (begin) -->
<section class="slide">
<h2 class="shout">Следующие шаги</h2>
</section>
<!-- Следующие шаги (end) -->
<!-- Добавление контента (begin) -->
<section class="slide">
<h2>Добавление контента</h2>
<p>
<a
target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/12/files">
feature/add-content
</a>
</p>
<img src="./pictures/add-content.png" alt="Добавление контента" width="90%">
</section>
<!-- Добавление контента (end) -->
<!-- В чем проблема: весь контент грузится сразу (begin) -->
<section class="slide">
<h2>В чем проблема: весь контент грузится сразу</h2>
<p>
<img src="./pictures/load-all-content.png" alt="весь контент грузится сразу" width="90%">
</p>
</section>
<!-- В чем проблема: весь контент грузится сразу (end) -->
<!-- Решение: lazy loading (begin) -->
<section class="slide">
<h2>Решение: lazy loading</h2>
<p>
Загрузка изображений только при попадании во вьюпорт:</p>
<ul>
<li>
<a target="_blank"
href="https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/">
Lazy Loading Images and Video</a>
</li>
<li>
<a target="_blank"
href="https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API">
Intersection Observer API Doc
</a>,
<a
target="_blank"
href="https://thebuilder.github.io/react-intersection-observer/?path=/story/useinview-hook--basic">React Example</a>
</li>
<li><a href="https://fpapado.github.io/react-lazy-images/">react-lazy-images</a> — библиотека для ленивой загрузки</li>
</ul>
<p><a target="_blank" href="http://localhost:3000/catalog/98e79042-a712-403b-9808-2cae1aee1364">Демо</a></p>
<p>PS: <a target="_blank" href="https://griddlegriddle.github.io/v0-docs/infiniteScroll.html">Infinite Scroll</a></p>
</section>
<!-- Решение: lazy loading (end) -->
<!-- react-lazy-images (begin) -->
<section class="slide">
<img src="./pictures/add-lazy-loading.png" alt="lazy-loading" class="cover">
</section>
<!-- react-lazy-images (end) -->
<!-- Добавление разделов (begin) -->
<section class="slide">
<h2>Добавление разделов</h2>
<p>
<a target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/tree/feature/add-sections">feature/add-sections</a>
</p>
<img src="./pictures/add-sections.png" alt="Добавление разделов">
</section>
<!-- Добавление разделов (end) -->
<!-- Добавление функциональности (begin) -->
<section class="slide">
<h2>Добавление функциональности</h2>
<p>
<a
target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/tree/feature/add-markdown">
feature/add-markdown
</a>
</p>
<img width="90%" src="./pictures/add-markdown-support.png" alt="Добавление функциональности">
</section>
<!-- Добавление функциональности (end) -->
<!-- В чем проблема: один бандл (begin) -->
<section class="slide">
<h2>В чем проблема: один бандл</h2>
<p>Профилирование</p>
<mark>sh:</mark>
<br>
<code>
yarn add source-map-explorer
</code>
<br>
<br>
<mark>package.json</mark>
<br>
<code>
"analyze": "source-map-explorer 'build/static/js/*.js'",
</code>
</section>
<!-- В чем проблема: один бандл (end) -->
<!-- Результат профилирования (begin) -->
<section class="slide">
<img src="./pictures/prod-bundle-size-libs.png" alt="Результат профилирования" class="cover">
</section>
<!-- Результат профилирования (end) -->
<!-- Решение: code splitting (begin) -->
<section class="slide">
<h2>Решение: code splitting</h2>
<p>React:
<a href="https://reactjs.org/docs/react-api.html#suspense" target="_blank">Suspense</a>,
<a href="https://reactjs.org/docs/react-api.html#reactlazy" target="_blank">Lazy</a>
<br>
<a target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/11/files">
feature/add-code-splitting
</a>
</p>
<a target="_blank"
href="https://github.com/alexbaumgertner/modular-application-skeleton/pull/11/files">
<img src="./pictures/add-code-splitting.png" alt="code splitting" width="90%">
</a>
</section>
<!-- Решение: code splitting (end) -->
<!-- Code splitting demo (begin) -->
<section class="slide">
<img src="./pictures/code-splitting-chunks.png" alt="Code splitting demo" class="cover" height="95%">
</section>
<!-- Code splitting demo (end) -->
<!-- В чем проблема: рендер в браузере (begin) -->
<section class="slide">
<h2>В чем проблема: рендер в браузере</h2>
<ul>
<li class="next">индексация поисковиками;</li>
<li class="next">делиться в соц-сетях;</li>
<li class="next">слабые устройства;</li>
<li class="next">много js-кода;</li>
<li class="next">...</li>
</ul>
</section>
<!-- В чем проблема: рендер в браузере (end) -->
<!-- Решение: SSR (begin) -->
<section class="slide">
<h2>Решение: SSR</h2>
<p>server side rendering:</p>
<ul>
<li>принять запрос</li>
<li>получить контекст (route, cookie, body...)</li>
<li>собрать данные</li>
<li>отправить клиенту данные и текущее состояние (state)</li>
<li>не отправлять лишние данные</li>
</ul>
</section>
<!-- Решение: SSR (end) -->
<!-- Решения (begin) -->
<section class="slide">
<h2>SSR:</h2>
<p><span style="font-size: 8em;">~ 100 500</span></p>
<p>статей</p>
</section>
<!-- Решения (end) -->
<!-- react lazy (begin) -->
<section class="slide">
<img src="pictures/react-lazy-does-not-support-ssr.png" alt="" class="cover">
</section>
<!-- react lazy (end) -->
<!-- Demotivated nothing done (begin) -->
<section class="slide">
<img src="./pictures/demotivator-cat-nothing-done.jpg" alt="Demotivated nothing done"
class="cover">
</section>
<!-- Demotivated nothing done (end) -->
<!-- Готовые решения (begin) -->
<section class="slide">
<h2>Готовые решения</h2>
<ul>
<li><a href="https://github.com/cereallarceny/cra-ssr">cereallarceny/cra-ssr</a></li>
<li><a href="https://github.com/jaredpalmer/razzle">Razzle</a></li>
<li><a href="https://react-server.io">React Server</a></li>
<li><a href="https://github.com/jaredpalmer/after.js">After.js</a></li>
<li><a href="https://nextjs.org">Next.js</a></li>
<li><strong><a href="https://github.com/zeit/next.js/tree/master/examples/with-redux-thunk">Next.js with-redux-thunk</a></strong></li>
</ul>
</section>
<!-- Готовые решения (end) -->
<!-- Полезные материалы (begin) -->
<section class="slide">
<h2>Полезные материалы</h2>
<ul>
<li><a href="https://habr.com/ru/post/323458/">Habr: Что взять за основу React приложения</a>
</li>
<li><a
href="https://medium.com/@cereallarceny/server-side-rendering-in-create-react-app-with-all-the-goodies-without-ejecting-4c889d7db25e">
SSR with CRA, code-splitting, React Router, Helmet, Redux, and Thunk</a></li>
<li><a href="https://github.com/sharegate/craco">
Create React App Configuration Override
</a></li>
<li><a
href="https://hackernoon.com/lazy-loading-and-preloading-components-in-react-16-6-804de091c82d">Lazy loading (and preloading) components in React 16.6</a>
</li>
<li></li>
<li></li>
<li></li>
</ul>
</section>
<!-- Полезные материалы (end) -->
<!-- Вопросы (begin) -->
<section class="slide">
<h2 class="shout">Секция вопросов и ответов</h2>
</section>
<!-- Вопросы (end) -->
<!-- Дальнейшее развитие приложения (begin) -->
<section class="slide">
<h2>Дальнейшее развитие приложения</h2>
<ul>
<li class="next">SSR :)</li>
<li class="next">Авторизация
<ul>
<li class="next">sessions</li>
<li class="next">jwt</li>
<li class="next">open ID</li>
</ul>
</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>