Guard your methods calls with SweetAlert2 decorators!
🚧 Experimental project 🚧
Please restrict your usage to testing and feedback only.
SweetAlert2 Guards are a simple, opinionated solution to elegantly wrap your JavaScript methods execution in alerts, without having to mix UI and logic code.
It can be used in any framework or custom solution that uses classes and class methods (Angular, React, Vue, etc.) – because of a language limitation, decorators can't be used on simple functions yet.
Here's a simple example (the class is omitted):
import { guard, Confirm, ErrorStrategy } from '@sweetalert2/guards';
@Confirm(file => ({
title: `Delete ${file}?`,
text: `You won't be able to revert this!`,
[guard.errorStrategy]: ErrorStrategy.validationError,
[guard.onSuccess]: () => void swal('Deleted!', `${file} has been deleted`, 'success')
}))
public async deleteFile(file: string) {
const response = await fetch(`/api/files/${file}`, { method: 'delete' });
if (!response.ok) {
throw new Error(`An error occurred: ${response.statusText}`);
}
}
✅ Now, every code that calls this method, may it be external code, Angular template, React JSX, etc. will transparently trigger a confirmation modal.
Resulting in:
- Installation & Requirements
@Alert()
decorator — the most basic decorator@Confirm()
decorator — comes with confirmation dialog presets@Loader()
decorator — show a loading dialog while your method is executing[guard.*]
options — control the guard's behaviour- Recipes — Also a list of features!
- How to change the modal's parameters depending on the method's arguments?
- How to pass the SweetAlert2 modal result to the method?
- How to modify the arguments passed to the method?
- When I click "Cancel", I want the function to return a result, not throw an exception
- I want to return a "placeholder" result when the modal is dismissed
- I want to show an error or success modal when the method has terminated
- Can I use synchronous code in the methods?
Install @sweetalert2/guards and sweetalert2 via the npm registry:
npm install --save sweetalert2 @sweetalert2/[email protected]
- TypeScript: Guards is written in TypeScript – type definitions are bundled in the package.
👉 Using Angular and liking declarative approaches? See also ngx-sweetalert2.
👉 Before posting an issue, please check that the problem isn't on SweetAlert's side.
This decorator is the simplest one. It will display an alert before your method executes, show a loading indicator when it's executing, and that's all.
Show @Alert()
's presets
{
showLoaderOnConfirm: true,
allowOutsideClick: () => !swal.isLoading(),
allowEscapeKey: () => !swal.isLoading()
}
@Alert({
title: 'Downloading the Internet',
text: 'This operation will take a long time. Please be patient.',
type: 'warning'
})
public downloadTheInternet() {
// If the following service returns a Promise,
// the alert will show a loading indicator.
return this.myInternerService.download('http://*');
}
Show visual result
This decorator will show a confirmation dialog with Confirm and Cancel buttons. The user may choose to execute the decorated method or not.
Show @Confirm()
's presets
{
type: 'question',
showCancelButton: true,
showLoaderOnConfirm: true,
allowOutsideClick: () => !swal.isLoading(),
allowEscapeKey: () => !swal.isLoading()
}
@Confirm({
title: 'Close account?',
text: 'This will definitely close you account and you won\'t be able to login anymore.',
type: 'warning'
})
public closeMyAccount() {
return this.userService.closeAccount();
}
Show visual result
This decorator will execute the decorated method as soon as it's called, showing a loading indicator while the method is executing.
Show @Loader()
's presets
{
showConfirmButton: false,
showLoaderOnConfirm: true,
allowOutsideClick: () => !swal.isLoading(),
allowEscapeKey: () => !swal.isLoading(),
onBeforeOpen: swal.clickConfirm
}
@Loader({
title: 'Please wait',
text: 'This may take a few seconds...'
})
public async syncDataFromApi() {
const datas = await this.api.getDatas();
this.apiCache.store(datas);
}
Show visual result
Control how arguments are passed to the decorated method. Show more...
Control how the guard reacts to execution errors (error flow control). Show more...
React upon guard dialog dismissal (throw an error, return placeholder result, etc). Show more...
React upon decorated method execution failure. Show more...
React upon decorated method execution success. Show more...
Instead of giving an object to the decorator (@Decorator({})`
), pass a function (@Decorator((arg1, arg2) => {})
). Show more...
This is possible, but not recommended, especially in typed languages (like TypeScript) - except if you preserve the call signature. Show more...
See Q1.
Override default [guard.onDismiss]
and return a value. Show more...
See Q3.