const template = document.createElement('template'); template.innerHTML = ` ` class profilePic extends HTMLElement { constructor() { super(); this._shadowRoot = this.attachShadow({ 'mode': 'open' }); this._shadowRoot.appendChild(template.content.cloneNode(true)); this.$profilePic = this._shadowRoot.querySelector('#profilePic'); } static get observedAttributes() { return ['url']; } attributeChangedCallback(name, oldVal, newVal) { if (oldVal != newVal) { this[name] = newVal; this.render(); } } render() { this.url ? this.$profilePic.src = this.url : null; } } window.customElements.define('wc-profile-pic', profilePic);