Skip to content

Instantly share code, notes, and snippets.

@nicholaswmin
Last active December 10, 2024 11:24
Show Gist options
  • Save nicholaswmin/c447556a1b1b498d96c3a7d0eeca6a21 to your computer and use it in GitHub Desktop.
Save nicholaswmin/c447556a1b1b498d96c3a7d0eeca6a21 to your computer and use it in GitHub Desktop.
Encapsulated Web Component (native, zero dependencies)
const template = document.createElement('template')
template.innerHTML = /*html*/`
<style>
* {
font-size: 200%;
}
span {
width: 4rem;
display: inline-block;
text-align: center;
}
button {
width: 4rem;
height: 4rem;
border: none;
border-radius: 10px;
background-color: seagreen;
color: white;
}
</style>
<button id="dec">-</button>
<span id="count"></span>
<button id="inc">+</button>`
class MyCounter extends HTMLElement {
constructor() {
super()
this.count = 0
this.attachShadow({ mode: "open" })
}
connectedCallback() {
this.shadowRoot.appendChild(template.content.cloneNode(true))
this.shadowRoot.getElementById("inc").onclick = () => this.inc()
this.shadowRoot.getElementById("dec").onclick = () => this.dec()
this.update(this.count)
}
inc() {
this.update(++this.count)
}
dec() {
this.update(--this.count)
}
update(count) {
this.shadowRoot.getElementById('count').innerHTML = count
}
}
customElements.define('my-counter', MyCounter)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment