Sweet Alert helps your software application give fanciful and useful feedback to users after they must have performed some action.
Alerts are necessary and simple pointers that can even be created using Javascript:
alert("hello world!")
Sweet Alert can be integrated with most programming languages and libraries. But in this tutorial, we shall be implementing it in our React application.
If you are new to Sweet Alert you can get started with it here.
And for the sake of this tutorial, we are going to be making use of a variant SweetAlert2.
Let’s get started.
Create a new React application and add the following dependencies:
yarn add bootstrap
yarn add sweetalert2
import React, { Component } from "react";
class Home extends Component {
render(){
return(
<div>
</div>
)
}
}
export default Home;
import React, { Component } from "react";
import "bootstrap/dist/css/bootstrap.min.css";
class Home extends Component {
render(){
return(
<div className="container d-flex justify-content-center" style={{marginTop: 90}}>
<button onClick={this.showAlert} className="btn btn-primary btn-lg">
Show Alert
</button>
</div>
)
}
}
export default Home;
Notice that in our button we have function showAlert which will be fired when we click on the button.
showAlert = () => {
Swal.fire({
title: "Success",
text: "Alert successful",
icon: "success",
confirmButtonText: "OK",
});
}
import React, { Component } from "react";
import Swal from "sweetalert2";
import "bootstrap/dist/css/bootstrap.min.css";
class Home extends Component {
showAlert = () => {
Swal.fire({
title: "Success",
text: "Alert successful",
icon: "success",
confirmButtonText: "OK",
});
}
render(){
return(
<div className="container d-flex justify-content-center" style=. {{marginTop: 90}}>
<button onClick={this.showAlert} className="btn btn-primary btn-lg">Show Alert</button>
</div>
)
}
}
export default Home
Here’s the result of our code:
What if when we click on the button OK, we want to redirect our application to another page?
We’ll just modify our showAlert function as follows
showAlert = () => {
Swal.fire({
title: "Success",
text: "Alert successful",
icon: "success",
confirmButtonText: "OK",
}).then(function () {
// Redirect the user
window.location.href = "/new-page";
});
}
This is how to implement Sweet Alert in your React JS applications.
Let me know what you think in the comments!
This month has been packed for Google as it ramps up efforts to outshine OpenAI…
OpenAI has been rolling out a series of exciting updates and features for ChatGPT, and…
A financially motivated phishing campaign has targeted around 300 organizations, with over 4,000 spoofed emails…
Hackers are exploiting Microsoft Teams to deceive users into installing remote access tools, granting attackers…
Data plays an essential role in our lives. We each consume and produce huge amounts…
Thomas E. Kurtz, co-creator of the BASIC programming language, passed away on November 12, 2024,…