Skip to content

Routing thumbnails using React Router [react]

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.txt
Notifications You must be signed in to change notification settings

WDI-SEA/react-yearbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Yearbook

As WDI comes to a close, what better way to celebrate than with a yearbook... of random people? Let's try incorporating the React Router with a random user API.

Getting Started

  • Fork and clone this repository
  • Run npm install to install all dependencies
  • Run gulp
    • This command will run tasks to transpile an existing React app
  • Run nodemon in a separate terminal tab
    • This command will run the Express server needed to view the app
  • Take a look at the existing app

The current application interacts with https://randomuser.me at two different API endpoints:

  • /api?results=50 - returns 50 people
  • https://randomuser.me/api/?seed=[seed]&id=[id] - returns a particular person from the original call

Try taking a look at the results and see what else the API returns.

Requirements

  • Incorporate React Router so that each person routes to a new page
    • Each person's name should link to a "show" page
    • Suggested route: /people/:seed/:id (you will need the seed that was used to generate the initial data, otherwise it will be completely random data)
    • Each "show" page should have a link to go back to the home page

Suggested Process

  • Install react-router
  • Include dependencies
  • Identify the routes you'll need to create, and setup the app to use react-router.
  • Test the routes with some of the preexisting components
  • Incorporate links and route params

Bonus

  • Add two additional pages
    • /about
      • Give some information about the (nonexistent) school
    • /superlatives
      • Query the Random User API again to retrieve random users (remove the seed). Then, assign random superlative awards
      • This may involve creating an additional endpoint
      • Superlative ideas:
        • Best dressed
        • Weirdest smile
        • Top competitive eater

Licensing

  1. All content is licensed under a CC-BY-NC-SA 4.0 license.
  2. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.

About

Routing thumbnails using React Router [react]

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published