Skip to content

nyette/hogwarts-dumbo-web-career-021819

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hogwarts: The React app for fans of prize-winning pigs

React Week 1 Project

Project goals:

  • create an index displaying all hog tiles

  • render each hog name and picture in a tile

  • show the hog's details upon a user's click

  • allow users to sort the hogs based on name and weight and filter the hogs that are greased

  • BONUS: allow users to hide hogs (not delete them, just hide them from view!)

  • BONUS: bring in pig gifs from an API

  • BONUS: implement Semantic Cards for each hog

Project requirements:

  • functional and container components (at least one of each, likely you'll have several of each)
  • components using state and props
  • re-renders based on client-side events

What we have so far:

  • a file containing all our hog data imported into App.js
  • a folder of hog images
  • a functional nav component rendered in our App.js

Trying to figure out where to start?

There are lots of ways to build this project, and while some ways are better than others, there is no 'right' way! Start by thinking about which components you'll be building and whether they'll be presentational or container components.

Once you've decided on your components, use the MVP approach. What's the simplest thing we can render to the page? Perhaps a paragraph tag displaying each hog's name? Which components would this involve?

When building your filter and sort functionalities, consider what you want to store in state and where that state should be stored. How can a child component pass information up to its parent component? Think about what needs to happen upon each index rerender. What if a user filters out ungreased pigs, and then wants the remaining pigs sorted by weight?

Be sure to use good programming practices, such as clear variable names and single responsibility functions. React apps can quickly become tangled and hard to debug if built without best practices!

Styling

We've imported the Semantic library to keep your piggies looking pretty. To keep your hogs in columns, make sure their parent container has the class "ui grid container". The children in the columns should have class "ui eight wide column". (Semantic uses a grid with a default of 16 units wide, so 8-wide will make two columns and 4-wide will make 4 columns.) Semantic will take care of assigning the columns for you. You can also try implementing Semantic Cards for each hog.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.9%
  • CSS 3.3%
  • HTML 2.8%