Skip to content

Commit c3b96c2

Browse files
committed
🐛 It's toggle not complete. #CallAThingAThing /cc @tmornini
1 parent 6d34a3e commit c3b96c2

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

examples/to-do/index.es

+19-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,32 @@ Element `to-do`
44

55
initialize () {
66
this.context.tasks =
7-
[{ task: 'Wash clothes' }, { task: 'Eat food' }]
7+
[{ task: 'Wash clothes', completed: true }, { task: 'Eat food' }]
88
}
99

1010
onsubmit (event, input = this.select `input`) {
1111
event.preventDefault ()
1212

1313
this.context.tasks
14-
.push (input.value)
14+
.push ({ task: input.value })
1515

1616
input.value = ''
1717
}
1818

19-
onidle () { console.log ('idling') }
19+
onidle () {
20+
const
21+
check = (task, id) =>
22+
task.completed && mark (id)
23+
24+
, mark = (id, selector = `input[id="${id}"]`) =>
25+
this
26+
.select (selector)
27+
.checked = true
28+
29+
this.tasks.map (check)
30+
31+
console.log ('idling')
32+
}
2033

2134
all (event) {
2235
event.prevent () // from painting
@@ -26,9 +39,9 @@ Element `to-do`
2639
.map (checkbox => checkbox.checked = true)
2740
}
2841

29-
complete (event, id = event.target.id) {
30-
this.context.tasks
31-
[id].completed = true
42+
toggle (event, id = event.target.id) {
43+
this.context.tasks[id].completed =
44+
!!!this.context.tasks[id].completed
3245
}
3346

3447
remove (event) {

examples/to-do/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>{name}'s &lt;to-do&gt; List</h1>
1515
<template name=tasks>
1616
<fieldset>
1717
<!-- {#} - current index -->
18-
<input id={#} onclick=complete type=checkbox>
18+
<input id={#} onclick=toggle type=checkbox>
1919

2020
<label for={#}>{task}</label>
2121

0 commit comments

Comments
 (0)