-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1521 lines (1433 loc) · 59 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<base href="https://utnfrrottads.github.io/presentacion-angulario/" />
<title>Presentación Angular - TTADS - UTN - FRRO </title>
<link rel="stylesheet" href="./css/reveal.css">
<link rel="stylesheet" href="./css/theme/white.css">
<link rel="stylesheet" href="./css/presentation.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="./lib/css/zenburn.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>Angular</h1>
<h2>UTN Rosario</h2>
<h3>TTADS</h3>
<h3>
<a href="https://github.com/utnfrrottads/">
Técnicas y Tecnologías Avanzadas de Desarrollo de Software</a>
</h3>
<p>
<a href="https://aotaduy.github.io/area204/">Ing. Andres Otaduy</a>
<a href="https://github.com/adrianmeca">Ing. Adrian Meca</a>
</p>
</section>
<section>
<section>
<h2>HTML + HTTP Paginas Estaticas</h2>
<a href="http://info.cern.ch/hypertext/WWW/TheProject.html">Primer pagina web</a>
<a href="http://line-mode.cern.ch/www/hypertext/WWW/TheProject.html">Emulador</a><br>
<img src="img/theproject.png" alt="" height="400px" />
</section>
<section>
<h1>Evolucion FrontEnd</h1>
<h2>HTML + Imagenes + Tablas</h2>
<img src="img/mosaic.png" alt="" height="400px"/>
</section>
<section>
<h2>Hypermedia: HTML + Imagenes + Tablas</h2>
<img src="img/geocities1.png" alt="" height="350px" />
<img src="img/geocities2.png" alt="" height="350px" />
</section>
<section>
<h2>Web Applications</h2>
<p>
Perl, ASP, PHP, Apache, MySQL
</p>
<img src="img/yahoo.jpg" alt="" height="350px" />
<img src="img/hotmail.jpg" alt="" height="350px" />
</section>
<section>
<h2>Single Page Applications</h2>
<p>
NodeJs, Java, C#, MongoDB, Javascript, REST API
</p>
<img src="img/gmail.png" alt="" height="300px" />
<img src="img/facebook.png" alt="" height="250px" />
</section>
<section>
<h1>SPA: Single Page Applications</h1>
<ul>
<li>Servicios REST</li>
<li>Frameworks Front End <a href="https://www.angular.io">Angular</a>, <a href="https://emberjs.com/">ember</a>, <a href="https://knockoutjs.com/">knockout,</a> <a href="https://es.reactjs.org/"> React</a> </li>
<li>Separacion de Intereses</li>
<li>Division de Backend / Frontend</li>
<li>Mobile o Mobile First</li>
<li><a href="https://www.madewithangular.com/">Examples</a></li>
</ul>
</section>
</section>
<section>
<section>
<h1>Javascript</h1>
<ul>
<li> Libro: Javascript the good parts</li>
<li> Conferencia en google <a href="https://www.youtube.com/watch?v=lP9-Zx_cCUg">Javascript the good parts subtitulada</a>
</li>
<li> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">MDN</a>
</li>
<li> <a href="https://developer.mozilla.org/es/docs/Web/JavaScript">MDN en castellano</a>
</li>
</ul>
</section>
<section>
<h1> Javascript </h1>
<ul>
<li>Uno de los lenguajes mas usados e incomprendidos del mundo</li>
<li>Obligatorio para programar en el browser</li>
<li>Interfaz con el <a href="https://www.xml.com/pub/a/1999/07/dom/xml_dom.gif">DOM </a> </li>
<li>Sintaxis de C, Semantica de Scheme</li>
</ul>
</section>
<section>
<h1>Javascript influencias</h1>
<ul>
<li>Scheme</li>
<li>Java</li>
<li>Self</li>
<li>Perl</li>
</ul>
</section>
<section>
<h1>Correr JS</h1>
<ul>
<li>Embebido</li>
<li>Scripts</li>
<li>NodeJs</li>
</ul>
</section>
<section>
<h1>Javascript Good Parts</h1>
<ul>
<li>Loose Typing</li>
<li>Objetos Dinamicos</li>
<li>Funciones de Orden Superior</li>
<li>Funciones Lambda</li>
<li>Funciones Clousures</li>
<li>Objetos Literales</li>
<li>Herencia prototipica</li>
<li>Es facil!</li>
</ul>
</section>
<section>
<h1>Funciones de Orden Superior</h1>
<pre><code class="js">
function paraCada(unArray, unaFuncion) {
for (i=0; i < unArray.length; i++) {
unaFuncion(unArray[i], i);
}
}
paraCada([10,20,'hola', 'que', 87], function(elem, index) {
console.log('Elemento:', elem, index)
});
function mapear(unArray, unaFuncion) {
var answer = [];
for (i=0; i < unArray.length; i++) {
answer.push(unaFuncion(unArray[i], i));
}
return answer;
}
function cuad(a) {
return a*a;
}
console.log(mapear([1,2,3,4,5], cuad));
</code></pre>
</section>
<section>
<h1>Funciones Lambda</h1>
<pre><code class="js">var cuad, cubo, array = [1,2,3,4];
cuad = function(a){
return a * a;
};
cubo = function(a) {
return cuad(a) * a;
};
var array = [3,5,7,9,11,14];
array.map(cuad) + array.map(cubo);
console.log(array.reduce(0, suma));
array.filter(function (elem){ return elem > 10})
.map(function (elem) { return elem * elem });
function suma(a,b) {
return a + b;
}
</code></pre>
</section>
<section>
<h1>Clousures</h1>
<pre><code class="js">function makeAdder(a) {
return function(b) {
return a + b;
};
}
var x = makeAdder(5);
var y = makeAdder(20);
x(6); // ?
y(7); // ?
</code></pre>
</section>
<section>
<h1>Objetos dinamicos</h1>
<pre><code class="js">var object = {name: 'Jon'};
object.lastName = 'Smith';
object.print = function(){
console.log('Name:', this.name);
console.log('LastName:', this.lastName)};
object.print();</code></pre>
</section>
<section>
<h1>Objetos Literales</h1>
<pre><code class="js">{
"glossary":{
"title":"example glossary",
"GlossDiv":{
"title":"S",
"GlossList":{
"GlossEntry":{
"ID":"SGML",
"SortAs":"SGML",
"GlossTerm":"Standard Generalized Markup Language",
"Acronym":"SGML",
"Abbrev":"ISO 8879:1986",
"GlossDef":{
"para":"A meta-markup language, used to create markup languages such as DocBook.",
"GlossSeeAlso":[
"GML",
"XML"
]
},
"GlossSee":"markup"
}
}
}
}
}</code></pre>
</section>
<section>
<h1>Herencia Prototipica</h1>
<pre><code class="js">
var padre = {nombre: 'Pepe', apellido: 'Perez'};
var hijo = Object.create(padre);
padre.mostrarNombre = function() { console.log(this.nombre)};
hijo.nombre = 'Pedro';
padre.mostrarNombre();
hijo.mostrarNombre();
console.log(hijo.apellido);</code></pre>
</section>
<section>
<h1>Clases con Herencia Prototipica</h1>
<pre><code class="js">// Shape - superclass
function Shape() {
this.x = 0;
this.y = 0;
}
// superclass method
Shape.prototype.move = function(x, y) {
this.x += x;
this.y += y;
console.info('Shape moved.');
};
// Rectangle - subclass
function Rectangle() {
Shape.call(this); // call super constructor.
}
// subclass extends superclass
Rectangle.prototype = Object.create(Shape.prototype);
Rectangle.prototype.constructor = Rectangle;
var rect = new Rectangle();
console.log('Is rect an instance of Rectangle?',
rect instanceof Rectangle); // true
console.log('Is rect an instance of Shape?',
rect instanceof Shape); // true
rect.move(1, 1); // Outputs, 'Shape moved.'</code></pre>
</section>
<section>
<h1>Javascript Bad Parts</h1>
<ul>
<li>Interfaz con el <a href="https://www.xml.com/pub/a/1999/07/dom/xml_dom.gif">DOM </a> </li>
<li>Insercion de punto y coma</li>
<li>comparaciones == != (<a href="https://dorey.github.io/JavaScript-Equality-Table/">ver tabla</a>)</li>
<li>Es facil!</li>
</ul>
</section>
<section>
<h1>Ejercicios JS 1</h1>
<p>Crear una funcion buscar(array, criterio, siVacio), que reciba un array y dos funciiones si criterio es verdadero devolver el elemento encontrado sino doveolver el resultado de ejecutar la otra funcion "siVacio" </p>
<pre><code>buscar(
[1,2,3,4],
function(each){ return each === 5},
function() {return 'no encontrado'}
);
</code></pre>
</section>
<section>
<h1>Ejercicios JS 2 </h1>
<p>Completar el ejemplo de Shape para que incluya circulos y triangulos, un metodo para mostrar cada uno por consola y un metodo para escalar cada figura en un porcentaje</p>
</section>
<section>
<h1>Ejercicio JS 3</h1>
<p>
Crear mediante un objeto literal la estructura de 3 carreras de grado y una de pregrado de la utn con sus materias, duracion de cada carrera, nombre de la materia y descripción.
</p>
<p>A partir de este arbol mostrar por consola codigo html que represente este arbol con un formato amigable (h1, h2 para titulos, ol, ul para listas, etc) </p>
</section>
</section>
<section>
<section>
<h1>Angular Intro</h1>
<ul>
<li>TypeScript -> ES6</li>
<li>Modulos Ng and ES6</li>
<li>Componentes</li>
<li>Templates</li>
<li>Bootstraping</li>
<li>Data Binding</li>
<li>Directives</li>
<li>Services</li>
<li>HTTP</li>
</ul>
</section>
<section>
<h1>Angular Ventajas</h1>
<ul>
<li>TypeScript y ES6</li>
<li>Arquitectura de Componentes</li>
<li>Modularidad (ES6)</li>
<li>RxJs - Reactive Programming</li>
<li>Mejor Performance</li>
<li>Architectura un poco mas simple</li>
<li>CSS Modular</li>
<li>Testeabilidad</li>
<li>Una Arquitectura completa</li>
</ul>
</section>
<section>
<h1>Angular Contras</h1>
<ul>
<li>Usa TypeScript casi obligatoriamente</li>
<li>Cambio total con respecto a AngularJs</li>
<li>Framework Complejo</li>
<li>Una Arquitectura completa</li>
<li>Tiempo de Build lento</li>
<li>Syntaxis de los templates mas alejada de html</li>
</ul>
</section>
<section>
<h1>Arquitectura</h1>
<img src="img/ng2-architecture.png" alt="" />
</section>
<section>
<h1>Componentes</h1>
<ul>
<li>Permiten crear nuevos tags html</li>
<li>Se definen como clases con anotaciones</li>
<li>La instancia se vincula al template</li>
<li>Dependencias Explicitas</li>
<li>Hojas de Estilos modulares</li>
<li>Usa el Shadow Dom</li>
<li>Callbacks del ciclo de vida (hooks)</li>
</ul>
<pre><code class="html"><datepicker id="date" [value]="10/10/2018"></datepicker>
<ttads-form>
<users-list
[list]="users"
(onChange)="selection = $event">
</users-list>
<users-form [model]="selection"></users-form>
</ttads-form>
</code></pre>
</section>
<section>
<h1>Ejemplos</h1>
<h4>Componentes de material design</h4>
<pre><code class="html">
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image"></div>
<mat-card-title>Shiba Inu</mat-card-title>
<mat-card-subtitle>Dog Breed</mat-card-subtitle>
</mat-card-header>
<img mat-card-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu">
<mat-card-content>
<p>
Estp es una descripcion del perro
</p>
</mat-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card>
<mat-paginator [length]="100"
[pageSize]="10"
[pageSizeOptions]="[5, 10, 25, 100]">
</mat-paginator>
</code></pre>
<a href="https://material.angular.io/components/card/examples">Link</a>
</section>
<section>
<h1>Sintaxis de un componente</h1>
<pre><code class="ts">import { Component } from '@angular/core';
import {TodoItem} from './todo-item'
@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css']
})
export class AppComponent {
title = 'app works!';
list: Array<TodoItem>;
item: TodoItem;
constructor() {
this.list = [];
this.item = new TodoItem;
}
add( anItem: TodoItem) {
this.list.push(anItem);
this.item = new TodoItem;
}
remove( index: number) {
this.list.splice(index,1);
}
}</code></pre>
</section>
<section>
<h1>Templates</h1>
<pre><code class="html">
<h1 [ngClass]="{'big': list.length > 5}" >Todo {{list.length}}</h1> <input type="text" [(ngModel)]="item.text"> <input type="button" value="Add" (click)="add(item)"> <ul> <li [ngClass]="{'done': todoItem.done}" \ *ngFor="let todoItem of list; let i = index"> <input type="checkbox" [(ngModel)]="todoItem.done"> {{todoItem.text}} <input *ngIf="todoItem.done" (click)="remove(i)" type="button" name="name" value="X"> </li> </ul>
</code></pre>
</section>
<section>
<h1>Template Bindings</h1>
<ul>
<li>Expresiones ejecutables</li>
<li>Se reemplaza la expresion por su resultado</li>
<li>Se detectan automaticamente los cambios.</li>
</ul>
<pre><code class="html">
<h2>Resultado {{2+2}}</h2>
{{items.length === 0 ? 'Vacio' : items.length}}
<input type="text" [(ngModel)]="palabras"}> #Palabras: {{palabras.split(' ').length}}
</code></pre>
</section>
<section>
<h1>{{Expresiones de un Template}}</h1>
<ul>
<li>sin efectos secundarios =, new, ++ ;</li>
<li>El scope es la instancia del componente</li>
<li>No hay espacio de nombres global</li>
<li>Rapido</li>
<li>Idempotente </li>
</ul>
</section>
<section>
<h1>[Binding de atributos]</h1>
<ul>
<li>Sintaxis: [atributo]="expresion"</li>
<li>Si se omiten los corchetes se pasa un string</li>
<li>El valor de resultado se remplaza.</li>
<li>Si el atributo no esta en el dom se usa [attr.atributo]</li>
<li>En nuestros componentes se pueden declarar atributos custom</li>
</ul>
<pre><code class="html">
<input
[type]="isPassword ? 'password' : 'text'"
/>
<input
[attr.id]="inputId + (isPassword ? '-password' : '-text')"
/>
<input
[maxlength]="longMax * 2"
/>
</code></pre>
</section>
<section>
<h1>(Eventos)</h1>
<ul>
<li>Sintaxis: (evento)="expresion($event)"</li>
<li>Debe ser una expresion angular</li>
<li>Esta disponible la variable $event</li>
<li>estan disponibles todos los eventos del dom (click, focus, input, keyup, keydown, etc)</li>
<li>En nuestros componentes se pueden declarar eventos custom</li>
</ul>
<pre><code class="html">
<input type="text" (keyup)="update($event)">
<button (click)="onOkClicjed()">Ok</button>
<div (mousemove)="onMouseMove($event)" class="scrible"> </div>
</code></pre>
</section>
<section>
<h1>Elementos de un template</h1>
<ul>
<li>Codigo HTML</li>
<li>bindings {{}}</li>
<li>attribute []</li>
<li>events (): Statements $event available</li>
<li>Two Way binding [()]</li>
<li>Directives</li>
<li>Components</li>
<li>Pipes</li>
</ul>
</section>
<section>
<h1>Directivas del framework</h1>
<ul>
<li>NgClass, NgStyle</li>
<li>*NgIf *NgFor *NgSwitch</li>
</ul>
</section>
<section>
<h1>Directiva *NgIf</h1>
<p>Permite incluir o eliminar un elemento del DOM con una condición</p>
<pre><code class="html"><div *ngIf="list.length === 0">
No hay resultados en la lista
</div>
<div *ngIf="list.length > 0">
<ul>
<li>Elemento 1</li>
<li>Elemento 2</li>
</ul>
</div>
</code></pre>
</section>
<section>
<h1>Directiva NgClass</h1>
<p>Permite incluir o eliminar classes de un elemento dinamicamente</p>
<pre><code class="html"> <span [ngClass]="'btn btn-primary'}">X</span>
<span [ngClass]="['btn', 'btn-primary']">X</span>
<span [ngClass]="{'btn': true, 'btn-primary': false}">X</span>
<span [ngClass]="getClasses()">X</span>
<span [class.btn]="true" [class.btn-primary]="false">X</span>
<span [class.btn]="isButton && isEnabled()">X</span>
</code></pre>
</section>
<section>
<h1>Clase Binding</h1>
<pre><code class="html"><!-- toggle the "special" class on/off with a property --> <div [class.special]="isSpecial">The class binding is special</div> <!-- binding to `class.special` trumps the class attribute --> <div class="special" [class.special]="!isSpecial">This one is not so special</div> </code></pre>
</section>
<section>
<h1>Estilo Binding</h1>
<pre><code class="html"><button [style.color] = "isSpecial ? 'red': 'green'">Red</button> <button [style.background-color]="canSave ? 'cyan': 'grey'" >Save</button> <button [style.font-size.em]="isSpecial ? 3 : 1" >Big</button> <button [style.font-size.%]="!isSpecial ? 150 : 50" >Small</button>
</code></pre>
</section>
<section>
<h1>Bindings de Atributos, Clases y Estilos </h1>
<pre><code class="js"><table border=1> <!-- expression calculates colspan=2 --> <tr><td [attr.colspan]="1 + 1">One-Two</td></tr> <!-- ERROR: There is no `colspan` property to set! <tr><td colspan="{{1 + 1}}">Three-Four</td></tr> --> <tr><td>Five</td><td>Six</td></tr> </table></code></pre>
</section>
<section>
<h1>Directiva *NgFor</h1>
<p>Permite iterar por una coleccion y generar elementos DOM en cada iteracion</p>
<pre><code class="html"> <ul>
<li
*ngFor="let language of ['Javascript', 'TypeScript', 'Java', 'C#']">
{{language}}
</li>
</ul>
</code></pre>
</section>
<section>
<h1>Ejemplo</h1>
<p>Crear una Lista de tareas para hacer en en un unico componente Angular, usando las directivas del framework</p>
<p>La lista se compone de un input de texto con un boton de agregar y una lista de tareas donde cada una se puede eliminar tambien con un botón</p>
<p>Ademas puede setear cada tarea como completada/incompleta con un boton adicional en cada una </p>
<a href="http://todomvc.com/examples/angularjs/#/">Ejemplo</a>
</section>
<section>
<h1>Entrada y salida de un componente</h1>
<pre><code class="js">import {Component} from '@angular/core';
@Component({
selector: 'counter',
template: `
<div>
<p>Count: {{num}}</p>
<button (click)="increment()">Increment</button>
</div>
`
})
export class CounterComponent {
num = 0;
increment() {
this.num++;
}
}</code></pre>
</section>
<section>
<h1>Entrada y salida de un componente</h1>
<pre><code class="js">import { Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
selector: 'counter',
templateUrl: 'app/counter.component.html'
})
export class CounterComponent {
@Input() count = 0;
@Output() result = new EventEmitter<number>();
increment() {
this.count++;
this.result.emit(this.count);
}
}</code></pre>
</section>
<section>
<h1>Custom Two Way Binding</h1>
<pre><code class="html"><input [(ngModel)]="name" >
<input [ngModel]="name" (ngModelChange)="name=$event"></code></pre>
<pre><code class="js">import { Component, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'counter',
templateUrl: 'app/counter.component.html'
})
export class CounterComponent {
@Input() count = 0;
@Output() countChange = EventEmitter<number>();
increment() {
this.count++;
this.countChange.emit(this.count);
}
}</code></pre>
</section>
<section>
<h1>Proyeccion de Contenido</h1>
<pre><code class="js">import { Component } from '@angular/core';
@Component({
selector: 'child',
template: `
<div style="border: 1px solid blue; padding: 1rem;">
<h4>Child Component</h4>
<ng-content></ng-content>
</div>
`
})
export class ChildComponent {
}</code></pre>
<pre><code class="html"> <child>
<p>Contenido proyectado.</p>
</child></code></pre>
</section>
<section>
<h1>Seleccion de contenido proyectado</h1>
<pre><code class="html">
<rio-child-select>
<section>Section Content</section>
<div class="class-select">
div with .class-select
</div>
<footer>Footer Content</footer>
<header>Header Content</header>
</rio-child-select></code></pre>
</section>
<section>
<h1>Seleccion de contenido proyectado</h1>
<pre><code class="html"><div style="...">
<h4>Child Component with Select</h4>
<div style="...">
<ng-content select="header"></ng-content>
</div>
<div style="...">
<ng-content select="section"></ng-content>
</div>
<div style="...">
<ng-content select=".class-select"></ng-content>
</div>
<div style="...">
<ng-content select="footer"></ng-content>
</div>
</div></code></pre>
</section>
<section>
<h1>Ciclo de Vida</h1>
<ul>
<li><code>ngOnChanges</code> - cuando cambia un binding input</li>
<li><code>ngOnInit</code> - despues del primer <code>ngOnChanges</code></li>
<li><code>ngDoCheck</code> - despues de cada change detection </li>
<li><code>ngAfterContentInit</code> - despues de inicializado el contenido</li>
</ul>
</section>
<section>
<h1>Ciclo de Vida</h1>
<ul>
<li><code>ngAfterContentChecked</code> - despues de cada checkeo del contenido</li>
<li><code>ngAfterViewInit</code> - despues de incializada la vista</li>
<li><code>ngAfterViewChecked </code> - despues de cada check de la vista</li>
<li><code>ngOnDestroy</code> - justo antes de destruir el componente</li>
</ul>
</section>
<section>
<h1>Ciclo de Vida mas importantes</h1>
<ul>
<li><code>ngOnInit</code> - despues del primer <code>ngOnChanges</code></li>
<li><code>ngOnChanges</code> - cuando cambia un binding input</li>
<li><code>ngOnDestroy</code> - justo antes de destruir el componente</li>
</ul>
</section>
<section>
<h1>Usando otros componentes</h1>
<h2>@ViewChild</h2>
<pre><code class="js">import { Component, ViewChild } from '@angular/core';
import { AlertComponent } from './alert.component';
@Component({
selector: 'app-root',
template: `
<app-alert>My alert</app-alert>
<button (click)="showAlert()">Show Alert</button>`
})
export class AppComponent {
@ViewChild(AlertComponent) alert: AlertComponent;
showAlert() {
this.alert.show();
}
}</code></pre>
</section>
<section>
<h1>@ViewChildren</h1>
<pre><code class="js">import { Component, QueryList, ViewChildren } from '@angular/core';
import { AlertComponent } from './alert.component';
@Component({
selector: 'app-root',
template: `
<app-alert ok="Next" (close)="showAlert(2)">
Step 1: Learn angular
</app-alert>
<app-alert ok="Next" (close)="showAlert(3)">
Step 2: Love angular
</app-alert>
<app-alert ok="Close">
Step 3: Build app
</app-alert>
<button (click)="showAlert(1)">Show steps</button>`
})
export class AppComponent {
@ViewChildren(AlertComponent) alerts: QueryList<AlertComponent>;
alertsArr = [];
ngAfterViewInit() {
this.alertsArr = this.alerts.toArray();
}
showAlert(step) {
this.alertsArr[step - 1].show(); // step 1 is alert index 0
}
}</code></pre>
</section>
<section>
<h1>Content Children</h1>
<h2>@ContentChild y @ContentChildren</h2>
trabajan de la misma forma que @ViewChild y @ViewChildren pero sobre el contenido proyectado
</section>
<section>
<h1>ElementRef</h1>
<pre><code class="js">import { AfterContentInit, Component, ElementRef } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<h1>My App</h1>
<pre>
<code>{{ node }}</code>
</pre>
`
})
export class AppComponent implements AfterContentInit {
node: string;
constructor(private elementRef: ElementRef) { }
ngAfterContentInit() {
const tmp = document.createElement('div');
const el = this.elementRef.nativeElement.cloneNode(true);
tmp.appendChild(el);
this.node = tmp.innerHTML;
}
}</code></pre>
</section>
<section>
<h1>Variables de Referencia de un template</h1>
<pre><code class="html">
<!-- phone refers to the input element; pass its `value` to an event handler --> <input #phone placeholder="phone number"> <button (click)="callPhone(phone.value)">Call</button> <!-- fax refers to the input element; pass its `value` to an event handler --> <input ref-fax placeholder="fax number"> <button (click)="callFax(fax.value)">Fax</button> </code></pre>
</section>
<section>
<h1>Modulos y NgModule</h1>
<pre><code class="js">export class ZipCodeValidator implements StringValidator {
isAcceptable(s: string) {
return s.length === 5 && numberRegexp.test(s);
}
}</code></pre>
<pre><code class="js">import { ZipCodeValidator } from "./ZipCodeValidator";
let myValidator = new ZipCodeValidator();</code></pre>
<pre><code class="js"> NgModule(options : { constructor(options?: NgModuleMetadataType) providers : Provider[] declarations : Array<Type<any>|any[]> imports : Array<Type<any>|ModuleWithProviders|any[]> exports : Array<Type<any>|any[]> entryComponents : Array<Type<any>|any[]> bootstrap : Array<Type<any>|any[]> schemas : Array<SchemaMetadata|any[]> }) </code></pre>
</section>
<section>
<h1>Subcomponentes Input and Output</h1>
<pre><code class="js">import { Component, Input, Output, EventEmitter } from '@angular/core';
import {TodoItem} from './todo-item';
@Component({
selector: 'todo-line',
template: `
<input type="checkbox" [(ngModel)]="item.done"> {{item.text}} <input type="button" name="name" value="X" (click)="remove(item)">
`
})
export class TodoLine {
@Input() item: TodoItem;
@Output() removeRequested: EventEmitter<any> = new EventEmitter();
remove( index: number) {
this.removeRequested.emit(this.item)
}
}</code></pre>
</section>
<section>
<h1>Bootstraping</h1>
<pre><code class="js">import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';
platformBrowserDynamic().bootstrapModule(AppModule);</code></pre>
</section>
</section>
<section>
<section>
<h1>Servicios</h1>
<p>Un servicio es un componente no visual en Angular</p>
<p>Sirven para comunicar componentes, reutilizar funcionalidad o guardar información</p>
<p>Angular provee un servicio de <strong>Inyeccion de Dependencias</strong></p>
</section>
<section>
<h1>Inyección de Dependencias</h1>
<p>Inversion de Control</p>
<p>El componente no instancia sus dependencias, solo especifica lo que necesita</p>
<pre><code class="js">export class ProfileComponent {
profileService = new ProfileService();
}</code></pre>
<pre><code class="js">export class ProfileComponent {
constructor(private profileService: ProfileService) {}
}</code></pre>
</section>
<section>
<h1>Inyeccion de dependencias</h1>
<p>Angular lo tiene muy integrado</p>
<p>La estructura de modulos determina la inyeccion</p>
<p>En Angular se usa para principlamente para unit test</p>
</section>
<section>
<h2>@Injectable()</h2>
<pre><code class="js">import { Injectable } from '@angular/core';
@Injectable()
export class TodoService {
constructor() { }
}</code></pre>
</section>
<section>
<h2>Servicios que inyectan otros servicios</h2>
<pre><code class="js">@Injectable()
export class ProfileService {
constructor(private httpClient: HttpClient) {}
}
export class ProfileComponent {
constructor(
private profileService: ProfileService,
private: BreakpointService) {}
}</code></pre>
</section>
<section>
<h1>
Inyección de Dependencias: Modulo
</h1>
<pre><code class="js">@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
],
providers: [TodoService],
bootstrap: [AppComponent]
})
export class AppModule { }</code></pre>
</section>
<section>
<h1>
Inyección de dependencias: root
</h1>
<pre><code class="js">import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root',
})
export class TodoService {
constructor() { }
}</code></pre>
</section>
<section>
<h1>
Inyección de dependencias: componente
</h1>
<pre><code class="js">export class ProfileService {
constructor(private httpClient: HttpClient) {}
}
@Component({
/* . . . */
providers: [ProfileServicet]
})
export class ProfileComponent {
constructor(
private profileService: ProfileService,
private: BreakpointService) {}
}</code></pre>
</section>
<section>
<h1>Servicios ¿Para que?</h1>
<ul>
<li>Agrupar funcionalidad compartida</li>
<li>Comunicar componentes</li>
<li>Ordenar mejor el código</li>
</ul>
</section>
<section>
<h1>Ejercicio</h1>
<p>Tomar el codigo del branch <a href="https://github.com/utnfrrottads/angular9-example/tree/services">servicios</a> bajarlo a su proipio repo e implementar
en otro servicio llamado LocalStorageService el guardado de la lista de forma persistente segun las apis del navegador</p>
<ul>
<li>
<a href="https://developer.mozilla.org/es/docs/Web/JavaScript/Referencia/Objetos_globales/JSON/stringify">Json stringify</a>
</li>
<li><a href="https://developer.mozilla.org/es/docs/Web/API/Storage/LocalStorage">LocalStorage</a></li>
</ul>
</section>
</section>
<section>
<section>
<h2>Que es la WWW</h2>
<p>
La World Wide Web (Web), es una red de recursos de información.
</p>
<ol>
<li>Un esquema uniforme de nombres para localizar recursos en la Web (p.ej., URIs).</li>
<li>Protocolos, para acceder a recursos con nombre en la Web (p.ej., HTTP).</li>
<li>Hipertexto, para navegar fácilmente entre recursos (p.ej., HTML, DOM).</li>
</ol>
</section>
<section>
<h2>URI: Uniform Resource Identifier</h2>
<pre>scheme:[//[user[:password]@]host[:port]][/path][?query][#fragment]</pre>
Ejemplos
<ul>
<li>http://www.google.com</li>
<li>https://andres.otaduy:[email protected]/~aotaduy/test.php</li>
<li>http://andres.otaduy:[email protected]/~aotaduy/test.php</li>
<li>ftp://example.org/resource.txt</li>
<li>mailto:[email protected]</li>
</ul>
</section>
<section>
<h1>HTTP</h1>
<p>Hyper Text transfer protocol</p>
<p>Actualmente el protocolo por defecto para trabajar en el browser</p>
<p>Ultimamente el mas popular para intercambio de datos entre aplicaciones</p>
</section>
<section>