Skip to content

Instantly share code, notes, and snippets.

@rajatk16
Last active April 24, 2019 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajatk16/55b7132c396573c3a7e915afaa6c4444 to your computer and use it in GitHub Desktop.
Save rajatk16/55b7132c396573c3a7e915afaa6c4444 to your computer and use it in GitHub Desktop.
const template = document.createElement('template');
template.innerHTML = `
<style>
:host {
display: block;
}
button {
border: 1px solid black;
cursor: pointer;
}
</style>
<li class="item">
<input type="checkbox">
<label></label>
<p></p>
<button>Remove</button>
<hr>
</li>
`;
export default class MovieItem extends HTMLElement {
constructor() {
super();
this._shadowRoot = this.attachShadow({'mode': 'open'});
this._shadowRoot.appendChild(template.content.cloneNode(true));
this.$item = this._shadowRoot.querySelector('.item');
this.$removeButton = this._shadowRoot.querySelector('button');
this.$title = this._shadowRoot.querySelector('label');
this.$date = this._shadowRoot.querySelector('p');
this.$checkbox = this._shadowRoot.querySelector('input');
this.$removeButton.addEventListener('click', (event) => {
this.dispatchEvent(new CustomEvent('onRemove', {detail: this.index}));
});
}
connectedCallback() {
if(!this.hasAttribute('title')) {
this.setAttribute('title', 'placeholder Title');
}
if(!this.hasAttribute('date')) {
this.setAttribute('date', 'placeholder Date');
}
this._renderMovieItem();
}
_renderMovieItem() {
this.$title.innerHTML = this._title;
this.$date.innerHTML = this._date;
}
static get observedAttributes() {
return ['title', 'date'];
}
attributeChangedCallback(name, oldValue, newValue) {
switch(name) {
case 'title':
this._title = newValue;
break;
case 'date':
this._date = newValue;
break;
}
}
}
window.customElements.define('movie-item', MovieItem);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment