-
Notifications
You must be signed in to change notification settings - Fork 0
/
2022-06-23-enterjs-neues-in-react18.html
323 lines (270 loc) · 8.89 KB
/
2022-06-23-enterjs-neues-in-react18.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Neues in React 18</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"
/>
<link rel="stylesheet" href="slides/revealjs/reveal.js/dist/reset.css" />
<link rel="stylesheet" href="slides/revealjs/reveal.js/dist/reveal.css" />
<link
rel="stylesheet"
href="slides/revealjs/reveal.js/dist/theme/solarized.css"
/>
<!-- Theme used for syntax hislides/ghlighted code -->
<link
rel="stylesheet"
href="slides/revealjs/highlight-js-github-theme.css"
/>
<link rel="stylesheet" href="slides/revealjs/styles.css" />
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-state="title">
<h4
style="margin-bottom: 5rem; margin-top: 5rem; letter-spacing: 1px"
>
<span class="transparent-bg">
<a href="https://nilshartmann.net" target="_blank"
>Nils Hartmann</a
>
|
<a href="https://nilshartmann.net" target="_blank">
https://nilshartmann.net</a
>
|
<a href="https://twitter.com/nilshartmann" target="_blank"
>@nilshartmann</a
>
</span>
</h4>
<h2
class="title"
style="font-size: 11rem; font-weight: bold; margin-bottom: 5rem"
>
<b>Neues in React 18</b>
</h2>
<!-- <h3>
<span class="transparent-bg">23. Juni 2022</span>
</h3> -->
<h3 style="margin-bottom: 3rem">
<a
class="transparent-bg"
href="https://enterjs.de/veranstaltung-13824-0-neues-in-react-18.html"
>EnterJS, 23. Juni 2022 | Darmstadt</a
>
</h3>
<p style="margin-bottom: 3rem"></p>
<div>
<h3><span class="transparent-bg">Slides</span></h3>
<p>
<span class="transparent-bg">TODO</span>
</p>
</div>
</section>
<section>
<h2>Nils Hartmann</h2>
<p style="margin-top: 2rem">
<a href="https://nilshartmann.net" target="_blank"
>https://nilshartmann.net</a
>
/
<a href="https://twitter.com/nilshartmann" target="_blank"
>@nilshartmann</a
>
</p>
<p style="margin-top: 2rem">
<em
>Freiberuflicher Software-Entwickler, Berater und Trainer aus
Hamburg</em
>
</p>
<p></p>
<p style="margin-top: 5rem">
Java | JavaScript, TypeScript | React | GraphQL
</p>
<div style="display: flex; justify-content: center; margin-top: 2rem">
<div style="margin-left: 15px">
<a href="https://graphql.schule/video-kurs"
><img
style="max-height: 450px"
src="slides/images/screenshot-graphql-kurs.png"
/><br />https://graphql.schule/video-kurs</a
>
<br />
</div>
<!-- -->
<div style="margin-left: 100px">
<a href="https://reactbuch.de"
><img
style="max-height: 450px"
src="slides/images/react-buch-v2.jpg"
/><br />https://reactbuch.de</a
>
<br />
</div>
</div>
</section>
<section data-markdown>
<textarea data-template>
# ...
---
## Automatic Batching
* Mehrere set-State-Aufrufe werden zusammengefasst, wenn sie als Folge eines Events aufgerufen wurden (schon vor React 18):
* ```javascript
function PersonForm() {
const [firstname, setFirstname] = useState("");
const [lastname, setLastname] = useState("");
function handleClear() {
// EIN Renderzyklus
setFirstname("");
setLastname("");
}
return <form>
...
<button onClick={handleClear}>Clear</button>
</form>
}
```
---
## Automatic Batching
* **Ab React 18** werden auch mehrere set-State-Aufrufe zusammengefasst, wenn sie z.B. in Promises aufgerufen wurden:
* ```javascript
function Blog() {
const [post, setPost] = useState(null);
const [loading, setLoading] = useState("");
function loadPost() {
fetch("...")
.then(res => res.json())
.then(data => {
// EIN Renderzyklus (vor React 18: ZWEI Renderzyklen)
setPost(data);
setLoading(false);
})
}
return <div>
...
<button onClick={loadPost}>Load Blog Post</button>
</div>
}
```
---
## Neuer Strict-Mode
* Verwendung des StrictModes wie bisher:
* ```javascript
render(
<React.StrictMode>
<App/>
</React.StrictMode>
)
```
* Bisher wurde mit dem StrictMode jede Komponente zweimal **gerendert**
* Nun wird die Komponente nicht nur gerendert, sondern auch einmal **gemounted** (Effekte werden ausgeführt), ...
* ...wieder **entfernt** (Clean ups werden ausgeführt)...
* und dann mit selben State erneut **gemounted**
* Soll sicherstellen, dass Effekte (insb. Clean ups) korrekt durchgeführt werden
* Ihr müsst allerdings selbst prüfen, ob die Effekte korrekt "aufgeräumt" werden
---
## Neue Hooks
* Neuer Hook `useId`, um Server- und Client-seitig identische, eindeutige Ids zu generieren
* ```javascript
function Form() {
const infoId = React.useId();
return <form>
<label>
Title
<input aria-describedby={infoId} value="..." />
</label>
<span id={infoId} className="info">Enter new Title</span>
</form>;
}
```
* Verwendung für `id`-Attribute (nicht für `key`-Attribute)
* Außerdem neue Hooks für Libraries (`useSyncExternalStore` und `useInsertionEffect`)
---
# Concurrent Rendering
* ![RR](./slides/images/react-roadmap-2018.png)
* [Neues Rendering Verhalten, erstmals angekündigt Ende 2018](https://reactjs.org/blog/2018/11/27/react-16-roadmap.html)
* React kann mehrere "Versionen" der UI parallel erstellen bzw. vorhalten
https://reactjs.org/blog/2022/03/29/react-v18.html
## Transitions
* Kennzeichnung weniger dringender Aktualisierungen
* Rendern kann dann abgebrochen werden
* Bin nicht sicher, wie häufig man das Problem wirklich hat
* `useTransition`-Hook: alle State-Updates darin werden als "weniger dringend" angesehen
* ```javascript
function App() {
const [isPending, startTransition] = React.useTransition();
function handleChange(e) {
startTransition(() => {
set
})
}
}
```
---
## OffScreen
---
## Suspense Lazyloading Loading
---
## Suspense Data Loading
* Beispiel: React Query
---
### Suspense Data Loading mit React Query
* Beispiel zeigen
* App laden => Spinner!
* Post öffnen => Zwei Spinner, erst Artikel, dann Kommentare ....
* `PostPage`: Suspense um SinglePost packen
* Post öffnen => Loading, dann nur noch Spinner um KOmmentare
* Kommentare auch umschliessen
* Was man macht => fachliche Entscheidung!
---
## Server Components
* Experimental u.a Next JS
</textarea>
</section>
<!-- ============================================================================= -->
<section>
<h2 style="margin-bottom: 4rem">Vielen Dank 😊</h2>
<p style="margin-bottom: 2rem">
Wenn ihr noch Fragen habt, könnt ihr mich erreichen:
</p>
<p>
Mail:
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
Web:
<a href="https://nilshartmann.net" target="_blank"
>https://nilshartmann.net</a
>
</p>
<p>
Twitter:
<a href="https://twitter.com/nilshartmann" target="_blank"
>@nilshartmann</a
>
</p>
<p style="margin-top: 4rem">
Slides:
<a href="https://twitter.com/nilshartmann" target="_blank">TODO</a>
</p>
</section>
</div>
</div>
<script src="slides/revealjs/reveal.js/dist/reveal.js"></script>
<script src="slides/revealjs/reveal.js/plugin/notes/notes.js"></script>
<script src="slides/revealjs/reveal.js/plugin/markdown/markdown.js"></script>
<script src="slides/revealjs/reveal.js/plugin/highlight/highlight.js"></script>
<script src="slides/revealjs/config.js"></script>
</body>
</html>