Create a Random Joke using React app through API
Last Updated :
29 Jul, 2024
In this tutorial, we'll make a website that fetches data (joke) from an external API and displays it on the screen. We'll be using React completely to base this website. Each time we reload the page and click the button, a new joke fetched and rendered on the screen by React. As we are using React for this project, we need not reload the page to display the fetched data.
Let us take a look at how the final feature will look like:
Random Joke using React app through APIPrerequisite: The pre-requisites for this project are:
Approach: The "Joke" file is a functional component and contains a state variable Joke, which initially set to an empty string, and depending upon the state of the Joke, the output gets rendered. The Component outputs the "Button" component which on click generates a joke. The "Button" component that is getting rendered is also an imported functional component that outputs a button element. We are also passing some props to the "Button" component, which is a method named callAPI. The prop is fetching the Joke from API whenever the code is being fetchedÂ
Steps to create the application:
Step 1: Initialize the project from terminal using the command.
npx create-react-app jokegenerator
Step 2: Navigate to the project folder using the command.
cd jokegenerator
Step 3: Create a folder called components and add two files in it Button.js and Joke.js
Example: Write the following code in respective files.
- App.js: This file imports the components to render it on the web page
- Joke.js: This file contains the joke to be displayed and makes the API call
- Joke.css: This file contains the styling of all the elementsÂ
- Button.js: This file contains the button component which generates the joke on click
- Button.css: This file contains the styling of button element
CSS
/* Joke.css */
body {
background-color: rgb(47, 97, 80);
}
.joke {
width: auto;
height: auto;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: beige;
}
h1 {
text-align: center;
color: beige;
}
CSS
/* Button.css */
button {
display: inline-block;
padding: 10px 20px;
background-color: #70a03a;
color: #ffffff;
border: none;
font-size: 16px;
cursor: pointer;
border-radius: 8px;
transition: background-color .5s;
}
button:hover {
background-color: #c1f590;
}
button:active {
background-color: #297910;
}
JavaScript
// App.js
import Joke from "./components/Joke";
function App() {
return (
<div className="App">
<h1>Joke Generator Using React and Joke API</h1>
<Joke/>
</div>
);
}
export default App;
JavaScript
// Joke.js
import React from "react";
import Button from "./Button";
import './Joke.css';
const Joke = () => {
const [Joke, setJoke] = React.useState("");
const fetchApi = () => {
fetch("https://sv443.net/jokeapi/v2/joke/Programming?type=single")
.then((res) => res.json())
.then((data) => setJoke(data.joke));
};
return (
<div className="joke">
<Button callApi={fetchApi} />
<p>{Joke}</p>
</div>
);
}
export default Joke;
JavaScript
// Button.js
import React from "react";
import './Button.css'
const Button = (props) => {
return <button onClick={props.callApi}>
Click to generate a joke.
</button>;
}
// Export Button Component
export default Button;
Steps to run the application:
Step 1: Type the following command in terminal of your project directory
npm start
Step 2: Type the following URL in your web browser.
http://localhost:3000/
Output:
Similar Reads
BMI Calculator Using React In this article, we will create a BMI Calculator application using the ReactJS framework. A BMI calculator determines the relationship between a person's height and weight. It provides a numerical value that categorizes the individual as underweight, normal weight, overweight, or obese.Output Previe
3 min read
Create Rock Paper Scissor Game using ReactJS In this article, we will create Rock, Paper, Scissors game using ReactJS. This project basically implements class components and manages the state accordingly. The player uses a particular option from Rock, Paper, or Scissors and then Computer chooses an option randomly. The logic of scoring and win
6 min read
Create a Form using React JS Creating a From in React includes the use of JSX elements to build interactive interfaces for user inputs. We will be using HTML elements to create different input fields and functional component with useState to manage states and handle inputs. Prerequisites:Functional ComponentsJavaScript ES6JSXPr
5 min read
Create a Random Joke using React app through API In this tutorial, we'll make a website that fetches data (joke) from an external API and displays it on the screen. We'll be using React completely to base this website. Each time we reload the page and click the button, a new joke fetched and rendered on the screen by React. As we are using React f
3 min read
Nutrition Meter - Calories Tracker App using React GeeksforGeeks Nutrition Meter application allows users to input the name of a food item or dish they have consumed, along with details on proteins, calories, fat, carbs, etc. Users can then keep track of their calorie intake and receive a warning message if their calorie limit is exceeded. The logic
9 min read
Currency converter app using ReactJS In this article, we will be building a very simple currency converter app with the help of an API. Our app contains three sections, one for taking the user input and storing it inside a state variable, a menu where users can change the units of conversion, and finally, a display section where we dis
4 min read
Lap Memory Stopwatch using React Stopwatch is an application which helps to track time in hours, minutes, seconds, and milliseconds. This application implements all the basic operations of a stopwatch such as start, pause and reset button. It has an additional feature using which we can keep a record of laps which is useful when we
5 min read
Typing Speed Tester using React In this article, we will create a Typing Speed Tester that provides a random paragraph for the user to type as accurately and quickly as possible within a fixed time limit of one minute. This application also displays the time remaining, counts mistakes calculates the words per minute and characters
9 min read
Number Format Converter using React In this article, we will create Number Format Converter, that provides various features for users like to conversion between decimal, binary, octal and hexadecimal representations. Using functional components and state management, this program enables users to input a number and perform a range of c
7 min read
Create a Password Validator using ReactJS Password must be strong so that hackers can not hack them easily. The following example shows how to check the password strength of the user input password in ReactJS. We will use the validator module to achieve this functionality. We will call the isStrongPassword function and pass the conditions a
2 min read