Custom Elements: an ecosystem still being worked out

I like Web Components. It has taken a long time to get here but things are moving in the correct direction with Safari shipping Shadow DOM and now landing support for Custom Elements.
I’ve been thinking a lot recently about Web Components, that is custom elements, template, Shadow DOM and CSS variables, specifically I have been focusing some of my thoughts on custom element space and how this can play out on the web in the future because I believe there are lots of interesting possibilities with how the usage of them will evolve over time.

<p>I like Web Components. It has taken a long time to get here but things are
moving in the correct direction with Safari shipping Shadow DOM and now landing
support for Custom Elements.</p>
<p>I've been thinking a lot recently about Web Components, that is <code>custom elements</code>, <code>template</code>, <code>Shadow DOM</code> and <code>CSS variables</code>, specifically I have
been focusing some of my thoughts on custom element space and how this can play
out on the web in the future because I believe there are lots of interesting
possibilities with how the usage of them will evolve over time.</p>
<p>In this post I specifically want to focus on Custom Elements and the impact that
they can have on the web and developers.</p>
<p>Custom Elements are interesting because they allow developers to take an
existing element and extend it. <a href="https://developers.google.com/web/fundamentals/primers/customelements/">For
example</a>
a dedicated share-button (I have a thing about sharing):</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-javascript" data-lang="javascript"><span style="color:#66d9ef">class</span> <span style="color:#a6e22e">ShareButton</span> <span style="color:#66d9ef">extends</span> <span style="color:#a6e22e">HTMLElement</span> {}
window.<span style="color:#a6e22e">customElements</span>.<span style="color:#a6e22e">define</span>(<span style="color:#e6db74">'share-button'</span>, <span style="color:#a6e22e">ShareButton</span>);
<span style="color:#e6db74">`<share-button></share-button>`</span>
</code></pre></div><p>Custom Elements introduces the potential for a brand new ecosystem that I don't
think that we have yet fully worked out and I want to explore that a little
more.</p>
<p>The usage of the elements such as <code><share-button></share-button></code> in your page
is distinct and separate from the declaration and contract of what that element
does.</p>
<p>Will we see standard element names and specs being written for new element sets
that are platform/vendor/host specific?</p>
<h3 id="element-and-walled-gardens">Element and walled gardens</h3>
<p>I've been looking in to <a href="https://ampproject.org/">AMP</a>,
<a href="https://polymer-project.org/">Polymer</a>, <a href="http://brick.mozilla.io/">Mozilla
Brick</a>(seemingly defunct) and other web toolkits, and
one thing hit me is that they are all prefixing their element catalogues with a
project namespace: AMP has <code><amp-*></code> elements; Polymer has <code><polymer-*></code>,
<code><iron-*></code>, <code><app-*></code> etc; <a href="http://brick.mozilla.io/">Mozilla</a> have <code><brick-*></code>.</p>
<p>From the outside it looks like there is a massive platform play to get people
locked into the framework's element set and the name-spacing like we
are seeing puts developers in the position of buying into the stack and even if
it is unintentional they are creating a walled garden that could lock the
developers into one platform.</p>
<p>I do think it is a lot more nuanced than that though, the element authors have
added a namespace to their elements for good reasons, we are early in the
life-cycle for Web Components and owning the top-level name for an element will
look like an ecosystem land grab.</p>
<p>One of my concerns is that there is a lot of rich functionality getting created
that we can drop in and use on our page, but a lot of it is getting duplicated.
Look at
<a href="https://github.com/ampproject/amphtml/blob/master/builtins/amp-img.md"><code><amp-img></code></a>
and <a href="https://elements.polymer-project.org/elements/iron-image"><code><iron-image></code></a>
they are both roughly doing the same thing but they are also both specific
enough to each of the component platforms that they would not be used in each
others platform and I think that is a long-term problem.</p>
<p>I can quite easily see a long term <code><M-n></code> elements, where <code>M</code> is the platform
of choice and <code>n</code> is the element being used and I think this a bad thing for
the long-term health of the platform.</p>
<p>Custom Elements and Web Components have the power to give a huge amount of
control to the developer and I would like to see a world where we invert the
control of the framework creator and give it back to the platform and the web
developer.</p>
<p>As a web developer, you should be in control of the mark-up on your
page and have the element platforms bind to that mark-up instead of being in the
control of the specific vendors element set.</p>
<p>The good thing is that at a technical level, <code><M-n></code> elements is possible and is
working well today, but that shouldn't be the end goal.</p>
<p>I want to ensure that developers don't get massively locked into a framework or
platform just because today the element set is good and instead we have a shared
vocabulary for components such as <code><aspect-image></code> that allows us to choose the
implementation they prefer.</p>
<h3 id="elements-and-open-fields">Elements and open fields</h3>
<p>It is not clear from the spec or the tutorials that the element definition is
distinct from the usage of the element in a page. A lot of examples that I see
follow something similar to the following:</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-javascript" data-lang="javascript"><span style="color:#66d9ef">class</span> <span style="color:#a6e22e">ShareButton</span> <span style="color:#66d9ef">extends</span> <span style="color:#a6e22e">HTMLElement</span> {…}
window.<span style="color:#a6e22e">customElements</span>.<span style="color:#a6e22e">define</span>(<span style="color:#e6db74">'share-button'</span>, <span style="color:#a6e22e">ShareButton</span>);
<span style="color:#e6db74">`<share-button></share-button>`</span>
</code></pre></div><p>The above code has two actors: The [Component Creator] and the [Component User]
and right now if you are building a framework the process looks like:</p>
<ol>
<li>[Component Creator] Defines Contract <code>class XPolyampShareButton extends HTMLElement {…}</code></li>
<li>[Component Creator] Instantiates Contract <code>window.customElements.define('xpolyamp-sharebutton', XPolyampShareButton);</code></li>
<li>[Component User] Use Contract <code><xpolyamp-sharebutton></xpolyamp-sharebutton></code></li>
</ol>
<p>I argue that as an industry we as web developers should push to a model where
the element you import has no control of the element naming and instantiation
and instead we should move to a model like:</p>
<ol>
<li>[Component Creator] Defines Contract <code>class ShareButton extends HTMLElement {…}</code></li>
<li>[Component <del>Creator</del>User] Agrees to use Contract <code>window.customElements.define('share-button', ShareButton);</code></li>
<li>[Component User] Use Contract <code><share-button></share-button></code></li>
</ol>
<p>I'm glossing over a lot of complexity (as a dev you import the
contract you want to use already by virtue of the element set), but the thinking
opens up a lot of opportunity, as a user of the component you are opting in
to the implementation for the element but not how it should be used on the page.</p>
<p>It also has some problems, specifically that we are opening up to requiring a more
formal standardization process around elements and their names, interfaces and
expected function (no small task). The interesting thing though is that the
industry is already starting to do this for each of the vendors elements.
Polymer for example has API interfaces (see
<a href="https://elements.polymer-project.org/elements/iron-image"><code><iron-image></code></a>) and
so does AMP (see
<a href="https://github.com/ampproject/amphtml/blob/master/extensions/amp-social-share/amp-social-share.md"><code><amp-social-share></code></a>)
.</p>
<p>A good developer could take those contracts and re-implement their own
element with the same element name and semantics.</p>
<p>It gets even more interesting when you see that the AMP Project has the <a href="https://github.com/ampproject/amphtml/blob/master/spec/amp-html-components.md#extended-components">start
of a process for element governance and UI
contracts</a>.</p>
<blockquote>
<p>Not attempt to access or manipulate objects outside of the component's immediate ownership – e.g.
elements that are not specified by or children of the component.</p>
</blockquote>
<p>We need to start to think about unifying the elements set.</p>
<h3 id="component-creators">Component Creators</h3>
<p>This is the hard part. Component vendors would have to agree to a contract for
how an element should work. The W3C and WhatWG have been doing this for a while,
but this could be a level abstracted away from the process of defining new
elements. The thing that I like about Custom Elements is that the spec can be
written and formalized in JavaScript as a base implementation.</p>
<ol>
<li>[Component Creator] Declaration of Contract <code>class ShareButton extends HTMLElement {…}</code></li>
</ol>
<p>Facebook define a <code>class ShareButton extends HTMLElement { … }</code>
Mozilla define a <code>class ShareButton extends HTMLElement { … }</code>
Google define a <code>class ShareButton extends HTMLElement { … }</code>
AMP defines a …. you get the picture</p>
<p>If everyone agrees to the same contract for elements, then as a developer you
get a lot more flexibility, it becomes a case of choosing the implementation
that you want.</p>
<p>If you take a quick peak at AMP's <a href="https://github.com/ampproject/amphtml/blob/master/extensions/amp-social-share/0.1/amp-social-share.js">social sharing widget</a> it
is not a million miles away (the creator still owns step 2).</p>
<ol>
<li>[Component Creator] <a href="https://github.com/ampproject/amphtml/blob/master/extensions/amp-social-share/amp-social-share.md">Define Contract</a> “class AmpSocialShare extends AMP.BaseElement {`</li>
<li>[Component User] Agreeing to use Contract <code><script src="https://cdn.ampproject.org/v0/amp-social-share-0.1.js"></script></code></li>
<li>[Component User] Use Contract <code><amp-social-share type="twitter"></amp-social-share></code></li>
</ol>
<p>It opens up the question as to who owns the creation and specifications of
elements. There is an argument that this could be the W3C, but I think Web
Components opens up the creation of elements to new "vendors".</p>
<p>The component will be defined in HTML, CSS and pure JavaScript we don't need to
rely on browser vendors any more to agree on implementing elements, now we can
have meta platforms like Google, Twitter, Facebook, WeChat iterating on the
element unified catalogues (for example).</p>
<h3 id="component-user">Component User</h3>
<p>As a publisher or site developer, one thing that stays consistent for me is my
HTML. I will keep my <code><share-button></share-button></code> on the page and I won't
need to change it. Web Components allows me to use my own tags, as long as I
agree to instantiate us the correct class.</p>
<p><code><script async src="https://somedomain.com/share-button.js"></script></code></p>
<ol start="2">
<li>[Component User] Agreeing to implement Contract <code>window.customElements.define('share-button', ShareButton);</code></li>
</ol>
<p>It can be argued that the [Component Creator] should own the "Agrees to use
Contract" because allowing site owners to user their own tags can create a
number of problems when a <a href="https://paul.kinlan.me/the-headless-web/">headless renderer</a> doesn't
implement the Web Components APIs will be able to understand that an element
name is intended to be follow the implementation defined between element
authors.</p>
<p>Either way, my HTML declares the intent to use the button and that remains
consistent and stable and I can swap out the implementation easily as I see fit
and I think this is the most important thing.</p>
<ol start="3">
<li>[Component User] Use Contract <code><share-button></share-button></code></li>
</ol>
<p>It feels a lot cleaner and there is a shared vocabulary across the entire
web of element sets and their intentions.</p>
<h3 id="platforms-as-the-decider-of-the-component-suite">Platforms as the decider of the component suite</h3>
<p>I have a lot of thoughts about <a href="https://paul.kinlan.me/the-headless-web/">The headless web</a> and how
they can enable a web the web is morphing away from being hosted inside a
traditional browser and into new <a href="https://paul.kinlan.me/rise-of-the-meta-platforms/">meta platforms</a>
like Facebook and WeChat and this presents a very interesting question.</p>
<p>What if the developer wasn't in control of step 2 "Agrees to use Contract", but
instead the host platform was?</p>
<ol>
<li>[Component Creator] Defines Contract <code>class ShareButton extends HTMLElement {…}</code></li>
<li>[Component Platform<del>Creator~~~~User</del>] Agrees to use Contract <code>window.customElements.define('share-button', ShareButton);</code></li>
<li>[Component User] Use Contract <code><share-button></share-button></code></li>
</ol>
<p>Hypothetically, Facebook (sorry, it's not an ad hominem, but it's an example of
a powerful player) in their WebView intercept every <code>customElements.define</code> call
and when they know you are using an element that they can host natively in their
platform they replace what is the JS element you wanted with their own. As long
as they agree to the element's contract your site will still work, the user will
still get value, it has just been stream-lined to operate and be deeply
integrated in the host platform.</p>
<p>I'll just leave it here and we can mull on this.</p>
<h3 id="final-thoughts">Final thoughts</h3>
<p>I like my model of thinking, but there are lots of other ways that we can think
of the owners and users of the components and we are so early on in this new industry
that we as an industry need to iterate on how we build for web components and
how we talk about it.</p>
<p>Web Components will change the world. We need to put developers in control and
not go down into a world where you are locked into a platform just because you
want a nice element in your page.</p>
<p><code><sorry-element>Didn't mean to pick on AMP or Polymer, its just that they have an existing and very compelling element set already</sorry-element></code></p>


Print Share Comment Cite Upload Translate
APA
Paul Kinlan | Sciencx (2024-03-28T23:11:42+00:00) » Custom Elements: an ecosystem still being worked out. Retrieved from https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/.
MLA
" » Custom Elements: an ecosystem still being worked out." Paul Kinlan | Sciencx - Saturday November 5, 2016, https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/
HARVARD
Paul Kinlan | Sciencx Saturday November 5, 2016 » Custom Elements: an ecosystem still being worked out., viewed 2024-03-28T23:11:42+00:00,<https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/>
VANCOUVER
Paul Kinlan | Sciencx - » Custom Elements: an ecosystem still being worked out. [Internet]. [Accessed 2024-03-28T23:11:42+00:00]. Available from: https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/
CHICAGO
" » Custom Elements: an ecosystem still being worked out." Paul Kinlan | Sciencx - Accessed 2024-03-28T23:11:42+00:00. https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/
IEEE
" » Custom Elements: an ecosystem still being worked out." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/. [Accessed: 2024-03-28T23:11:42+00:00]
rf:citation
» Custom Elements: an ecosystem still being worked out | Paul Kinlan | Sciencx | https://www.scien.cx/2016/11/05/custom-elements-an-ecosystem-still-being-worked-out/ | 2024-03-28T23:11:42+00:00
https://github.com/addpipe/simple-recorderjs-demo