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
140
Agile Gamification by @chukitow
gdljs
0
54
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
580
Caldo de Kafka para Node by @albertain
gdljs
0
75
Featured
See All Featured
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3k
The Cost Of JavaScript in 2023
addyosmani
55
9k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
127
54k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.9k
The Language of Interfaces
destraynor
162
25k
The World Runs on Bad Software
bkeepers
PRO
72
11k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.1k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Building an army of robots
kneath
306
46k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
34
2.3k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Automating Front-end Workflow
addyosmani
1371
200k
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