sweetalert2
Version:
A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes, supported fork of sweetalert
30 lines (28 loc) • 951 B
JavaScript
import { withNoNewKeyword } from '../enhancers'
/**
* Returns an extended version of `Swal` containing `params` as defaults.
* Useful for reusing Swal configuration.
*
* For example:
*
* Before:
* const textPromptOptions = { input: 'text', showCancelButton: true }
* const {value: firstName} = await Swal({ ...textPromptOptions, title: 'What is your first name?' })
* const {value: lastName} = await Swal({ ...textPromptOptions, title: 'What is your last name?' })
*
* After:
* const TextPrompt = Swal.mixin({ input: 'text', showCancelButton: true })
* const {value: firstName} = await TextPrompt('What is your first name?')
* const {value: lastName} = await TextPrompt('What is your last name?')
*
* @param mixinParams
*/
export function mixin (mixinParams) {
return withNoNewKeyword(
class MixinSwal extends this {
_main (params) {
return super._main(Object.assign({}, mixinParams, params))
}
}
)
}