Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

01-reducers #2

Open
wants to merge 1 commit into
base: 00-setup
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 7 additions & 22 deletions src/app/books/components/books-page/books-page.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Component, OnInit } from "@angular/core";

import { Book } from "src/app/shared/models/book.model";
import { BooksService } from "src/app/shared/services/book.service";

import { Observable } from "rxjs";
import { Store, select } from "@ngrx/store";
Expand All @@ -15,14 +14,10 @@ import { map } from "rxjs/operators";
})
export class BooksPageComponent implements OnInit {
books$: Observable<Book[]>;
books: Book[];
currentBook: Book;
total: number;

constructor(
private booksService: BooksService,
private store: Store<fromRoot.State>
) {
constructor(private store: Store<fromRoot.State>) {
this.books$ = this.store.pipe(
select(state => state.books),
map(booksState => booksState.books)
Expand All @@ -35,10 +30,7 @@ export class BooksPageComponent implements OnInit {
}

getBooks() {
this.booksService.all().subscribe(books => {
this.books = books;
this.updateTotals(books);
});
// Pending
}

updateTotals(books: Book[]) {
Expand All @@ -48,6 +40,7 @@ export class BooksPageComponent implements OnInit {
}

onSelect(book: Book) {
this.store.dispatch({ type: "select", bookId: book.id });
this.currentBook = book;
}

Expand All @@ -56,6 +49,7 @@ export class BooksPageComponent implements OnInit {
}

removeSelectedBook() {
this.store.dispatch({ type: "clear select" });
this.currentBook = null;
}

Expand All @@ -68,23 +62,14 @@ export class BooksPageComponent implements OnInit {
}

saveBook(book: Book) {
this.booksService.create(book).subscribe(() => {
this.getBooks();
this.removeSelectedBook();
});
this.store.dispatch({ type: "create", book });
}

updateBook(book: Book) {
this.booksService.update(book.id, book).subscribe(() => {
this.getBooks();
this.removeSelectedBook();
});
this.store.dispatch({ type: "update", book });
}

onDelete(book: Book) {
this.booksService.delete(book.id).subscribe(() => {
this.getBooks();
this.removeSelectedBook();
});
this.store.dispatch({ type: "delete", book });
}
}
25 changes: 25 additions & 0 deletions src/app/shared/state/books.reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,31 @@ export const initialState = {

export function reducer(state = initialState, action: any): State {
switch (action.type) {
case "select":
return {
activeBookId: action.bookId,
books: state.books
};
case "clear select":
return {
activeBookId: null,
books: state.books
};
case "create":
return {
activeBookId: state.activeBookId,
books: createBook(state.books, action.book)
};
case "update":
return {
activeBookId: state.activeBookId,
books: updateBook(state.books, action.book)
};
case "delete":
return {
activeBookId: null,
books: deleteBook(state.books, action.book)
};
default:
return state;
}
Expand Down