Created
March 2, 2020 21:56
-
-
Save fernandocanizo/e0552f239b24e275aa97ed91bb68ceca to your computer and use it in GitHub Desktop.
Non working hyperhtml component
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
// sample code taken from | |
// https://medium.com/easy-apps-with-hyperhtml/easy-apps-with-hyperhtml-2-1d60fd41bb67 | |
// under "Components" subtitle | |
import hyperHTML from 'https://unpkg.com/hyperhtml?module'; | |
const Table = { | |
html: hyperHTML.bind(document.getElementById('table')), | |
data: [ | |
{ label: 'one', value: 1 }, | |
{ label: 'two', value: 2 }, | |
{ label: 'three', value: 3 } | |
], | |
state: { | |
sorted: '' | |
}, | |
handleEvent(e) { | |
// stop the regular link behaviour | |
e.preventDefault(); | |
// get the current link | |
const link = e.target; | |
// read the attribute data-target, this will tell us how to sort the | |
// array | |
const attr = link.dataset.target; | |
//check if the user clicked on the same attr | |
let asc = this.state.sorted === attr; | |
// simple sort, reverse the sort if asc is true | |
this.data.sort((a, b) => | |
(''+a[attr]).localeCompare(''+b[attr]) * (asc ? 1 : -1)); | |
// update the sorted attr | |
this.state.sorted = asc ? '' : attr; | |
// re-render | |
this.render(); | |
}, | |
render() { | |
return hyperHTML` | |
<table> | |
<thead> | |
<tr> | |
<th><a onclick="${this}" data-target="label" href="#">Label</a></th> | |
<th><a onclick="${this}" data-target="value" href="#">Value</a></th> | |
</tr> | |
</thead> | |
<tbody> | |
${this.data.map(o => | |
hyperHTML.wire(o)`<tr><td>${o.label}</td><td>${o.value}</td></tr>`)} | |
</tbody> | |
</table> | |
`; | |
} | |
}; | |
Table.render(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Initial HTML sent is:
After loading this, nothing happens.