The frontend/UI server, written in JS using the MarkoJS library
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.
 
 
 
 

34 lines
522 B

module.exports = class {
onCreate(input) {
this.state = {
modal: null,
removed: false,
commentLabels: {
Article: "Comment",
Message: "Message",
Chat: "Chat Message",
},
}
}
updateChapter(data) {
this.emit("edit", data)
}
moveChapter(data) {
this.emit("move", data)
}
removeChapter() {
this.state.removed = true
this.emit("remove")
}
open(modal) {
this.state.modal = modal
}
close() {
this.state.modal = null
}
}