Everyone likes celebrities, right? Well, even if you don't, now is your chance to create your own, better, fictional celebrities! Let's create an Express app with all the basic CRUD actions that will allow the user to create their own celebrities and edit them as they see fit.
The user should be able to:
1. See the list of celebrities
2. See the details of a celebrity
3. Add new celebrities
4. Update existing celebrities
5. Delete celebrities
But wait! That's not all!
Once we have our celebrities, we need something for them to do!
Let's make up some movie ideas for our celebrities to star in.
That means we'll need all the basic CRUD actions for movies as well.
The user should be able to:
6. See the list of movies.
7. See the details of a movie.
8. Add new movies.
9. Update existing movies.
10. Delete movies.\
- Fork this repo
- Clone this repo
- Upon completion, run the following commands:
$ git add .
$ git commit -m "done"
$ git push origin master
- Create Pull Request so your TAs can check up your work.
After forking and cloning the project, you will have to add a starter_code/.env
file:
PORT=3000
And you have to install all the dependencies:
$ cd starter_code
$ npm install
Now you are ready to start 🚀
Once we have generated our Express app, our first step is to create the Celebrity
model and seed some initial celebrities in our database.
The Celebrity
model should have:
name
- String (like Tom Cruise, Beyonce, Daffy Duck, etc.)occupation
- String (what the celebrity does, why they are famous. For example actor, singer, comedian, or you can put unknown if your celebrity is someone like Kim Kardashian)catchPhrase
- String (every celebrity needs a good catch phrase. Well maybe not all of them have one in real life, but all of our celebrities will have a catch phrase. This can be pretty much anything)
- Create the
celebrity.js
model file in themodels/
folder. - In the
celebrity.js
model file:- Create the
Celebrity
model with the schema. - Create the celebrity schema with
name
,occupation
andcatchPhrase
. - Export the
Celebrity
model.
- Create the
- Create the
seeds.js
file in thebin/
folder. - In
seeds.js
file:- Create an array of 3 objects, each with
name
,occupation
andcatchPhrase
for our initial celebrities. - Call the
Celebrity
model'screate
method with the array as argument. - In the
create
method's callback, display feedback.
- Create an array of 3 objects, each with
- Run the seed file with
node
to seed your database. - Check the database with the
mongo
command to confirm that your data was saved.
Now that we've got some celebrities in the database, we can start working with them in our Express app. Let's display a list of all the celebrities.
Here's the route we will be using:
Route | HTTP Verb | Description |
---|---|---|
/celebrities |
GET | Show all celebrities |
- Locate the
/celebrities
GET route inroutes/celebrities.js
. - In the route callback:
- Call the
Celebrity
model'sfind
method to retrieve all the celebrities. - If there's an error, call the route's
next
function and return the error. - If there isn't an error, render the
celebrities/index
view. - Pass the array of celebrities into the view as a variable.
- Call the
- Create the
celebrities/
folder insideviews/
. - Create the
index.hbs
view file inside theviews/celebrities/
folder. - In the
views/celebrities/index.hbs
view file:- Add an
<h2>
tag for the page's heading. - Use a
forEach
loop to display tags with each celebrity'sname
.
- Add an
- In the
views/index.hbs
(homepage) file:- Add a link that goes to the
/celebrities
route.
- Add a link that goes to the
We've got a list of celebrities that displays each of their name
, but what if we want to see the other details? In our views/celebrities/index.hbs
view with our list of celebrities, let's add links so that the user can click on any celebrity's name, and go to a page specifically for that celebrity. On this page, we will show all the details of that celebrity.
Here's the route we will be using:
Route | HTTP Verb | Description |
---|---|---|
/celebrities/:id |
GET | Show a specific celebrity |
- Create the
/celebrities/:id
GET route inroutes/celebrities.js
. - In the route callback:
- Call the
Celebrity
model'sfindOne
orfindById
method to retrieve the details of a specific celebrity by its id. - If there's an error, call the route's
next
function and return the error. - If there isn't an error, render the
celebrities/show
view. - Pass the variable with the celebrity's details into the view.
- Call the
- Create the
show.hbs
view file inside theviews/celebrities/
folder. - In the
views/celebrities/show.hbs
view file:- Add an
<h2>
for the page's heading. - Display tags with the celebrity's
name
,occupation
andcatchPhrase
.
- Add an
- In the
views/celebrities/index.hbs
view file:- As part of the loop that displays each celebrity's name, add a link that goes to the
/celebrities/:id
route with the:id
replaced by the actual celebrity's id.
- As part of the loop that displays each celebrity's name, add a link that goes to the
Now that we have a list of celebrities, as well as a personalized details page for each celebrity, let's make it so the user can add new celebrities to the database
Route | HTTP Verb | Description |
---|---|---|
/celebrities/new |
GET | Show a form to create a celebrity |
/celebrities |
POST | Send the data from the form to this route to create the celebrity and save to the database |
- Locate the
/celebrities/new
GET route inroutes/celebrities.js
: - In that route's callback:
- Render the
celebrities/new
view.
- Create the
new.hbs
view file inside theviews/celebrities
folder - In the
views/celebrities/new.hbs
view file:- Add an
<h2>
for the page's heading. - Add a
<form>
tag that makes a POST request to/celebrities
. - Add
<input>
tags inside the form so the user can fill in values for each attribute of the celebrity. Make an input forname
,occupation
, andcatchPhrase
- Add a
<button>
tag in the form so the user can submit the form once they are done filling it out.
- Add an
- Locate the
/celebrities
post route inroutes/celebrities.js
. - In that route's callback:
- Create an object with keys for
name
,occupation
, andcatchPhrase
. - Values for those keys should come from the form (
req.body
is the object full of the values from the form) - Create an instance of the
Celebrity
model with the object you made in the previous step - Call the
save
method to save the new celebrity to the database - If there is an error, render the
celebrities/new
view so the user can try again. - If there is no error, redirect to the page with the list of celebrities
- Create an object with keys for
- In the
views/celebrities/index.hbs
view file:- Add a link that goes to the page you just created with the form to create a new celebrity.
Now that we have a list of celebrities, a celebrity details page, and a page to create new celebrities, we only have 2 features left to implement: editing celebrities and deleting them. Since deleting is simpler, let's start with that.
Route | HTTP Verb | Description |
---|---|---|
/celebrities/:id/delete |
POST | Delete a specific celebrity |
- In the
views/celebrities/index.hbs
file:- As part of the loop, add a
<form>
tag that makes a POST request tocelebrities/:id/delete
where the:id
is replaced by the actualid
of each celebrity. - Add a
<button>
tag inside the form so that it can be submitted.
- As part of the loop, add a
- Create the
/celebrities/:id/delete
POST route in yourroutes/celebrities.js
file - In that route's callback:
- Use the
Celebrity
model'sfindByIdAndRemove
method to delete the celebrity by itsid
. - If there's an error, call the route's
next
function and return the error - If there is no error, redirect to the list of celebrities page.
- Use the
Final piece of our CRUD puzzle: editing existing celebrities.
Here are the routes we will be using:
Route | HTTP Verb | Description |
---|---|---|
/celebrities/:id/edit |
GET | Show a form to edit a celebrity |
/celebrities/:id |
POST | Send the data from the form to this route to update and save the celebrity from the database |
- Create the
/celebrities/:id/edit
GET route inroutes/celebrities.js
. - In that route's callback:
- Call the
Celebrity
model’sfindOne
orfindById
method to retrieve a specific celebrity by its id. - If there's an error, call the route's
next
function and return the error. - If there isn't an error, render the
celebrities/edit
view. - Pass the variable with the celebrity’s details into the view.
- Call the
- Create the
edit.hbs
view file inside theviews/celebrities/
folder. - In the
views/celebrities/edit.hbs
view file:- Add an
<h2>
tag for the page's heading. - Add a
<form>
tag that makes a POST request to/celebrities/:id
with the:id
replaced by the actual celebrity's id. - Add
<input>
tags inside the form for each attirbute of the celebrity.- Bonus: When you render the edit form, make sure each of the input fields is pre-filled with the current value of the attribute for that celebrity
- Add a
<button>
tag inside the form so that the user can submit the form once they are done editing.
- Add an
- Locate the
/celebrities/:id
POST route in theroutes/celebrities.js
file. - In that route's callback:
- Create an object with keys for each attribute of a celebrity (celebrity has 3 attributes. What were they again? Look back and review if you forgot.)
- Values for those keys should come from the form submission (
req.body
). - Call the
Celebrity
model’supdate
method and use the celebrity's id to specify which celebrity we are updating. Also, use the object you just created with the updated attributes for the celebrity and pass this object into theupdate
method as the second argument. - If there is an error retrieving that celebrity, call the route's
next
function and return the error - If there is no error, redirect back to the list of celebrities.
At this point, we have implemented all the basic CRUD actions for the Celebrity model in our app. Nice work!
Now that we've done all this good work, it's time to do it all over again, but for the Movie model. After all, what's the point of having all these celebrities if we can't make up fake movies to cast them in?
We are going to create a Movie
model and implement all the same CRUD actions for this model as well. Don't worry, it's really much easier the second time around.
Let's jump right in.
First of all, we'll need to create the Movie
model.
The Movie
model should have:
title
- Stringgenre
- Stringplot
- String
Go back and review what you did to create the Celebrity
model. You'll need to create a file for the model, and in that file, you'll need to create a schema for the model as well.
Once you've done that, go to your seeds.js
file in the bin/
folder and either delete or comment out the seeds you made before for your celebrities.
Replace these seeds with seeds for fake movies. If you don't delete/comment what you had before, when you run the seeds file with the node
command in the terminal, it will create duplicates of all your celebrities.
Afterward, check the database with the mongo
command to confirm that your data was saved.
Now that we've got some movies in the database, let's make a page where we list all our movies, just like we did with the Celebrity
model.
Go back and review how you did this for the Celebrity
model. You'll need to
- Create a route.
- Create a view file (and a folder for all your
movies
view files). - Use a database query to retrieve all the movies in your database and render the view.
- Use a
forEach
loop to display all your movies on that page - Add a link to the page you just created on the home page so the user can navigate to it.
Now that we've got a list of movies, let's add a details page for each movie just like we did with our celebrities.
Go back and review what you did for the Celebrity
model. You'll need to:
- Create a route
- Use a database query to retrive the specific movie that was clicked by the user.
- Pass that movie into the view as a variable
- Create the view file
- In the view, display all the details of the movie.
- On the Movies index page, make each movie a link to its own details page.
Okay, the next step is to make it so the user can add new movies to the database
Review how you did this for the Celebrity
model.
- Create 2 new routes, one to render page with the form on it, and one to send the data to after the form is filled out.
- Create a view file to render the form.
- Make sure the form is making a POST request to the other route you just created.
- In your post route, create an object with all the info you just received from the form. (Remember,
req.body
) - Use this object to create a new movie and save it to the database and redirect back to the page with your list of movies.
- Make sure to add a link to the form on the movies index page.
Okay, only 2 features left, deleting and editing.
Review how you did this with the Celebrity
model.
- Add a button (inside of a form) next to each movie in your movies index page.
- Create a route
- Use a databse query to retrieve the Movie that was just clicked, and delete it from the database.
Final piece of our CRUD puzzle: editing existing movies.
Review how you did this for the Celebrity
model.
- Create 2 routes, one to display a form, and another to receive the data from that form.
- Create a view file to display the edit form.
- Use a databse query to retrieve one movie from the database and pass that movie into the page with the form on it.
- Render the view with the form, and pre-fill all the input fields with the current info about that movie.
- Make sure your form is submitting a POST request to the other route you just created.
- When the form is submitted, receive the data from the form and create an object with all the info.
- Make a databse query to retrieve the movie from the database and update the movie with the object you just created with all the info from the form.
- Make sure you add a link to the edit page on your movies index page.
Happy Coding! ❤️