toverux / sweetalert2-guards

(experimental & abandoned) Decorate your methods with SweetAlert2 — both literally and figuratively
MIT License
5 stars 1 forks source link

SweetAlert2 Guards

@sweetalert2/guards

Guard your methods calls with SweetAlert2 decorators!

:construction: Experimental project :construction:
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}`);
    }
}

:white_check_mark: 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:



:package: Installation & Requirements

Install @sweetalert2/guards and sweetalert2 via the npm registry:

npm install --save sweetalert2 @sweetalert2/guards@1.0.0-alpha

:point_right: Using Angular and liking declarative approaches? See also ngx-sweetalert2.

:point_right: Before posting an issue, please check that the problem isn't on SweetAlert's side.

:link: API

@Alert() Guard

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 ```ts { 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


@Confirm() Guard

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 ```ts { 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


@Loader() Guard

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 ```ts { 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


[guard.*] options

[guard.invokeStrategy]

Control how arguments are passed to the decorated method. Show more...

[guard.errorStrategy]

Control how the guard reacts to execution errors (error flow control). Show more...

[guard.onDismiss]

React upon guard dialog dismissal (throw an error, return placeholder result, etc). Show more...

[guard.onError]

React upon decorated method execution failure. Show more...

[guard.onSuccess]

React upon decorated method execution success. Show more...

:stew: Recipes

:grey_question: Q0: How to change the modal's parameters depending on the method's arguments?

Instead of giving an object to the decorator (@Decorator({})`), pass a function (@Decorator((arg1, arg2) => {})). Show more...

:grey_question: Q1: How to pass the SweetAlert2 modal result to the method?

This is possible, but not recommended, especially in typed languages (like TypeScript) - except if you preserve the call signature. Show more...

:grey_question: Q2: How to modify the arguments passed to the method?

See Q1.

:grey_question: Q3: When I click "Cancel", I want the function to return a result, not throw an exception

Override default [guard.onDismiss] and return a value. Show more...

:grey_question: Q4: I want to return a "placeholder" result when the modal is dismissed

See Q3.

:grey_question: Q5: I want to show an error or success modal when the method has terminated

Use [guard.onSuccess] or [guard.onError] and call swal(). Show more...

:grey_question: Q6: Can I use synchronous code in the methods?

Yes, but return a resolved promise then. Show more...