simplex/views/index/logged_in.moon

48 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-04-23 12:22:27 +00:00
import Widget from require "lapis.html"
class LoggedIn extends Widget
content: =>
2018-04-24 23:22:50 +00:00
task_item = (task={}) ->
li ->
input type: "checkbox", id: "task-#{task.id}", onchange: "check(#{task.id});", checked: task.done
text " #{task.content}"
2018-04-24 22:31:19 +00:00
api_key_item = (key="") ->
li ->
div class: "row", ->
div class: "column column-60", ->
code key
div class: "column column-offset-20 column-20", ->
button class: "delete", onclick: "delete_item(this);", "x"
2018-04-24 22:31:19 +00:00
2018-04-24 23:22:50 +00:00
script -> raw "var API_KEY = '#{@keys[1].key}';" -- TODO will be removed soon
2018-04-23 12:22:27 +00:00
script src: "/static/index.js"
2018-04-24 23:22:50 +00:00
script id: "task-template", type: "text/x-custom-template", ->
task_item!
script id: "api-key-template", type: "text/x-custom-template", ->
api_key_item!
2018-04-24 17:26:17 +00:00
ul style: "list-style: none;", ->
2018-04-23 12:22:27 +00:00
if @tasks
for task in *@tasks
2018-04-24 23:22:50 +00:00
task_item task
li id: "new-task", ->
2018-04-23 12:22:27 +00:00
form {
onsubmit: "return new_task();"
}, ->
2018-04-24 17:26:17 +00:00
label for: "new-task-input", "New Task"
input type: "text", id: "new-task-input", placeholder: "content", autocomplete: "off"
2018-04-24 17:26:17 +00:00
input type: "submit", value: "Add Task"
button class: "collapsible", "API Keys"
div class: "content", ->
ul style: "list-style: none;", ->
if @keys
for key in *@keys
api_key_item key.key
2018-04-24 23:22:50 +00:00
2018-04-24 17:26:17 +00:00
li id: "new-api-key", ->
button onclick: "new_api_key()", "New API Key"