Created
June 28, 2017 19:47
-
-
Save vinyll/8e9aa0c48714611d490645214a203279 to your computer and use it in GitHub Desktop.
Custom native webcomponents demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Component extends HTMLElement { | |
constructor() { | |
super() | |
this.onclick = event => this.click(event) | |
this.props = this.getProps() | |
for(let prop in this.props) { | |
if(this.hasAttribute(prop)) { | |
this.props[prop] = this.getAttribute(prop) | |
} | |
} | |
let shadowRoot = this.attachShadow({mode: 'open'}) | |
this.update() | |
} | |
setProp(name, value) { | |
this.setAttribute(name, value) | |
} | |
attributeChangedCallback(name, oldValue, newValue) { | |
this[`${name}Changed`] && this[`${name}Changed`](oldValue, newValue) | |
this.props[name] = newValue | |
this.update() | |
} | |
update() { | |
this.shadowRoot.innerHTML = this.render() | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<my-button></my-button> | |
<my-button number="5" color="red"></my-button> | |
<script src=components.js></script> | |
<script src=my-button.js></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment