Skip to content

Instantly share code, notes, and snippets.

@daveharmswebdev
Last active February 10, 2019 18:32
Show Gist options
  • Save daveharmswebdev/1898e700c52f6c9256362231de7911fd to your computer and use it in GitHub Desktop.
Save daveharmswebdev/1898e700c52f6c9256362231de7911fd to your computer and use it in GitHub Desktop.
Todo Component
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