A beautiful replacement for JavaScript's "alert"
$ npm install --save sweetalert
import swal from 'sweetalert'
swal("Hello world!")
Many improvements and breaking changes have been introduced in the 2.0 release. Make sure you read the upgrade guide to avoid nasty suprises!
swal("Oops!", "Something went wrong!", "error")
- Using promises:
swal({
title: "Are you sure?",
text: "Are you sure that you want to leave this page?",
icon: "warning",
dangerMode: true,
})
.then(willDelete => {
if (willDelete) {
swal("Deleted!", "Your imaginary file has been deleted!", "success");
}
});
- Using async/await:
const willDelete = await swal({
title: "Are you sure?",
text: "Are you sure that you want to delete this file?",
icon: "warning",
dangerMode: true,
})
if (willDelete) {
swal("Deleted!", "Your imaginary file has been deleted!", "success");
}
- Using promises:
swal("Type something:", {
content: "input",
})
.then((value) => {
swal(`You typed: ${value}`);
})
- Using async/await:
const value = await swal("Type something:", {
content: "input",
})
swal(`You typed: ${value}`);
- Using promises:
swal({
text: 'Wanna log some information about Bulbasaur?',
button: {
text: "Search!",
closeModal: false,
},
})
.then(willSearch => {
if (willSearch) {
return fetch(`http://pokeapi.co/api/v2/pokemon/1`)
}
})
.then(result => result.json())
.then(json => console.log(json))
.catch(err => {
swal("Oops!", "Seems like we couldn't fetch the info", "error")
})
- Using async/await:
const willSearch = await swal({
text: 'Wanna log some information about Bulbasaur?',
button: {
text: "Search!",
closeModal: false,
},
})
if (willSearch) {
try {
const result = await fetch(`http://pokeapi.co/api/v2/pokemon/1`)
const json = await result.json()
console.log(json)
} catch (err) {
swal("Oops!", "Seems like we couldn't fetch the info", "error")
}
}
- Make changes in the
src
folder. - Preview changes by running
npm run docs
- Submit pull request
- Make changes in the
docs-src
folder. - Preview changes by running
npm run docs
- Run
npm run builddocs
to compile the changes to thedocs
folder - Submit pull request