Chanda Abdul
While enrolled in Thinkful's Web Development bootcamp I created this Full-stack Capstone project. Bloom is an interactive web application that was created to view and manage your plant collection. This app was created so that you can view all of your plants, and keep track of thier care and maintenance.
Link to the Live URL application
- React
- Router
- Context
- Axios
- Libraries
- Sweet Alerts
- HTML
- CSS
- Vercel(Zeit)
- Node.js
- Express
- Knex
- Mocha, Chai & Supertest
- Morgan, CORS, Helmet
- PostgreSQL
- Elephant SQL
- Heroku
Landing Page
- As a new user
- I want to understand what this app does and if it will be useful for me.
- I would like to create a garden
- As a returning user
- I would like to learn more about my plants
- I would like to update my garden
View your garden screen
- As a new user
- I would like to see what a sample plant collection "garden" looks like
- As a returning user
- I would like to review my current plant collection
Add a plant screen
- As a returning user
- I would like to add a new plant to my garden
Not Found screen
- As a new user AND As a returning user
- I would like to know that the page I navigated to does not exist
- index.js (stateless)
- src/App.js(statefull)
- NavBar.js
- SignupButton.js
- LandingPage.js
- ViewGardenButton.js
- ViewGardenPage.js
- PlantCard.js
- DeleteButton.js
- InfoButton.js
- PlantCarePage.js
- AddPlantPage.js
- PlantCard.js
- ViewGardenPage.js
- NotFoundPage.js
- Footer.js
- NavBar.js
- src/App.js(statefull)
- From the landing page click the signup button to view a signup alert.
- From there you can leave your email address to be notified of future app updates.
- This alert was created with Sweet Alerts
- From the landing page click the View Your Garden button to navigate to the
/view
page. - On this page a list of plants can be viewed through CSS cards that renders a database of plants which were created with PostgreSQL.
- The database is pre-populated with default plants.
- Click the More Info button to navigate to the
/information
page. - Plants can be added with the Add A Plant button and then the app will navigate to the add a plant page.
- Click the Delete button to remove a plant.
- Once the Delete button has been clicked you will see an alert to confirm that you would like to delete the plant
- This alert was created with Sweet Alerts
- Once the Add A Plant button is clicked the app navigates to the
/add
page - Enter information for the new plant in the form and click the Add Plant! button
- The View Your Garden button can be clicked to navigate back to the
/view
page
-
Once the Add Plant! button has been click an alert will appear to let you know that the plant has been created.
- This alert was created with Sweet Alerts
-
You can then navigate back to the
/view
screen to view the new plant that was created
- From the
/view
page you can select the More Info button to navigate to the/information
page - This page provides general information about how to care for your plants
- On this page you can select the View your Garden button to navigate back to the
/view
page
- If the user tries to navigate to a page that does not have a route
/*
the Not Found page will be displayed - This feature was created with React Router
Link to the API Repo with API Documentation
[ ] Incorporate the /PATCH
endpoint into the client.
[ ] Add Bootstrap
[ ] Add react-burger-menu