Coder Social home page Coder Social logo

tylander / reactnd-project-myreads-tyler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from udacity/reactnd-project-myreads-starter

0.0 2.0 0.0 432 KB

Tyler's copy of React MyReads Project for Udacity Nanodegree

HTML 0.40% CSS 55.43% JavaScript 44.18%

reactnd-project-myreads-tyler's Introduction

Tyler's MyReads Project

The MyReads project creates a bookshelf app that allows you to select and categorize books you have read, are currently reading, or want to read. This template saved Tyler time by providing a static example of the CSS and HTML markup that may be used, but without any of the React code that is needed to complete the project. Tyler chose to start with the template forked from the Udacity repository, and add interactivity to the app by refactoring the static code in this repository.

Create React App was used to bootstrap the project.

TL;DR

To get started developing right away:

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

A good React design practice is to create new JS files for each component and use import/require statements to include them where they are needed. I'm gonna do that too.

Backend Server

To simplify your development process, we've provided a backend server for you to develop against. The provided file BooksAPI.js contains the methods you will need to perform necessary operations on the backend:

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.

Important

The backend API uses a fixed set of cached search results and is limited to a particular set of search terms, which can be found in SEARCH_TERMS.md. That list of terms are the only terms that will work with the backend, so don't be surprised if your searches for Basket Weaving or Bubble Wrap don't come back with any results.

reactnd-project-myreads-tyler's People

Contributors

tylander avatar thalescomp avatar richardkalehoff avatar veronikabenkeser avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.