3-week individual project.
Inside the app you can see 100 available videogames with relevant information about them such as name, rating and genres, and also you have the opportunity to search for one in particular or just filter and order them. There's a button that allows you to create a brand new videogame in the platform.
I used the external API rawg in this project.
It was developed using React and Redux. It has the following pages:
[ ] Landing page.
[ ] Home page with:
A NavBar with a searchbar to search videogames by name, and a button to go to the videogame's creation form.
A Panel for filter by genre and original or created videogames, and order them ascending or descending by rating or alphabetical order.
A Grid with all 100 videogames, both original and created by the user. Each card shows the main info of the videogame: image, name, genres and rating.
A pagination configured to show 15 videogames per page.
[ ] Videogame detail page, where you can find additional information like a description, date of release and platforms where you can play it.
[ ] Creation form with the following fields:
Developed with Node.js and Express. It has the following routing:
[ ] GET /videogames:
[ ] GET /videogames?name="...":
[ ] GET /videogame/{idVideogame}:
[ ] GET /genres:
[ ] POST /videogame:
Created in PostgreSQL and Sequelize. Includes the following entities:
[ ] Videogame with the next properties:
[ ] Genres with the next properties:
The relationships between entities were both belongsToMany because a videogame can have many genres simultaneously, and so the genres can contain multiple videogames.