- BEAR WATCHER: Talk through how you are going to do the coding then do the coding individually.
Each year between July and September brown bears in the Katmai National Park congregate along the Brooks River. This river is one of the main rivers that Sockeye Salmon swim up to spawn. The brown bears wait in the shallows of the river and catch the salmon as they jump over rocks. Want to see it in ACTION?
You have been tasked with creating a site scientists and park ranger can use to track these bears.
- Create a new github repo called
bear-watcher
- Create a github project on this repo
- Create feature tickets for this assignment
- Create wireframes for this project and attach them to the appropriate project.
- You must use Boostrap 4 to style your page components.
- Your JS file should be comprised of functions, no actions should happen in your code outside of a function
- Your HTML and JS should all have proper indentations
- You should be using ES6 modules
- Your JS code should be formatted correctly!
- As a user, when the page loads, I should see a bootstrap form that allows me to enter in a bear name and image url for a new bear.
- As a user, when I click the submit button on the new bear form a bear should be added to the page.
- As a user, when there are bears that are being tracked (ie after I have added one), I should see all their information displayed on a card.
- Your project should have 2 modules - bearForm and river.
- bearForm - should be the form
- river - should display all the bears
- As a user, I should be able to click something on each bear to indicate it has just tried to catch a fish.
- As a user, I should be able to click something on each bear to indicate it has just successfully caught a fish.
- As a user, looking at a bear card I should see time stamps and statuses for each time a bear caught a fish or attempted to catch a fish
- As a user, looking at a bear card, I should see a total number of fish caught tally.
Each year in early september one bear is awarded the Fattest Bear award. This award goes to the bear who gains the most weight between July and September. Create an awards section on your application and award GOLD to the bear who has eaten the most fish, SILVER to the bear with the second most eaten fish, and BRONZE to the bear with the third most eaten fish. Where applicable your application should show two winners for an award if the number of fish is tied.