-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-1.html
368 lines (297 loc) · 8.84 KB
/
react-1.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match(/print-pdf/gi) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Заняття 4</h1>
<p>React</p>
</section>
<section>
<section>
<h3>Що таке React і нащо він нам потрібен?</h3>
</section>
<section>
<h3>SPA</h3>
<aside class="notes">Що це таке? Які переваги для користувача?</aside>
</section>
<section>
<h3>Зручно створювати динамічні сторінки</h3>
</section>
<section>
<h3>Віртуальний ДОМ</h3>
<aside class="notes">Чим відрізняється від звичайного дому? Розкажи про реконсілінг.</aside>
</section>
<section>
<h3>Компонентний(модульний) підхід</h3>
</section>
<section>
<h3>ВЕЛИИИКА екосистема</h3>
</section>
<section>
<h3>Хороше ком'юніті і документація</h3>
</section>
<section>
<h3>Гнучкість і варіантивність</h3>
<aside class="notes">Плюс і мінус, немає чіткої архітектури проекту, бо Реакт - це просто бібліотека</aside>
</section>
</section>
<section>
<section>
<h3>Як воно працює?</h3>
</section>
<section>
<h4>Рендеримо додаток</h4>
<pre><code class="jsx" data-line-numbers data-trim>
ReactDOM.render(
<h1>Декілька буквочок</h1>,
document.getElementById('root')
);
</code></pre>
</section>
</section>
<section>
<section>
<h3>JSX</h3>
</section>
<section>
<h4>Прості приклади</h4>
<pre><code class="jsx" data-line-numbers data-trim>
const greeting = <h1>Hello, stranger!</h1>;
const someNesting = <div>
<b>Steve</b>
<span>33</span>
</div>;
</code></pre>
</section>
<section>
<h4>Вставляємо дані</h4>
<pre><code class="jsx" data-line-numbers data-trim>
const name = "Joshua";
const greeting = <h1>Hello, {name}!</h1>;
const age = 33;
const toPercent = x => <span>{(x * 100).toFixed(0)}%</span>;
const card = (
<div>
<div>Age: {age || "None"}</div>
<b>Is old enough: {age > 18 ? "Yes" : "No"}</b>
<em>Luck: {toPercent(Math.random())}</em>
</div>
);
</code></pre>
</section>
<section>
<h4>Атрибути</h4>
<pre><code class="jsx" data-line-numbers data-trim>
const wrapper = <div className="wrapper"></div>;
const sameWrapper = <div className={"wrapper"}></div>;
const photoUrl = "http://someurl.com/photo/29p3457u6itny328405tb";
const photo = <img src={photoUrl} />;
</code></pre>
</section>
</section>
<section>
<section>
<h3>Стилізація</h3>
</section>
<section>
<h4>CSS/SASS/SCSS</h4>
<pre><code class="scss" data-line-numbers data-trim>
.card {
margin: 20px;
padding: 5px 15px;
&__title {
font-weight: 600;
font-size: 24px;
}
}
</code></pre>
<pre><code class="jsx" data-line-numbers data-trim>
import "./styles.scss";
const card = (
<div className="card">
<h4 className="card__title">Card title</h4>
</div>
);
</code></pre>
<aside class="notes">Переваги і недоліки</aside>
</section>
<section>
<h4>CSS Modules</h4>
<pre><code class="scss" data-line-numbers data-trim>
.card {
margin: 20px;
padding: 5px 15px;
}
.cardTitle {
font-weight: 600;
font-size: 24px;
}
</code></pre>
<pre><code class="jsx" data-line-numbers data-trim>
import classes from "./styles.module.scss";
const card = (
<div className={classes.card}>
<h4 className={classes.cardTitle}>Card title</h4>
</div>
);
</code></pre>
<aside class="notes">Переваги і недоліки</aside>
</section>
<section>
<h4>CSS-in-JS</h4>
<pre><code class="jsx" data-line-numbers data-trim>
import styled from "styled-components";
const CardWrapper = styled.div`
margin: 20px;
padding: 5px 15px;
`;
const CardTitle = styled.h4`
font-weight: 600;
font-size: 24px;
`;
const card = (
<CardWrapper>
<CardTitle>Card title</CardTitle>
</CardWrapper>
);
</code></pre>
<aside class="notes">Переваги і недоліки</aside>
</section>
</section>
<section>
<section>
<h3>Компоненти і їх властивості</h3>
</section>
<section>
<h4>Використовуємо класи</h4>
<pre><code class="jsx" data-line-numbers data-trim>
class Hello extends React.Component {
render() {
return <h1>Hello world!</h1>;
}
}
</code></pre>
</section>
<section>
<h4>Використовуємо функції</h4>
<pre><code class="jsx" data-line-numbers data-trim>
const Hello = () => <h1>Hello world!</h1>;
</code></pre>
<aside class="notes">Коли що використовувати?</aside>
</section>
<section>
<h4>Пропси</h4>
<pre><code class="jsx" data-line-numbers data-trim>
const Hello = props => <h1>Hello {props.name}!<h1>;
const Greeting = () => (
<div>
<Hello name="Steve"></Hello>
<Hello name="John"></Hello>
<Hello name="Luis"></Hello>
</div>
);
</code></pre>
</section>
<section>
<h4>Пропси у класах</h4>
<pre><code class="jsx" data-line-numbers data-trim>
class Hello extends React.Component {
render() {
return <h1>Hello {this.props.name}!<h1>;
}
}
const Greeting = () => (
<div>
<Hello name="Steve" />
<Hello name="John" />
<Hello name="Luis" />
</div>
);
</code></pre>
</section>
<section>
<h4>Прокидаємо компоненти в компоненти</h4>
<pre><code class="jsx" data-line-numbers data-trim>
const Layout = props => (
<div className="mega-cool-beautiful-wrapper">
{props.children}
</div>
);
const App = () => (
<Layout>
<h2>Some stuff here</h2>
<h2>Some stuff there</h2>
</Layout>
);
</code></pre>
</section>
<section>
<h4>State</h4>
<pre><code class="jsx" data-line-numbers data-trim>
class Hello extends React.Component {
constructor() {
this.state = {
name: 'John'
};
}
someMethod = () => {
this.setState({ name: 'Alex' }, () => { /* do some some after setState */ });
// OR
this.setState(state => ({ name: 'Alex' }));
};
render() {
return <h1>Hello {this.state.name}!<h1>;
}
}
</code></pre>
</section>
<section>
<h4>useState</h4>
<pre><code class="jsx" data-line-numbers data-trim>
import React, { useState } from "react";
const Hello = () => {
const [name, setName] = useState('John');
const someFunc = () => setName('Alex');
return <h1>Hello {name}!<h1>;
};
</code></pre>
</section>
</section>
</div>
</div>
<script src="js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
hash: true,
dependencies: [
{src: 'plugin/markdown/marked.js'},
{src: 'plugin/markdown/markdown.js'},
{src: 'plugin/highlight/highlight.js'},
{src: 'plugin/notes/notes.js', async: true}
]
});
</script>
</body>
</html>