web components: the future is not far...

37
Web Components: The Future Is Not Far Away Souvik Basu, Software Architect/UI Lead/Coder, ecoInsight

Upload: others

Post on 07-Mar-2020

7 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Web Components:

The Future Is Not Far Away

Souvik Basu, Software Architect/UI Lead/Coder, ecoInsight

Page 2: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Why WebComponents?

• Is there a “real” problem we are trying to solve

• Or is it just another “cool” thing to know

• Semantic page design

• Encapsulation

• Extending functionality

• User experience vs developer nightmare

Page 3: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

BASICS

Page 4: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Custom Elements

Page 5: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Template

Page 6: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

HTML Import

Page 7: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Shadow DOM

Page 8: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

DEEP DIVE

Page 9: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Hello World!

Page 10: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Styling of Shadow DOM

Page 11: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Light DOM

Page 12: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Themes

Page 13: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Extends

Page 14: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

IS IT READY?

Page 15: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Cross browser compatibility

Page 16: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Are We Componentized Yet?

• http://jonrimmer.github.io/are-we-componentized-yet/

Page 17: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

• http://stackoverflow.com/questions/18089075/what-is-the-difference-between-polymer-elements-and-angularjs-directives

Page 18: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Using JS libs with WebComponents

Page 19: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Using MVC frameworks with WebComponents

Page 20: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Performance

Page 21: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Performance

• Object.observe

• Conditional loading of Polyfill

• Minimize shadow DOM count

Page 22: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Responsiveness

Page 23: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Accessibility

Page 24: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Accessibility

• ARIA

• roles

• widgets that aren't otherwise available in HTML 4

• states

• current interaction state of an element

• properties

• characteristics of these widgets

• Allow keyboard navigation

Page 25: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Debugging

Page 26: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Debugging

• Debug binding

Page 27: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Deployment

Page 28: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Globalization

Page 29: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Testing

Page 30: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Polymer

Page 31: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Polymer

• Data Binding• Messaging• Handy methods• Paper library• Extending components• Accessing methods in Components• Non UI components• Polyfill• Open Source• Mixins

Page 32: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Why Not Angular?

Page 33: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

IS IT PERFECT?

Page 34: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

Open issues

• Issues with Polymer paper element library

• Using requires

• No library component composite for table and calendar

• It’s not 1.0 yet

• Memory leaks and performance issues

• Issues with events and inheritance

• Debugging declarative binding

• Use of template in IE

Page 35: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

WRAPPING UP

Page 36: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software

How we build Apps using Web Components?

• Bottom up approach

• Test in all browsers

• Conditional download of Polyfill

• Inheritance vs Composition

Page 37: Web Components: The Future Is Not Far Awaydevelopermarch.com/...HallC_1700_GIDS2015_WebComponents_SouvikBasu.pdf · Web Components: The Future Is Not Far Away Souvik Basu, Software