Skip to content

Books Tracking Manager - project to manage your reads and you can categorize your books as ( want to read - currently reading - or read ) and you can search for books on the database

Notifications You must be signed in to change notification settings

yahyaessam/React-manage-myreads

Repository files navigation

MyReads Project ( React )

Project Description

Project to manage your Reads which you can:

  • 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

Start Project Locally:

  • install all project dependencies with npm install
  • start the development server with npm start

Project Content

pages

  • Main page

    • contains three shelves ( categories ) of books
      • Currently reading
      • Want to Read
      • Read
  • Search Page

    • contains:
      • Search Input
      • Search Result View

Components Structure

├── src
    └── components
        ├── bucket-component
        ├── home-component
        ├── ├── book-shelf-component
        ├── ├── ├── book-card-component
        ├── ├── ├── ├── book-rating-component
        ├── ├── header-nav-component
        ├── search-component

Backend Server

getAll

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.

update

Method Signature:

update(book, shelf)
  • book: <Object> containing at minimum an id 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

search

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.

About

Books Tracking Manager - project to manage your reads and you can categorize your books as ( want to read - currently reading - or read ) and you can search for books on the database

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published