Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Polymer : Light DOM vs Local DOM

What is the difference between Polymer's light DOM and local DOM? From the docs(1):

The DOM that an element creates and manages is called its local DOM. This is distinct from the element's children which are sometimes called its light DOM for clarity.

This doesn't seem to help much. Isn't the light DOM supposed to contain the children and if so what does the local DOM contain?

[1] https://www.polymer-project.org/1.0/docs/devguide/local-dom

like image 325
scarecrow Avatar asked Aug 09 '16 09:08

scarecrow


People also ask

What is the difference between shadow DOM and virtual Dom?

In short, the shadow DOM is a browser technology whose main objective is to provide encapsulation when creating elements. On the other hand, the virtual DOM is managed by JavaScript libraries—e.g., React—and it's mostly a strategy to optimize performance.

What is shadow DOM and light DOM?

With shadow DOM, CSS styles defined in a parent component don't apply to a child component. Contrastingly, light DOM enables styling from the root document to target a DOM node and style it. The styles on the following native shadow component cascades into the child component's light DOM.

What is the benefit of shadow DOM?

Shadow DOM is very important for web components because it allows specific sections of the HTML document to be completely isolated from the rest of the document. This means CSS styles that are applied to the DOM are not applied to the Shadow DOM, and vice versa.

What is meant by shadow DOM?

Shadow DOM allows hidden DOM trees to be attached to elements in the regular DOM tree — this shadow DOM tree starts with a shadow root, underneath which you can attach any element, in the same way as the normal DOM.


2 Answers

Here's an example to explain the difference. Suppose you have the following custom element:

<dom-module id="x-foo">

  <template>
    <div>I am local dom</div>
    <content></content>
  </template>

  <script>
    Polymer({
      is: 'x-foo'
    });
  </script>

</dom-module>

And you use it like this in your document:

<x-foo>I am light dom</x-foo>

What ever you put into the template of the element is local dom. What you put as children to your custom element when you use it is light dom. So, the local dom is determined by the creator of the element, while the light dom is set by the user of the element. Of course, when you both create and use your own custom elements you have some flexibility what to put where.

like image 99
Maria Avatar answered Dec 04 '22 22:12

Maria


If you create a component <a-component>, then it has its own markup (it's template) which is the local DOM. The template can contain <content></content> tags (one unnamed and multiple named ones) where children are projected to. Content added as children is shown in the light DOM.

When we have an <a-component> with it's local DOM

<dom-module id="a-component">
  <template>
    <div>A</div> 
    <content></content>
    <div>B</div>
  </template>
</dom-module> 

and we use it like

<a-component>
  <div>C</div>
</a-component>

then <div>C</div> is shown in the light DOM. The resulting DOM in the browser then looks like

    <div>A</div> 
    <div>C</div>
    <div>B</div>

Where <div>A</div> and <div>B</div> are called the local DOM when seen from within <a-component> and shady or shadow DOM when seen from the outside of the component and <div>C</div> is in the light DOM.

If we take again this markup we would add to the page

<a-component>
  <div>C</div>
</a-component>

You see that <div>C</div> is directly added by the user of the component while <div>A</div> and <div>B</div> are hidden (in the shadow) and revealed only later when <a-component> is processed by the browser.

The distinction of shady and shadow is about if full shadow DOM is enabled or not for Polymer. Shady emulates shadow to some degree but with some notable differences, this is why it got a different name.

like image 35
Günter Zöchbauer Avatar answered Dec 04 '22 21:12

Günter Zöchbauer