WebComponents

with



Julián David Duque

Developer by Passion

@julian_duque

about.me/julianduque

Act I


Specs




Custom Elements

var MyElement = document.registerElement('my-element');
// or document.createElement


<my-element></my-element>
http://w3c.github.io/webcomponents/spec/custom/

HTML Imports

<link rel="import" href="my-widget.html">

<my-widget></my-widget>
http://w3c.github.io/webcomponents/spec/imports/

Templates

<template>
  <div>
    Template content
  </div>
</template>
http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting.html#the-template-element

Shadow DOM
<style>
  my-element {
    display: block;
  }

  my-element > div {
    border: solid 1px #ccc;
  }
</style>

<my-element>
  <div>Box with border</div>
</my-element>
var shadow = el.createShadowRoot(); 
shadow.innerHTML = "<style> span { color: orange }</style>" 
+ "<span>Hello :)</span>";

http://w3c.github.io/webcomponents/spec/shadow/




Current Status

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

Act II


Using an Element


<!-- Polyfill for older browsers -->
<script src="bower_components/platform/platform.js"></script>

<!-- HTML Import component -->
<link rel="import" href="bower_components/google-map/google-map.html">
<!-- Use Component -->
<google-map latitude="6.2670502" longitude="-75.5839547" zoom="15"></google-map>


Creating an Element

<polymer-element name="hello-world" attributes="who">
  <template>
    <p>Hello <strong>{{who}}</strong></p>
  </template>

  <script>
    Polymer('hello-world', {
      who: 'World'
    });
  </script>
</polymer-element>


Advanced Element

<polymer-element name="my-counter" attributes="counter">
<template>
<style> /*...*/ </style>
<div id="label"><content></content></div>
Value: <span id="counterVal">{{counter}}</span><br>
<button on-tap="{{increment}}">Increment</button>
</template>
<script>
Polymer({
counter: 0, // Default value
counterChanged: function() {
this.$.counterVal.classList.add('highlight');
},
increment: function() {
this.counter++;
}
});
</script>
</polymer-element>



Core Elements

  • core-ajax
  • core-animation
  • core-input
  • core-menu
  • core-selector
  • ...


http://www.polymer-project.org/docs/elements/



Paper Elements

  • paper-button
  • paper-tabs
  • paper-dialog
  • ....

http://www.polymer-project.org/docs/elements/paper-elements.html


Other Elements

http://customelements.io/


  • video-camera
  • x-gif
  • x-instragram
  • ...

Finale


"For my presentation today,

I’m going to do some live coding"

http://nodejsreactions.tumblr.com/post/68275292840/for-my-presentation-today-im-going-to-do-some-live



Learn More


http://webcomponents.org/

http://www.polymer-project.org/

http://customelements.io/

http://component.kitchen/

http://io2014codelabs.appspot.com/

WebComponents with Polymer

By Julián Duque

WebComponents with Polymer

  • 2,217