Last active
February 10, 2019 18:32
-
-
Save daveharmswebdev/1898e700c52f6c9256362231de7911fd to your computer and use it in GitHub Desktop.
Todo Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
toggleComplete(todo: ITodo) { | |
const todoUpdate: Update<ITodo> = { | |
id: todo.id, | |
changes: { complete: !todo.complete } | |
}; | |
this.store.dispatch(new ToggleComplete(todoUpdate)); | |
} | |
edit(todo: ITodo) { | |
this.dialogService.openEditDialog(todo).subscribe( | |
submission => { | |
if (typeof submission !== 'undefined' && submission.edit) { | |
const editSubmission: Update<ITodo> = { | |
id: submission.submission.id, | |
changes: { description: submission.submission.description} | |
}; | |
this.store.dispatch(new UpdateDescription(editSubmission)); | |
} | |
} | |
); | |
} | |
markAllAsComplete() { | |
this.todos$.pipe(take(1)).subscribe(todos => { | |
const todoUpdates: Update<ITodo>[] = todos.map(todo => { | |
return { | |
id: todo.id, | |
changes: { | |
complete: true | |
} | |
}; | |
}); | |
console.log(todoUpdates); | |
this.store.dispatch(new MarkAllAsComplete(todoUpdates)); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment