You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
437 B
21 lines
437 B
module.exports = class {
|
|
onCreate() {
|
|
this.state = {
|
|
highlights: [],
|
|
}
|
|
}
|
|
|
|
select(value) {
|
|
this.emit("select", value)
|
|
}
|
|
|
|
toggleHighlight(id) {
|
|
if (this.state.highlights.includes(id)) {
|
|
this.state.highlights = this.state.highlights.filter(id2 => id2 !== id)
|
|
} else {
|
|
this.state.highlights = this.state.highlights.concat(id)
|
|
}
|
|
|
|
this.emit("hightlights", this.state.highlights);
|
|
}
|
|
}
|