-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
3140 lines (2647 loc) · 123 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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>TypeScript</title>
<link rel="stylesheet" href="reveal/css/reset.css">
<link rel="stylesheet" href="reveal/css/reveal.css">
<link rel="stylesheet" href="reveal/css/kontur.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="reveal/css/idea-for-light.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 ) ? 'reveal/css/print/pdf.css' : 'reveal/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body class="has-light-background">
<div class="reveal"><div class="slides">
<section data-markdown><script type="text/template">
# TypeScript
<a href="https://github.com/kontur-web-courses/typescript" style="display: block; text-align: center">https://github.com/kontur-web-courses/typescript</a>
</script></section>
<section>
<section data-markdown><script type="text/template">
## Введение
</script></section>
<section data-markdown><script type="text/template">
### Проблема JS
```js
const str = '2468';
const res = str.split('').reduce(sum);
function sum (a, b) {
return a + b;
}
console.log(res);
```
</script></section>
<section data-markdown><script type="text/template">
### И еще проблема
```js
function getUserName(id, source) {
/* Тут какой-то код */
}
function formatDate(date, formatType) {
/* Тут какой-то код */
}
```
Что принимают эти функции вторым аргументом?
</script></section>
<section data-markdown><script type="text/template">
### Почему существуют такие проблемы?
### Как можно от них избавиться?
</script></section>
<section data-markdown><script type="text/template">
### История решений
#### 1. JSDoc
```js
/**
* Функция для форматирования даты в тот вид, который надо показывать на странице
* @param {Date} date — дата, которую надо отформатировать
* @param {string} formatType — формат: строка вида "DD.MM.YYYY"
*/
function formatDate(date, formatType) {
/* Тут какой-то код */
}
```
![hint in vscode](img/jsdoc-hint.png)
</script></section>
<section data-markdown><script type="text/template">
### История решений
#### 2. Dart
Язык программирования от Google:
- статическая типизация
- работает в браузере
- компилируется в JS
```js
string function formatDate(Date date, string formatType) {
/* Тут какой-то код */
}
```
</script></section>
<section data-markdown><script type="text/template">
### История решений
#### 3. React.propTypes
```js
class MyComponent extends React.Component {}
MyComponent.propTypes = {
name: PropTypes.string,
onClick: PropTypes.func,
}
```
</script></section>
<section data-markdown><script type="text/template">
### История решений
#### 4. Flow
```js
// @flow
function formatDate(date: Date, formatType: string): string {
/* Тут какой-то код */
}
formatDate(new Date(), {day: 'full'}); // Error!
```
</script></section>
<section data-markdown><script type="text/template">
### История решений
#### 5. TypeScript
- статически типизирован
- компилируется в JS
- является стандартом де-факто для крупных приложений
</script></section>
<section data-markdown><script type="text/template">
### TypeScript
Был создан, чтобы добавить типизацию к JS.
Поэтому у TS очень гибкая и удобная система типов.
</script></section>
</section>
<section>
<section data-markdown><script type="text/template">
## Инфраструктура для TS
</script></section>
<section data-markdown><script type="text/template">
### Официальный сайт
Всю необходимую информацию о TypeScript можно найти на [официальном сайте](https://www.typescriptlang.org/).
Здесь есть: документация, гайды по настройке, ссылки для скачивания и т.д.
</script></section>
<section data-markdown><script type="text/template">
### Песочница
Для проверки идей стоит использовать официальную песочницу [TypeScript Playground](https://www.typescriptlang.org/play/)
Именно в ней будут находиться почти все задания нашего занятия.
</script></section>
<section data-markdown><script type="text/template">
### Реальные проекты
В реальных проектах используется [tsconfig.json](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html)
В этом файле хранится конфигурация для компилятора TypeScript. Например, в нем можно сконфигурировать:
- в какую версию ES компилировать TypeScript (ES5, ES6, ...)
- нужно ли генерировать SourceMap-ы
- какие файлы (по каким путям) нужно компилировать
- ...
Для более подробной информации о возможностях конфигурации TypeScript можно узнать на официальном сайте.
</script></section>
<section data-markdown><script type="text/template">
### Генерация tsconfig.json
tsconfig.json можно создать и заполнить вручную. А можно выполнить команду
```
tsc --init
```
и компилятор сгенерирует файл конфигурации с дефолтными настройками.
</script></section>
<section data-markdown><script type="text/template">
### Чем компилировать TS
- `tsc — TypeScript Compiler`
Подходит для приложений без фреймворков, которые просто нужно скомпилировать TS -> JS
- `ts-loader` для webpack
Подходит для приложений с реактом или другими фреймворками
- `@babel/preset-typescript`
Подходит в тех случаях, когда в сборке TS -> готовый бандл много шагов, чтобы не было проблем на стыке шагов.
- `альтернативные решения`
Если у вас легаси или код на каких-то редких технологиях, то для них наверняка есть свои решения.
</script></section>
</section>
<section>
<section data-markdown><script type="text/template">
## Простые типы
</script></section>
<section data-markdown><script type="text/template">
### Синтаксис
Пример объявления переменной в TypeScript:
```ts
const a: number = 10;
```
Тип описывается после символа `:`.
Примитивные типы пишутся с маленькой буквы.
</script></section>
<section data-markdown><script type="text/template">
### Примитивы
```ts
const a: number = 10;
const b: string = 'abc';
const c: boolean = a < 30;
```
</script></section>
<section data-markdown><script type="text/template">
### Пробуем обмануть систему
```ts
const a: number = 'abc';
```
<img src="img/wrongtype.png" class="fragment">
</script></section>
<section data-markdown><script type="text/template">
### Массивы
```ts
const stringArr: string[] = ['abc', 's'];
const numberArr: number[] = [1, 3 + 5];
const booleanArr: boolean[] = [true, 0 > 15, 'abc' === 'abc'];
```
</script></section>
<section data-markdown><script type="text/template">
### Массивы, альтернативный синтаксис
Иногда вы можете встретить другой синтаксис описания массивов:
```ts
const stringArr: Array<string> = ['abc', 's'];
```
Про этот синтаксис поговорим дальше, а пока будем пользоваться синтаксисом `string[]`.
</script></section>
<section data-markdown data-transition="slide none"><script type="text/template">
### Массивы, что можно сложить внутрь
Валидны ли эти конструкции?
```ts
const a: number[] = [1, 2, 3, "4"]; // ?
const b: number[] = []; // ?
```
</script></section>
<section data-markdown data-transition="none slide"><script type="text/template">
### Массивы, что можно сложить внутрь
Валидны ли эти конструкции?
```ts
const a: number[] = [1, 2, 3, "4"]; // Error: Type 'string' is not assignable to type 'number'.(2322)
const b: number[] = []; // Все нормально
```
</script></section>
<section data-markdown><script type="text/template">
### Что делать, если надо сложить значения разного типа?
```ts
const user: ? = ['Всеволод', 19, 'Екатеринбург', true];
```
</script></section>
<section data-markdown><script type="text/template">
### Tuple (кортеж)
```ts
const user:
[string, number, string, boolean]
= ['Всеволод', 19, 'Екатеринбург', true];
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что делать, если надо описать массив внутри кортежа?
```ts
const a: ? = [['Иван', 'Петров'], 'user', [14, 21]];
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что делать, если надо описать массив внутри кортежа
```ts
const a:
[[string, string], string, number[]]
= [['Иван', 'Петров'], 'user', [14, 21]];
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что можно сложить в tuple?
Валидны ли эти конструкции?
```ts
const a: [number] = []; // ?
const b: [number] = ["123"];// ?
const c: [number] = [1, 2]; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что можно сложить в tuple
```ts
const a: [number] = []; // Error: Property '0' is missing in type '[]' but required in type '[number]'.(2741)
const b: [number] = ["123"];// Error: Type 'string' is not assignable to type 'number'.(2322)
const c: [number] = [1, 2]; /* Error:
Type '[number, number]' is not assignable to type '[number]'.
Types of property 'length' are incompatible.
Type '2' is not assignable to type '1'.(2322)
*/
```
</script></section>
<section data-markdown><script type="text/template">
### null и undefined
В JS null и undefined — примитивные типы, содержащие по одному значению в каждом типе. Такие же типы есть и в TS:
```ts
const a: null = null; // Вряд ли вам это понадобится
const b: undefined = undefined; // И это тоже
```
</script></section>
<section data-markdown><script type="text/template">
### null и undefined
Без дополнительных настроек, null и undefined могут быть значением переменной любого типа:
```ts
const a: string = null;
const b: number = undefined;
const d: string[] = null;
const e: [number] = undefined;
const f: [string, string] = [null, null];
```
Но обычно TS настраивают, чтобы nullable типы нужно было описывать явно.
</script></section>
<section data-markdown><script type="text/template">
### Автоматический вывод типов
```ts
let a = 10; // a: number
let b = a; // b: number
let c = a + b;// c: number
let d = c - 2*a === 0;// d: boolean
```
</script></section>
<section data-markdown><script type="text/template">
### Автоматический вывод типов у массивов
```ts
const a = [1, 2, 3];// a: number[]
const b = [0, 1]; // b: number[]
```
Если нужен tuple — придется писать явно.
</script></section>
<section data-markdown><script type="text/template">
### Пора писать код!
[Задача](https://www.typescriptlang.org/play/?strictNullChecks=false#code/PQKgsAUABDWOgggGEECwgDCcIFQQiCA4QQ-CBcOwgCgYiBaByIFFlPoLwgCg4iCCsINVoPIgUSg3CBsCGANFACN+AYwpQAJvwwJAXCD86GQHwggRhBA0iCRYUagyhqOiqIsASIFmWKZUGYsA8IHi4ksAOkghgkSMID2AOwDOAFyhuKABeKAAzbgAbXwBTAG4PHwDBUIjouMSILz9A0TDImISk3Ik0wsz3CBKUgEcARjTuLJy6gCY08QBtAAYAXRbkwNqAZjTajoBqKAaoafFHKNjvAHN-AAtB0tqAFjSBReW19bnBLra+w9WNrbqAVn3QkLDhLvq+3oGa4YA2NNf3p8ni83h9+p9bsMAOzjP7PMK1B7wqAAj7vSEzAAcAC4oN4AK5RKL-CFAA)
</script></section>
</section>
<section>
<section data-markdown><script type="text/template">
## Типы — это множества
</script></section>
<section data-markdown><script type="text/template">
### Типы — множества
Все типы в TS — это множества.
Например, тип `number` — множество всех чисел:
- всех поддерживаемых систем счисления,
- целых и десятичных,
- включая `Infinity`, `NaN`, `-0`
</script></section>
<section data-markdown><script type="text/template">
### Как думаете
Существуют ли типы, являющиеся единичными множествами?
</script></section>
<section data-markdown><script type="text/template">
### Единичные множества
```ts
const a: 10 = 10;
const b: true = true;
const c: "lalaka" = "lalaka";
const d: null = null;
```
</script></section>
<section data-markdown><script type="text/template">
### Автовывод типов
Зависит от способа объявления переменной:
```ts
const a = 10; // a: 10
let aa = 10; // aa: number
const b = "str";// b: "str"
let bb = "str"; // bb: string
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
Какие типы у этих переменных?
```ts
const a = [1,2,3]; // ?
let b = [1,2,3]; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
Какие типы у этих переменных?
```ts
const a = [1,2,3]; // a: number[]
let b = [1,2,3]; // b: number[]
```
</script></section>
<style>
.img-wrapper {
position: absolute;
left: 0;
width: 694px;
height: 450px;
background: white;
padding-top: 45px;
top: 0;
}
</style>
<section data-markdown><script type="text/template">
### Как это работает
```ts
const a = 10;
const b: number = a;
```
<div style="position: relative;">
<img src="img/10isNumber-1.png" height="450" alt="10 is number?">
<img src="img/10isNumber-2.png" height="450" alt="10 is number? yes" class="fragment" style="position: absolute; left: 0">
<div class="fragment img-wrapper">
<img src="img/10isNumber-3.png" height="405" alt="10 is number? yes">
</div>
</div>
</script></section>
<section data-markdown><script type="text/template">
### Как это работает
```ts
const a = "str";
const b: number = a;
```
<div style="position: relative;">
<img src="img/strIsNumber-1.png" height="450" alt="str is number?">
<img src="img/strIsNumber-2.png" height="450" alt="str is number? yes" class="fragment" style="position: absolute; left: 0">
<img src="img/strIsNumber-3.png" height="450" alt="str is number? yes" class="fragment" style="position: absolute; left: 0">
</div>
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Кортеж и массив
Валиден ли следующий код?
```ts
const a: [number, number, number] = [1, 2, 3];
const b: number[] = a; // ?
```
А этот?
```ts
const b: number[] = [1, 2, 3];
const a: [number, number, number] = b; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Кортеж и массив
Валиден ли следующий код?
```ts
const a: [number, number, number] = [1, 2, 3];
const b: number[] = a; // Все нормально
```
А этот?
```ts
const b: number[] = [1, 2, 3];
const a: [number, number, number] = b; // Error: Type 'number[]' is missing the following properties from type '[number, number, number]': 0, 1, 2(2739)
```
</script></section>
<section data-markdown><script type="text/template">
### Кортеж и массив
<img src="img/tupleAndNumberArray.png" alt="tuple and numbers array">
</script></section>
<section data-markdown><script type="text/template">
## Any
</script></section>
<section data-markdown><script type="text/template">
### Any
```ts
let a: any = null;
a = 10;
a = true;
a = "lalaka";
a = [1, 2, 3];
```
</script></section>
<section data-markdown><script type="text/template">
### Any как множество
- any является множеством абсолютно всех возможных значений.
- any является подмножеством абсолютно любого типа.
<img src="img/any.png" alt="any">
</script></section>
<section data-markdown><script type="text/template">
### Any как подмножество любого типа
```ts
const a: any = "lalaka";
const b: number = a + a;
const c: true = a;
const d: [number, [string, string]] = a;
```
</script></section>
<section data-markdown><script type="text/template">
### Как думаете
Когда стоит использовать `any`?
</script></section>
<section data-markdown><script type="text/template">
### Когда использовать
Для any TS отключает все проверки типов. Просто работает в режиме JS.
Использовать any стоит:
- если проект только начали внедрять TS и еще не все успели переписать, легаси пусть будет с any
- чтобы парсить незнакомый JSON
- если вынуждены использовать нетипизированый JS в части приложения
</script></section>
<section data-markdown><script type="text/template">
## Объединение типов
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
Попробуем описать переменную, которая будет хранить значение css-свойства font-weight:
```ts
let fontWeight: ? = "bold";
fontWeight = 600;
```
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
Можно написать `any`:
```ts
let fontWeight: any = "bold";
fontWeight = 600;
fontWeight = true;
fontWeight = [1, "lalaka"];
```
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
Нужен какой-то тип, который разрешит записывать только строки или числа.
Это называется объединение типов:
```ts
let fontWeight: number | string = "bold";
```
<img src="img/numberAndString.png" alt="number and string">
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
Усложним задачу. Теперь мы хотим, чтобы еще null и undefined можно было записать.
```ts
let fontWeight: ? = "bold";
fontWeight = 600;
fontWeight = null;
fontWeight = undefined;
```
<img src="img/numberAndStringAndNull.png" alt="number and string and null and undefined">
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
```ts
let fontWeight: number | string | null | undefined = "bold";
fontWeight = 600;
fontWeight = null;
fontWeight = undefined;
```
<img src="img/numberAndStringAndNull.png" alt="number and string and null and undefined">
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
```ts
let fontWeight: number | string | null | undefined = "lalaka";
fontWeight = -300;
```
Хочется ограничить значения только теми, которые поймет css: "bold", "bolder", 500, 600.
Это не все значения, но мы для примера возьмем только их.
</script></section>
<section data-markdown><script type="text/template">
### Font-weight
```ts
let fontWeight: "bold" | "bolder" | 500 | 600 | null | undefined = "bold";
fontWeight = 600;
fontWeight = null;
fontWeight = undefined;
fontWeight = 500;
fontWeight = "bolder";
fontWeight = "lalaka"; // Error: Type '"lalaka"' is not assignable to type '"bold" | "bolder" | 500 | 600 | null | undefined'.(2322)
```
</script></section>
<section data-markdown><script type="text/template">
### Объединение массивов
```ts
const a: number[] | string[] = [1, 2, 3];
const b: number[] | string[] = ["lalaka"];
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
валиден ли следующий код?
```ts
const a: number[] | string[] = [1, "str", 3]; // ?
const b: number[] | string[] = []; // ?
const c: number[] | string[] = [true]; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
валиден ли следующий код?
```ts
const a: number[] | string[] = [1, "str", 3]; // Error: Type '(string | number)[]' is not assignable to type 'number[] | string[]'.
const b: number[] | string[] = []; // Все ОК
const c: number[] | string[] = [true]; // Error: Type 'true' is not assignable to type 'string | number'.(2322)
```
</script></section>
<section data-markdown><script type="text/template">
### Объединение элементов массивов
```ts
const a: (number | string)[] = [1, "lalaka", 3];
```
</script></section>
<section data-markdown><script type="text/template">
## Пересечение типов
</script></section>
<section data-markdown><script type="text/template">
### Пересечение типов
```ts
const a: number & string = ???;
```
</script></section>
<section data-markdown><script type="text/template">
### Пересечение типов
<img src="img/numberAndString.png" alt="number and string">
Пересечение множества `string` и `number` = `∅`. Пустое множество соответствует типу `never` в TS.
```ts
const a: number & string = ???; // Такого значения не существует
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Пересечение типов
Для примитивов и кортежей пересечение бессмысленно — оно порождает пустое множество.
Для массивов однако это множество будет не пустым.
Как думаете, что будет валидным значением для переменных `a` и `b`?
```ts
const a: (number & string & boolean)[] = ?;
const b: number[] & string[] & boolean[] = ?;
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Пересечение типов
Для примитивов и кортежей пересечение бессмысленно — оно порождает пустое множество.
Для массивов однако это множество будет не пустым.
Как думаете, что будет валидным значением для переменных `a` и `b`?
```ts
const a: (number & string & boolean)[] = []; // Пустой массив подходит
const b: number[] & string[] & boolean[] = [];
```
</script></section>
<section data-markdown ><script type="text/template">
### Пересечение типов
Настоящую силу пересечения типов мы обсудим дальше, в более сложных типах данных.
</script></section>
<section data-markdown ><script type="text/template">
### Тест. Типы как множества
[Ссылка на тест](https://docs.google.com/forms/d/e/1FAIpQLSdoEt54rr4l0UZaxu9GnlUVC-KOwNt7yYgyGAxCok3X2FX80A/viewform?usp=sf_link)
</script></section>
</section>
<section>
<section data-markdown><script type="text/template">
## Объекты
</script></section>
<section data-markdown><script type="text/template">
### Тип объекта
```ts
const a = { a: 10 }; // { a: number }
```
</script></section>
<section data-markdown><script type="text/template">
### Тип объекта
Почему вывелся тип не `{ a: 10 }`, а `{ a: number }`?
```ts
const a = { a: 10 }; // { a: number }
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что можно сложить в объект
Валидны ли эти строки?
```ts
const a: { a: number } = { b: 10 }; // ?
const b: { a: number } = { }; // ?
const c: { a: number } = { a: true };// ?
const d: { a: number } = { a: 10, b: 25 };// ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что можно сложить в объект
Валидны ли эти строки?
```ts
const a: { a: number } = { b: 10 }; // Error: Type '{ b: number; }' is not assignable to type '{ a: number; }'.
const b: { a: number } = { }; // Error: Property 'a' is missing in type '{}' but required in type '{ a: number; }'.(2741)
const c: { a: number } = { a: true };// Error: Type 'true' is not assignable to type 'number'.
const d: { a: number } = { a: 10, b: 25 };// Error: Type '{ a: number; b: number; }' is not assignable to type '{ a: number; }'.
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что можно сложить в объект
А если обмануть систему?
```ts
const a = { a: 10, b: "lalaka" };
a.a = 300 // ?
a.a = "malaka"; // ?
a.z = true; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Что можно сложить в объект
А если обмануть систему?
```ts
const a = { a: 10, b: "lalaka" };
a.a = 300 // Все ок
a.a = "malaka"; // Error: Type '"malaka"' is not assignable to type 'number'.
a.z = true; // Error: Property 'z' does not exist on type '{ a: number; b: string; }'.
```
</script></section>
<section data-markdown><script type="text/template">
### Проверка типов объектов
```ts
let x: {a: number, b: string};
const y = {a: 10, b: "lalaka"};
x = y;
```
<p class="fragment">
Объект <code>y</code> совместим с типом объекта <code>x</code>, если у объекта <code>y</code> есть все поля,
которые есть у <code>x</code> и тип этих полей совместим с типом полей <code>x</code>
</p>
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
валиден ли этот код?
```ts
let x: {a: number, b: string};
const y: {a: 10, b: "lalaka"} = {a: 10, b: "lalaka"};
x = y; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
валиден ли этот код?
```ts
let x: {a: number, b: string};
const y: {a: 10, b: "lalaka"} = {a: 10, b: "lalaka"};
x = y; // Все ок, типы полей совместимы
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
валиден ли этот код?
```ts
let x: {a: number, b: string};
const y = {a: 10, b: "lalaka", c: true};
x = y; // ?
x.c = false;// ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
валиден ли этот код?
```ts
let x: {a: number, b: string};
const y = {a: 10, b: "lalaka", c: true};
x = y; // Все ок
x.c = false;// Error: Property 'c' does not exist on type '{ a: number; b: string; }'.
```
</script></section>
<section data-markdown ><script type="text/template">
### Проверка типов объектов
работает при помощи «утиной типизации»
</script></section>
<section data-markdown><script type="text/template">
## Type alias
</script></section>
<section data-markdown><script type="text/template">
### Type alias
Это возможность описать типы отдельно от объявления переменных.
```ts
type MyType = string;
```
</script></section>
<section data-markdown><script type="text/template">
### Type alias
```ts
type A = string
type B = number | boolean
type C = A | B
const c: C = 10 // type: string | number | boolean
type Q = {
a: A;
b: B;
c: C;
tuple: [A, B, "lalaka", string];
array: number[];
aliasArray: A[];
}
```
</script></section>
<section data-markdown><script type="text/template">
## typeof
</script></section>
<section data-markdown><script type="text/template">
### typeof
Может понадобиться сохранить тип какой-то переменной:
```ts
const x = {a: "lalaka", b: 10};
type X = typeof x;
const y: X = {a: "malaka", b: 15} // type: {a: string, b: number}
const z: typeof x = {a: "palaka", b: 30} //type: {a: string, b: number}
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
Какие будут типы у переменных `b` и `c`?
```ts
const a = [1, 2, 3];
let b: typeof a; // ?
let c = typeof a; // ?
```
</script></section>
<section data-markdown data-transition="none"><script type="text/template">
### Как думаете
Какие будут типы у переменных `b` и `c`?
```ts
const a = [1, 2, 3];
let b: typeof a; // number[]
let c = typeof a; // "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
```
</script></section>
<section data-markdown><script type="text/template">
### Как думаете
```ts
const a = [1, 2, 3];
let b: typeof a; // number[]
let c = typeof a; // "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
```
Как TS не путает какой `typeof` использовать?
<p class="fragment">
TS различает контекст использования.<br>
<code>typeof</code> в месте, где объявляются типы — взять тип у переменной.<br>
<code>typeof</code> в обычном коде — используем <code>typeof</code> из JS
</p>
</script></section>
<section data-markdown><script type="text/template">
## Interface
</script></section>
<section data-markdown><script type="text/template">
### Interface
```ts
interface A {
a: number;
b: string:
q: boolean;
}
const a: A = {
a: 100500,
b: "lalaka",
q: false,
};
```
Обычно объекты описываются интерфейсами, а не `type alias`.
</script></section>
<section data-markdown><script type="text/template">
### Interface vs type alias
**1. type alias может содержать не только объект**
```ts
interface A {
a: number
}
type B = A;
type C = B;
type D = string | 10 | ["lalaka"] | null | undefined
type E = C | D
```
</script></section>
<section data-markdown><script type="text/template">
### Interface vs type alias
**2. При объявлении интерфейсов с одинаковым именем тип объекта расширяется...**
```ts
interface A {
a: number;
}
interface A {
b: string;
}
const a: A = { a: 10, b: "lalaka" }
```