- Search For Books
- Add ( Single or Bulk ) Book/s to your categories
- Categories are ( Currenly Reading - Want to Raed - Read)
- Remove Books from your Categories
- Rate your favorite books
- install all project dependencies with
npm install
- start the development server with
npm start
-
Main page
- contains three shelves ( categories ) of books
- Currently reading
- Want to Read
- Read
- contains three shelves ( categories ) of books
-
Search Page
- contains:
- Search Input
- Search Result View
- contains:
├── src
└── components
├── bucket-component
├── home-component
├── ├── book-shelf-component
├── ├── ├── book-card-component
├── ├── ├── ├── book-rating-component
├── ├── header-nav-component
├── search-component
Method Signature:
getAll()
- Returns a Promise which resolves to a JSON object containing a collection of book objects.
- This collection represents the books currently in the bookshelves in your app.
Method Signature:
update(book, shelf)
- book:
<Object>
containing at minimum anid
attribute - shelf:
<String>
contains one of ["wantToRead", "currentlyReading", "read"] - Returns a Promise which resolves to a JSON object containing the response data of the POST request
Method Signature:
search(query)
- query:
<String>
- Returns a Promise which resolves to a JSON object containing a collection of a maximum of 20 book objects.
- These books do not know which shelf they are on. They are raw results only. You'll need to make sure that books have the correct state while on the search page.