-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
315 lines (279 loc) · 14.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tutorial sencillo de AngularJS</title>
<meta name="description" content="Introducción a AngularJS">
<meta name="author" content="David Rubert">
<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">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<link rel="stylesheet" href="css/custom.css" />
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<img class="logo" src="images/logo.png" />
<div style="margin-left: 3em;">
<h1 style="font-size: 2.8em">AngularJS</h1>
<h3>Introducción y primeros pasos</h3>
<p>
<small><a href="">+ David Rubert</a> / <a href="http://twitter.com/tombatossals">@tombatossals</a></small>
</p>
<h4 class="pdf"><img src="images/pdf.64.png" /> <a href="/dev/reveal.js/?print-pdf">Guardar como PDF</a></h4>
</div>
</section>
<section data-background="#4d7e65" class="white">
<h2>Qué es AngularJS</h2>
<p>
Una tecnología nueva en la capa de cliente que nos permite realizar cosas chachis en nuestras páginas sin necesidad de montar jaleos de código. Separa muy bien la responsabilidad de cada tecnología en su ámbito: CSS, HTML y Javascript, y las comunica cuando lo considera necesario.
<p>
</section>
<section class="white left" data-background="#007777">
<section>
<h2>Por qué AngularJS</h2>
<p style="margin-top: 2em;"><strong>Característica principal.</strong> No manosees el árbol DOM para acceder al valor de un elemento.</p>
<pre>
<code>
// Esto noooooo por favoooor!
var titulo = $("#elem").up("li").first("p").down("span.olala").val();
// Esto se ve mejor :)
var titulo = $scope.titulo;
</code>
</pre>
</section>
<section>
<h2>Por qué AngularJS</h2>
<p>Esto se consigue actualizando la vista automáticamente cuando cambia el modelo, o viceversa. <strong>Two-way data binding.</strong></p>
<img style="width: 500px; float: right;" src="images/twoway.png" />
</section>
<section>
<h2>Por qué AngularJS</h2>
<p>Disponemos de plantillas que extienden el vocabulario del código HTML para proporcionarnos la introducción de lógica en la representación de nuestra información.</p>
<pre>
<code>
<div ng-controller="AlbumCtrl">
<ul>
<li ng-repeat="image in images">
<img ng-src="{{image.thumbnail}}" alt="{{image.description}}">
</li>
</ul>
</div>
</code>
</pre>
</section>
<section>
<h2>Por qué AngularJS</h2>
<ol start="3">
<li><strong>Reausability</strong>. Permite crear componentes (directivas) fácilmente reutilizables (que permiten aislar totalmente su función, no chocan con otros).</li>
<li><strong>Testing</strong>. Al tener componentes aislados, podemos testear su comportamiento de manera independiente.</li>
<li><strong>Inyección de dependencias</strong>. Si necesitamos hacer uso de un servicio, lo inyectamos en nuestro controlador directamente y funciona.</li>
<ol>
</section>
</section>
<section class="white left" data-background="#007777">
<section>
<h2>Vocabulario</h2>
<p>
<strong>Scope</strong>. Es el responsable de detectar los cambios en el modelo y proporciona el contexto a las plantillas.
</p>
<pre>
<code>
<!doctype html>
<html ng-app>
<head> ... </head>
<body>
<div ng-controller="GreetCtrl">
Hello {{name}}!
</div>
<div ng-controller="ListCtrl">
<ol>
<li ng-repeat="name in names">{{name}}</li>
</ol>
</div>
</body>
</html>
</code>
</pre>
</section>
<section>
<h2>Vocabulario</h2>
<p>
<strong>Controlador</strong>. Es el código con la lógica que comunica el modelo con la vista.
</p>
<img style="border: 0px; width: 500px; float: right;" src="images/concepts-controller.png" />
</section>
<section>
<h2>Vocabulario</h2>
<p>
<strong>Modelo</strong>. Son los datos, que junto con la plantilla producen las vistas.
</p>
<img style="border: 0px; width: 500px; float: right;" src="images/concepts-model.png" />
</section>
<section>
<h2>Vocabulario</h2>
<p>
<strong>Vistas</strong>. Lo que el usuario visualiza. Parte de una plantilla, se funde con el modelo y se renderiza en el árbol DOM.
</p>
</section>
<section>
<h2>Vocabulario</h2>
<p>
<strong>Vistas</strong>. Lo que el usuario visualiza. Parte de una plantilla, se funde con el modelo y se renderiza en el árbol DOM.
</p>
</section>
</section>
<section class="fullscreen">
<section data-background="images/shutup.jpg">
<h1>Now you say: Shut up and take my money!</h1>
</section>
<section data-background="images/wait.jpg">
</section>
<section data-background="images/slowly.jpg">
<h1>Let's go slowly inside the code!</h1>
</section>
</section>
<section>
<section>
<h1 style="line-height: 3em; font-weight: bold;">Paso 1</h1>
<h2>Montando la infraestructura</h2>
<img class="logo" src="images/logo.png" />
</section>
<section>
<pre>
<code>
$ git clone https://github.com/tombatossals/angularjs-tutorial
$ git checkout phase1
</code>
</pre>
<ul>
<li><a href="http://editorconfig.org/">.editorconfig</a></li>
<li><a href="http://gruntjs.com/">Grunt</a></li>
<li><a href="http://bower.io/">Bower</a></li>
<li><a href="http:///git-scm.com">.gitignore</a></li>
<li><a href="https://npmjs.org/">package.json</a></li>
</ul>
</section>
<section>
<h2>Examinando index.html/app.js</h2>
<ul>
<li><strong>ng-app</strong></li>
<li><strong>ng-controller</strong></li>
<li><strong>ng-model</strong></li>
<li><strong>ng-show</strong></li>
<li><strong>{{ template_vars }}</strong></li>
</ul>
</section>
<section>
<h2>Testeando la aplicación</h2>
<pre>
<code>
$ grunt karma
Running "karma:unit" (karma) task
INFO [karma]: Karma server started at http://localhost:9018/
INFO [launcher]: Starting browser PhantomJS
INFO [PhantomJS 1.9 (Linux)]: Connected on socket id obUW2LZ82sHw2azmErbC
PhantomJS 1.9 (Linux): Executed 1 of 1 SUCCESS (0.123 secs / 0.011 secs)
</code>
</pre>
<p>
<a href="https://raw.github.com/tombatossals/angularjs-tutorial/master/src/test/unit/directivesSpec.js">Unit test</a>
</p>
</section>
</section>
<section>
<section>
<h1 style="line-height: 3em; font-weight: bold;">Paso 2</h1>
<h2>Más directivas y servicios</h2>
<img class="logo" src="images/logo.png" />
</section>
<section>
<pre>
<code>
$ git clone https://github.com/tombatossals/angularjs-tutorial
$ git checkout phase2
</code>
</pre>
<ul>
<li><strong>Filtro number</strong>. Números decimales.</li>
<li><strong>ng-cloak</strong>. Esperar antes de renderizar la plantilla.</li>
<li><strong>Watches</strong>. Inspeccionando variables del modelo.</li>
<li><strong>Servicio routeProvider</strong>. Enrutador.</li>
<li><strong>Vistas parciales</strong>. Cargar mini-plantillas.</li>
<li><strong>Tests E2E</strong>. Tests End-to-End.</li>
</ul>
</section>
</section>
<section>
<section>
<h1 style="line-height: 3em; font-weight: bold;">Paso 3</h1>
<h2>Directivas y llamadas remotas</h2>
<img class="logo" src="images/logo.png" />
</section>
<section>
<pre>
<code>
$ git clone https://github.com/tombatossals/angularjs-tutorial
$ git checkout phase2
</code>
</pre>
<ul>
<li><strong>Filtro number</strong>. Números decimales.</li>
<li><strong>ng-cloak</strong>. Esperar antes de renderizar la plantilla.</li>
<li><strong>Watches</strong>. Inspeccionando variables del modelo.</li>
<li><strong>Servicio routeProvider</strong>. Enrutador.</li>
<li><strong>Vistas parciales</strong>. Cargar mini-plantillas.</li>
<li><strong>Tests E2E</strong>. Tests End-to-End.</li>
</ul>
</section>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
mouseWheel: true,
overview: false,
width: 900,
height: 700,
theme: Reveal.getQueryHash().theme || 'sky', // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'fade', // default/cube/page/concave/zoom/linear/fade/none
backgroundTransition: 'slide',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/search/search.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
Reveal.addEventListener( 'ready', function( event ) {
if (window.location.search.match( /print-pdf/gi )) {
window.print();
}
} );
</script>
</body>
</html>