Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Ui for Angular haters by @escusado
Search
gdljs
February 17, 2016
0
110
Ui for Angular haters by @escusado
Slides de la plática Ui for Angular haters by @escusado
Del 26 de Enero de 2016 en GDLJS
gdljs
February 17, 2016
Tweet
Share
More Decks by gdljs
See All by gdljs
Construyendo la mejor experiencia de pagos en línea by @IvanChukitow
gdljs
0
72
Testabilidad en Javascript by @codingpains
gdljs
0
35
Desarrollo de aplicaciones con react native by @charliesbox
gdljs
0
130
¿Debería usar la librería de moda en mi proyecto? by @siedrix
gdljs
0
130
Agile Gamification by @chukitow
gdljs
0
53
Por qué hicimos nuestro propio NodeJS framework by @sgarza
gdljs
0
34
¿Cómo empezar a programar? by @amicavi
gdljs
0
93
Concurrencia y Paralelismo en Javascript by @eatcodetravel
gdljs
0
570
Caldo de Kafka para Node by @albertain
gdljs
0
75
Featured
See All Featured
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Designing for humans not robots
tammielis
253
25k
Why You Should Never Use an ORM
jnunemaker
PRO
57
9.4k
Mobile First: as difficult as doing things right
swwweet
223
9.7k
Into the Great Unknown - MozCon
thekraken
39
1.9k
The Straight Up "How To Draw Better" Workshop
denniskardys
234
140k
Producing Creativity
orderedlist
PRO
346
40k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Become a Pro
speakerdeck
PRO
28
5.4k
For a Future-Friendly Web
brad_frost
179
9.8k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
Site-Speed That Sticks
csswizardry
10
660
Transcript
None
None
None
None
None
| COMPLEXITY + PROBLEM SOLUTION MAXIMUM ACCEPTABLE CODE NIRVANA CODE
HELL WE ARE HERE
None
None
| COMPLEXITY + PROBLEM SOLUTION
...
None
None
None
None
None
None
HOME
None
None
LET’S GO BACK TO SIMPLER TIMES
| COMPLEXITY + PROBLEM SOLUTION
None
None
None
None
DEALING WITH TREES
USE SIMPLE UNTIL IT GETS COMPLEX
FRAMEWORK APOCALYPSE
None
None
| COMPLEXITY + PROBLEM SOLUTION
@azendal
The problem: How does the minimum ui component looks like?
None
None
None
None
None
None
A proposal
Widget
A library to define Ui components. [it’s just a class]
Havely Based on Neon/Widget by @azendal
None
class Button extends NanoWidget { } .element [.name] .render(targetEl, beforeEl)
.bind(‘event’, handler()) .unbind(‘event’, handler()) .dispatch(‘event’, {data}) .appendChild(<child>) .removeChild(<child>) [.children] [.parent] .activate() .deactivate() .enable() .disable() [.active] [.disabled] .destroy()
this.appendChild(new Header({ name: ‘header’, class : ‘home-color’ }); [...] app.header.menu.activate();
Build on top of it
; github.com/escusado/nano-widget @escusado