Overview
On May 29, 2015, the polymer team announced the release of Polymer 1.0. ย Since the release of Polymer 0.5 developer preview, the team has rewritten the library from the ground up, with increased performance and better functionality as results.
Polymer is one of the first implementations of a user interface library built upon the Web Components standard. ย Web Components are not fully supported by browsers, but they provide a polyfill library, webcomponents.js, that provides enough functionality to support Web Components and Polymer.
Web Components is the result of the evolution of user interface libraries over the past decade. ย At one point, we strove to separate our HTML, CSS, and JavaScript and ran our HTML through W3C validators. This led to unintended complexitiesโฆ ย For example, looking at a .css file, you couldnโt easily determine which selectors are actually used in your HTML and especially programmatically used in JavaScript. ย Similarly, your JavaScript code was difficult to organize so that code could be reused efficiently on multiple pages.
Polymer uses the term โelementโ in place of โweb component,โ so Iโll use that term in the rest of this article as well.
Polymer 1.0 Basics
Polymer elements neatly bind together the HTML, CSS, and JavaScript for individual custom elements that are highly independent and reusable:
<!doctype html> <html> <head> ย ย ย <title>Figure 1</title> ย ย ย <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> </head> <body> <link rel="import" href="bower_components/polymer/polymer.html"> <dom-module id=โmy-elementโ> ย ย ย <style> ย ย ย ย ย ย ย h1 { color: red; } ย ย ย </style> ย ย ย <template> ย ย ย ย ย ย ย <h1>My Element</h1> ย ย ย ย ย ย ย <content></content> ย ย ย ย ย <button id=โclick-meโ on-click="handleClick">Click Me</button> ย ย ย </template> ย ย ย <script> ย ย ย ย ย ย ย Polymer({ ย ย ย ย ย ย ย ย ย ย ย is: 'my-element', ย ย ย ย ย ย ย ย ย ย ย handleClick: function() { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย alert('clicked'); ย ย ย ย ย ย ย ย ย ย ย } ย ย ย ย ย ย ย }); ย ย ย </script> </dom-module> <my-element> Whatever content I want </my-element> </body> </html>
Listing 1: figure1.html
Figure 1: output of figure1.html
Note the on-click attribute of the Click-Me button. ย You define the handlers for events for the element in the Polymer() call. ย Also, the tags in the element template specifies the point where anything between and the closing tag is injected.
Applications written using Polymer have very descriptive and obvious markup:
<html> <head> ย ย ย โฆ ย ย ย <!-- Polyfill Web Components support for older browsers --> ย ย ย <script src="components/webcomponentsjs/webcomponents-lite.min.js"></script> ย ย ย <link rel="import" href="bower_components/polymer/polymer.html"> ย ย ย <link rel=โimportโ href=โcomponents/blog-post.htmlโ> </head> <body> ย ย ย <blog-post> ย ย ย ย ย ย ย <blog-title>My Blog Post</blog-title> ย ย ย ย ย ย ย <blog-content></blog-content> ย ย ย ย ย ย ย <blog-comments></blog-comments> ย ย ย </blog-post> </body> </html>
Listing 2: Sample application markup
The example in Figure 3 includes several custom elements: โblog-post,โ โblog-title,โ etc. ย Each of those might be implemented in its own file, but for simplicity, Iโve suggested that they are all provided by a single โimportโ, components/blog-post.html.
HTML Imports
The link/import tag is the #include for the WWW. ย It is a feature of the Web Components specification. ย It has similar behavior to the <script> tag, but fetches and injects a snippet of HTML, or in Polymerโs case a component, inline. ย Where it differs from <script> tag is that if you import the same HTML file (URL) more than once, it is only injected the first time. ย Imports are also cached by the browser, so reuse of components via import are less a concern when considering the number of requests from the browser to the server to fetch them.
In this article, I wonโt be creating separate .html files for each component/element. ย Everything including the <dom-module> through the </dom-module> lines in the code samples could be put in separate .html files and loaded via the HTML import mechanism. ย In fact, this will almost certainly be what you will do in practice.
Bower
Polymer uses the Bower Package Manager to deal with element dependencies and to provide an open ecosystem for the sharing of open sourced (and private) elements. ย The Polymer team provides a number of ready-to-use elements that Bower is used to install. ย There will be ย many 3rd party elements available as Polymer 1.0 gains acceptance.
Shadow DOM
Polymer uses Shadow DOM, which provides all sorts of flexibility. ย Two obvious benefits youโll see when using Polymer are the lack of conflict in element IDs across many elements, and the ability to locally style a component without creating conflicts with CSS selector names in other elements or the application itself. ย Consider:
<!doctype html> <html> <head> ย ย ย <title>Figure 1</title> ย ย ย <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> </head> <body> <link rel="import" href="bower_components/polymer/polymer.html"> <dom-module id="custom-button1"> ย ย ย <style> ย ย ย ย ย ย ย #my-button { ย ย ย ย ย ย ย ย ย ย ย color: red; ย ย ย ย ย ย ย } ย ย ย </style> ย ย ย <template> ย ย ย <button id="my-button"><content></content></button> ย ย ย </template> ย ย ย <script> ย ย ย Polymer({ ย ย ย ย ย ย ย is: 'custom-button1' ย ย ย }); ย ย ย </script> </dom-module> <dom-module id="custom-button2"> ย ย ย <style> ย ย ย ย ย ย ย #my-button { ย ย ย ย ย ย ย ย ย ย ย color: blue; ย ย ย ย ย ย ย } ย ย ย </style> ย ย ย <template> ย ย ย <button id="my-button"><content></content></button> ย ย ย </template> ย ย ย <script> ย ย ย Polymer({ ย ย ย ย ย ย ย is: 'custom-button2' ย ย ย }); ย ย ย </script> </dom-module> <custom-button1>Red Button Text</custom-button1> <custom-button2>Blue Button Text</custom-button2> </body> </html>
Listing 3: Shadow DOM
The output of the program in listing 3:
Figure 2: demonstrating shadow DOM, output of Listing 3.
Even though the two buttons have the same id, โmy-button,โ the styles for custom-button1 applies to its button, and the styles for custom-button2 applies to its button.
Data Binding
One way binding and iteration is easy to figure out and use.
<!doctype html> <html> <head> ย ย ย <title>Figure 3</title> ย ย ย <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> </head> <body> ย ย ย <link rel="import" href="bower_components/polymer/polymer.html"> ย ย ย <dom-module id="parent-children"> ย ย ย <style> ย ย ย ย ย ย ย div { ย ย ย ย ย ย ย ย ย ย ย border: 1px solid black; ย ย ย ย ย ย ย ย ย ย ย padding: 5px; ย ย ย ย ย ย ย ย ย ย ย margin-bottom: 10px; ย ย ย ย ย ย ย } ย ย ย </style> ย ย ย <template> ย ย ย ย ย ย ย <div> ย ย ย ย ย ย ย ย ย ย ย <p>My name is <span>{{name}}</span></p> ย ย ย ย ย ย ย ย ย ย ย <p>I have <span>{{count}}</span> children:</p> ย ย ย ย ย ย ย ย ย ย ย <ol> ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย <template is="dom-repeat" items="{{children}}"> ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย <li>{{item}}</li> ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย </template> ย ย ย ย ย ย ย ย ย ย ย </ol> ย ย ย ย ย ย ย </div> ย ย ย </template> ย ย ย <script> ย ย ย ย ย ย ย Polymer({ ย ย ย ย ย ย ย ย ย ย ย is: 'parent-children', ย ย ย ย ย ย ย ย ย ย ย properties: { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย name: { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย type: String, ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย value: 'John' ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย }, ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย children: { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย type: Array, ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย value: [ ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย 'child 1', ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย 'child 2', ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย 'child 3' ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ] ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย }, ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย count: { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย type: Number, ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย computed: 'getCount(children)' ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย } ย ย ย ย ย ย ย ย ย ย ย }, ย ย ย ย ย ย ย ย ย ย ย getCount: function(children) { return children.length } ย ย ย ย ย ย ย }); ย ย ย </script> </dom-module> <parent-children></parent-children> <parent-children name="Paul"></parent-children> <parent-children name="George" children='["child a", "child b"]'></parent-children> <parent-children id="ringo" name="Ringo"></parent-children> <script> ย ย ย document.addEventListener('WebComponentsReady', function () { ย ย ย ย ย ย ย console.log('polymer-ready'); ย ย ย ย ย ย ย document.getElementById('ringo').children = [ ย ย ย ย ย ย ย ย ย ย ย 'one', ย ย ย ย ย ย ย ย ย ย ย 'two', ย ย ย ย ย ย ย ย ย ย ย 'three', ย ย ย ย ย ย ย ย ย ย ย 'four ' ย ย ย ย ย ย ย ]; ย ย ย }); </script> </body> </html>
Listing 4: Data binding
The output of the program in listing 4:
Figure 3: Data Binding, output of Listing 4
Two-Way Binding
Two-way binding is cooperative. ย You listen for events on specific properties for which you care about dealing with value changes.
<!doctype html> <html> <head> ย ย ย <title>Figure 1 </title> ย ย ย <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"> </script> </head> <body> ย ย ย <link rel="import" href="bower_components/polymer/polymer.html"> ย ย <dom-module id=โmy-input> ย ย ย <style> ย ย ย ย ย ย ย #ti { color: red; } ย ย ย </style> ย ย ย <template> ย ย ย ย ย ย ย <input id="ti" type="text" value="{{tival::input}}"> ย ย ย ย ย ย ย <div id="val">value: </div> ย ย ย ย ย ย ย <button on-click="abc">abc </button> ย ย ย </template> ย ย ย <script> ย ย ย ย ย ย ย Polymer({ ย ย ย ย ย ย ย ย ย ย ย is: 'my-input', ย ย ย ย ย ย ย ย ย ย ย properties: { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย tival: { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย type: String, ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย observer: 'handleChange' ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย } ย ย ย ย ย ย ย ย ย ย ย }, ย ย ย ย ย ย ย ย ย ย ย handleChange: function() { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย console.log('change') ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย this.$.val.innerHTML = 'value: '+ ย this.tival; ย ย ย ย ย ย ย ย ย ย ย }, ย ย ย ย ย ย ย ย ย ย ย abc: function() { ย ย ย ย ย ย ย ย ย ย ย ย ย ย ย this.tival = 'abc'; ย ย ย ย ย ย ย ย ย ย ย } ย ย ย ย ย ย ย }); ย ย ย </script> </dom-module> <my-input></my-input> </body> </html>
Listing 5: Two-Way Data Binding
The output of the program in Listing 5:
Figure 4: 2 way binding in action. ย 1st typing โworksโ, second clicked abc button.
Impressions
My experience with 1.0 is mixed. ย The differences between 0.5 and 1.0 are significant enough that the many good things done with 0.5 are not useful anymore. ย The documentation for 0.5 is much better, but not completely relevant. ย The 0.5 to 1.0 migration guide is a decent way to bridge the two, but the 1.0 documentation really needs to be worked on a lot to bring it up to snuff.
Pros
I really like the idea of encapsulating the functionality of a component/element in something like the dom-module syntax Polymer provides. ย IMO, too many frameworks force you to overly complicate your project structure by creating separate files for JavaScript, CSS, and HTML. ย It gets worse when these files are stored in different places in your projectโs directory hierarchy.
Polymer provides responsive design out of the box and adheres to Googleโs Material Design philosophy.
Right away, there are quite a few elements provided by the Polymer team to begin crafting applications.
Polymer is agnostic about its use in single page apps versus being used in multi-paged apps. ย My view is that there is a place for both in the world.
The learning curve for Polymer is measured in hours. ย Compared to heavier weight frameworks like ExtJS or Angular, you will sooner be spending your time crafting your application instead of trying to figuring out and fighting with the core of the framework to achieve what you desire.
No transpiler or watcher is needed.
jQuery isnโt required.
Iโm a big fan of Bower. ย It is not opinionated.
Cons
The initial suite of available add-on elements is decent but not at all sufficient to create even moderately advanced applications. ย For example, there are no data grid elements available, let alone highly optimized ones.
Their suggestion/requirement for using bower to create your custom elements is fine once youโve actually implemented your custom elements. ย During development, it is unnecessary work to have to commit a change, push to a repository, then bower update before you can test your change.
The combination of webcomponents-light.min.js and polymer.html is on the order of 128K bytes before gzip. ย If youโre creating a single page app, this isnโt that big a deal, but it isn’t great for multi-page sites.
The use of HTML import can generate a lot of requests to the server to fetch each element. ย One of the primary rules of website optimization is to reduce the number of requests. ย There is no bundling mechanism that Iโve run across for addressing this problem. ย Any solution would have to inspect third party elements within their HTML files and deal with their dependencies (and the dependencies of the dependencies).
HTML imports require a URI path and Polymer is using relative paths throughout. ย This really makes it difficult to refactor project layout. ย Most everything is going to be bower_components/whatever
Use of Mustache convention actually collides with Mustache/Handlebars/HoganJS/etc. ย I can think of many reasons why Iโd want to process a web component/element source file with a template language like Mustache before serving it to the client/browser. ย Two obvious ones are to be able to comment out chunks of the file using {{! โฆ }} syntax, and to dynamically generate the paths for HTML imports lines.
HTML comments in component/element HTML files are sent to the client. ย Do you really want to waste bandwidth on this? ย Realize that some comments you do want to send, some you donโt.
Polymer is a Google project. ย I can see the synergy between Polymer and Chrome, but I donโt see why theyโre wasting their time with competing ย technologies (AngularJS and Polymer). ย I consider this a con because who knows if theyโll show lesser support for one or the other as time goes on.
Conclusion
If youโre excited about Web Components, which are the future of the World Wide Web, you can start using them now with Polymer. ย Your code will be relatively easy to port and maintain as browsers adopt and implement more and more of the ES Next and Web Components specifications. ย Though you currently wonโt find the ultimate component to do quite a few things, Polymer is already good enough to use to make a lot of applications.
Mike Schwartz
Related Posts
-
NativeScript Layouts for HTML Ninjas
NativeScript is an awesome framework for building cross-platform applications. This article shares tips for creating…
-
NativeScript Layouts for HTML Ninjas
NativeScript is an awesome framework for building cross-platform applications. This article shares tips for creating…