Build a React app with Final Space API

Nabendu Biswas
5 min readDec 14, 2020
Final Space

Welcome to a new React JS project, where we are going to build a simple app using Final Space API in React.

So, fire up your terminal and create a new react app final-space-react with the below command.

final-space-react

We will remove all the unnecessary boiler-plate code and our index.js will look like below.

index.js

And the App.js contains only Hello World text. We have also removed all content from App.css file.

App.js

Next create an img folder inside the src folder. The content for the same can be taken from the github repo at the end of the post.

Also, create a components folder inside src folder and put a file Header.js inside it. We are showing the logo in it.

Header.js

Next, put the below content in App.css. We are not going to go through the css, as it’s a React project.

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
background: #000 url('img/bg.jpg') no-repeat center center/cover;
height: 100vh;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
}
a {
text-decoration: none;
}
.container {
max-width: 1100px;
margin: auto;
padding: 0 20px;
}
.btn {
display: inline-block;
color: #fff;
background-color: #3fb573;
font-size: 1em;
text-align: center;
padding: 10px 15px;
border: 0;
margin: 10px 0;
}
header {
height: 200px;
}
header img {
width: 200px;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
.search {
height: 100px;
}
input[type='text'] {
display: block;
padding: 10px;
font-size: 20px;
border: 0;
border-radius: 5px;
width: 60%;
margin: auto;
}
.cards {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
.card {
cursor: pointer;
background-color: transparent;
height: 300px;
perspective: 1000px;
}
.card h1 {
font-size: 25px;
border-bottom: 1px #fff solid;
padding-bottom: 10px;
margin-bottom: 10px;
}
.card img {
width: 100%;
height: 300px;
object-fit: cover;
}
.card-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.card:hover .card-inner {
transform: rotateY(180deg);
}
.card-front,
.card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.card-back {
background-color: #333;
color: white;
padding: 20px;
transform: rotateY(180deg);
}
.card li {
list-style: none;
padding-bottom: 10px;
}
@media (max-width: 800px) {
.cards {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 500px) {
.cards {
grid-template-columns: 1fr;
}
}

We will next include the Header component in App.js file and we will see the nice header over a green background.

App.js

Now, we need to do the API call, so we will install axios from the Integrated Terminal. We are then importing useState, useEffect and axios at top and then creating two state variables items and isLoading using useState hook.

App.js

Next, we will use the useEffect hook to hit the final space api endpoint to get all the characters in the series. Notice that we are using an empty array as second parameter, so that the API call is done only once after initial render.

We are getting back an array of object from api as shown in the console.

App.js

After that we will create a CardGrid.js file in the components folder. Here, we are checking whether isLoading is true and displaying Loading… text. If it is false we are mapping through the items array and passing individual object to the CardItem component.

CardGrid.js

Next, create a file CardItem.js inside the components folder. We are just using the pre-defined classes in App.css and showing the received image in the Card front and all the other data in Card back.

CardItem.js

We will then move back to App.js file. Here, we will first set the state inside the useEffect hook.

After the we are importing the CardGrid at top and passing isLoading and items as props to it, inside the return statement.

App.js

Now, if we go to localhost we can see all the characters from Final Space.

Final Space

Now, we have one thing remaining and that is to show the spinner gif, instead of the Loading… text. So, we will create a Spinner.js file inside the components folder and show the spinner using image.

Spinner.js

Next, we will show the Spinner in the CardGrid.js file.

CardGrid.js

Our App is complete now. You can find code for the same in this github repo.

Final Space

--

--

Nabendu Biswas

Architect, ReactJS & Ecosystem Expert, Youtuber, Blogger