hugorod19 / react-dq-props-state-hou01-seng-ft-082420

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discussion Questions: Exploring Props and State Further

In this program, we have three components: App, MasterHog, and BabyHog.

MasterHog:
  • Has an eye color that can change via a radio button on the DOM
  • Renders three BabyHogs, which inherit its eye color
  • Owns the non-variable data associated with each BabyHog. This includes their: name, eye color, and hobby. (Obviously, MasterHog gets to name her babies, and they genetically inherit her eye color. Not obviously, MasterHog also gets to determine their hobbies) Look inside src/db.js to see data defining what the BabyHog offspring should "inherit."
BabyHog:
  • Has an eye color received from its parent
  • Has a hobby assigned by its parent
  • Has a name given by its parent
  • Has a variable weight, that can be changed via buttons

Note: While the MasterHog component can change its own eye color via radio buttons, its children can only inherit the eye color of their parent!

Directions:

  • Understanding the data associated with both the MasterHog as well as the BabyHog components, plan out what data should be kept as state vs. props in each component and then implement it
  • Make use of the src/db.js file (import it!). Hint: arrays can be mapped and return JSX! Just because the starter code has three BabyHog components written in doesn't mean it's an ideal solution
  • Depending on the BabyHog eye color, a different image should be rendered (several are being imported in the BabyHog component)
  • While the changeWeight method has been implemented in BabyHog, it is not 'hooked up' to the component. Make sure the function is invoked so our hogs can grow and shrink when either of the buttons are clicked. (Consider how MasterHog's changeEyeColor method is 'hooked up' if you are stuck here)

About


Languages

Language:JavaScript 49.9%Language:HTML 25.6%Language:CSS 24.5%