I love collecting records! My family and friends know this. As a result I receive a lot of LPs as gifts. How do I stop my family from buying albums I already own? MY RECORD SHELF!
- This app was created with
create-react-app
. - This app utilizes the Discog API to retrieve all pertenant information that deals with my record collection.
- My Record Shelf is built using three main components,
App.js
,Record.js
, andHeader.js
. Header.js
contains theNavBar
that allows users to navigate between pages.App.js
builds a grid, that holds theRecord.js
components.Record.js
components are instantiated in theApp.js
folder, and contain an albums cover image, name, andresource url
.
- Future iterations will bring the ability for users to select and album and navigate to it's corresponding page on
Spotify
.
- WINS
- Learning to fetch data from an existing API.
- Populating and displaying an album's cover art.
- Using verification with an API.
- Linking the album to a related YouTube video.
- Displaying an albums tracklist.
- CHALLENGES
- Building concise components that only carry out a single purpose.
- Navigating the large object retrieved from the Discog API.
- Error handling for dead links.