Web Components实践

上一时代的“牺牲品”是JQuery,如今Web Components被越来越多的浏览器所支持,Vue或许是下一个“祭品”。

组件化、复用,这几乎是所有开发者追求的东西。Web Components就是为此而提出。可以使用来创建封装功能的定制元素,可以在你喜欢的任何地方重用,不必担心代码冲突。

这样的理念和Vue十分相似,专注于组件。所以Web Components或许是未来的方向!我在这里写一些Web Components的例子,供学习与参考!

自定义elements

Web Components通过CustomElementRegistry.define()来定义elements,目前有两种elements,独立的element与继承自基本的HTML element

独立的element

独立的element像这样的自定义标签。代码如下:

customElements.define('custom-element',
  class MyCustomElement extends HTMLElement {
    constructor() {
      super();

      //创建

const pElem = document.createElement('p'); pElem.textContent = this.textContent; pElem.style.color = 'red'; //加入根节点 const shadowRoot = this.attachShadow({mode: 'closed'}); shadowRoot.appendChild(pElem); } } )
红色字体的段落!

实际的效果如下:无法预览,见我博客

继承自基本的HTML element

通过例如

的方式调用,例如:

customElements.define('custom-p',
  class MyCustomElement extends HTMLParagraphElement  {
    constructor() {
      super();
      //创建
      const pElem = document.createElement('span');
      pElem.textContent = this.textContent;
      pElem.style.color = 'red';
      //加入根节点
      const shadowRoot = this.attachShadow({mode: 'closed'});
      shadowRoot.appendChild(pElem);
    }
  },
  { extends: 'p' }
)

红色字体的段落!

实际的效果如下:无法预览,见我博客

生命周期回调函数

在自定义的element的构造函数中,可以指定多个不同的回调函数,它们将会在元素的不同生命时期被调用:

  • connectedCallback:当 custom element首次被插入文档DOM时,被调用。
  • disconnectedCallback:当 custom element从文档DOM中删除时,被调用。
  • adoptedCallback:当 custom element被移动到新的文档时,被调用。
  • attributeChangedCallback: 当 custom element增加、删除、修改自身属性时,被调用。

例如:

customElements.define('other-custom-element',
  class MyOtherCustomElement extends HTMLElement  {
    constructor() {
      super();
      //......
    }
    connectedCallback() {
      console.log('Custom square element added to page.');
    }
    disconnectedCallback() {
      console.log('Custom square element removed from page.');
    }
    adoptedCallback() {
      console.log('Custom square element moved to new page.');
    }
    attributeChangedCallback(name, oldValue, newValue) {
      console.log('Custom square element attributes changed.');
    }
  }
)

Shadow DOM

shadow

如图,Shadow DOM会在自定义标签解析时,加载到普通的DOM上。内部可以通过Element.attachShadow()来获取shadow root。它有一个mode属性,值可以是open或者closed,表示能否在外部获取Shadow DOM对象,一般而言应当为closed,内部实现不应该对外可见。

HTML templates

如果你熟悉Vue的话,这块与它很相似,是template与slot。



    
    Morgan Stanley
    36
    Accountant

customElements.define('person-details',
  class extends HTMLElement {
    constructor() {
      super();
      const template = document.getElementById('person-template');
      const templateContent = template.content;
      const shadowRoot = this.attachShadow({mode: 'closed'});
      shadowRoot.appendChild(templateContent.cloneNode(true));
  }
});

实际效果如下:无法预览,见我博客

HTML Imports

这块存在争议,Mozilla认为将来应该用更合适的方式。不多做介绍。

参考

  • MDN Web_Components

近期,打算利用这个技术写自己的个人主页!!

本文作者: Mr.J
本文链接: https://www.dnocm.com/articles/beechnut/web-components/
版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!

你可能感兴趣的:(Web Components实践)