File tree 2 files changed +20
-7
lines changed
2 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,32 @@ Element `to-do`
4
4
5
5
initialize ( ) {
6
6
this . context . tasks =
7
- [ { task : 'Wash clothes' } , { task : 'Eat food' } ]
7
+ [ { task : 'Wash clothes' , completed : true } , { task : 'Eat food' } ]
8
8
}
9
9
10
10
onsubmit ( event , input = this . select `input` ) {
11
11
event . preventDefault ( )
12
12
13
13
this . context . tasks
14
- . push ( input . value )
14
+ . push ( { task : input . value } )
15
15
16
16
input . value = ''
17
17
}
18
18
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
+ }
20
33
21
34
all ( event ) {
22
35
event . prevent ( ) // from painting
@@ -26,9 +39,9 @@ Element `to-do`
26
39
. map ( checkbox => checkbox . checked = true )
27
40
}
28
41
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
32
45
}
33
46
34
47
remove ( event ) {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ <h1>{name}'s <to-do> List</h1>
15
15
< template name =tasks >
16
16
< fieldset >
17
17
<!-- {#} - current index -->
18
- < input id ={#} onclick =complete type =checkbox >
18
+ < input id ={#} onclick =toggle type =checkbox >
19
19
20
20
< label for ={#} > {task}</ label >
21
21
You can’t perform that action at this time.
0 commit comments