
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@planningcenter/sweetalert2
Advanced tools
@planningcenter/sweetalert2A Planning Center theme for SweetAlert2.
This theme supports products using SweetAlert2 at v10 or higher.
In addition to a theme stylesheet, icons and common options are provided via JS objects.
Add this package and its dependency, sweetalert2, to your project.
yarn add @planningcenter/sweetalert2 sweetalert2
Out of the box, SweetAlert2 injects a default theme stylesheet. To disable the default behavior, import SweetAlert2 from the nested /dist directory.
import Swal from "sweetalert2/dist/sweetalert2";
The sweetalert2/dist/sweetalert2 path does not inject the default stylesheet.
This stylesheet handles the basics - font styles, colors, padding, margins - outlined in the specification. If you've already implemented the updated icons then this stylesheet may be all you need to ensure parity with the spec.
@import "@planningcenter/sweetalert2/css/sweetalert2.css";
@import "@planningcenter/sweetalert2/css/sweetalert2";
// no .css extension
In Sass, be sure to omit the .css file extension.
Sass @import directives are tricky. Sass decides whether to use Sass import or CSS import based on the presence of a .css extension. In our environments, you want to force the Sass import by omitting the .css extension.
https://codesandbox.io/s/planningcentersweetalert2-swal-v10-minimal-fv71h?file=/src/index.js
planningcenter/sweetalert2 exposes configuration objects for standard alerts and confirm SweetAlerts.
The options are imported and spread over SweetAlert calls for consistency.
// import SweetAlert
import Swal from "sweetalert2/dist/sweetalert2";
// import config options
import { standardConfirmOptions } from "@planningcenter/sweetalert2";
// spread default options and override as needed
Swal.fire({
  ...standardConfirmOptions,
  titleText: `This site uses cookies`,
  text: `We use cookies to store your personal preferences. Please accept use of cookies for optimal performance.`,
  confirmButtonText: `Yes, I accept cookies`,
  cancelButtonText: `No, don't use cookies`,
});
https://codesandbox.io/s/planningcentersweetalert2-swal-v10-9qvwr
These are options objects available from this library.
The most up-to-date resource is always source.
import {
  // blue info icon, blue confirm button, no cancel
  standardAlertOptions,
  // green check icon, blue confirm button, no cancel
  successAlertOptions,
  // red x icon, blue confirm button, no cancel
  errorAlertOptions,
  // yellow exclamation icon, blue confirm button
  standardConfirmOptions,
  // yellow exclamation icon, green confirm button
  createConfirmOptions,
  // red exclamation icon, red confirm button
  destroyConfirmOptions,
} from "@planningcenter/sweetalert2";
You may prefer the ergonomics of a localized functions over multiple imports and option spreading. Here's how we suggest making those convenience functions available to your app.
alert.js
// import SweetAlert
import Swal from "sweetalert2/dist/sweetalert2";
// import planning/sweetalert2 options
import {
  standardAlertOptions,
  successAlertOptions,
  errorAlertOptions,
  standardConfirmOptions,
  createConfirmOptions,
  destroyConfirmOptions,
} from "@planningcenter/sweetalert2";
// Create localized functions using .mixin()
// Customization thru mixin() allows fire() to be called with object or argument options
export const alert = Swal.mixin(standardAlertOptions);
export const alertSuccess = Swal.mixin(successAlertOptions);
export const alertError = Swal.mixin(errorAlertOptions);
export const confirm = Swal.mixin(standardConfirmOptions);
export const confirmDestroy = Swal.mixin(destroyConfirmOptions);
export const confirmCreate = Swal.mixin(createConfirmOptions);
some-app-module.js
// import alerts from the alerts module
import * as alerts from "./alerts";
// use confirm() convenience function
// confirm() applies planning center icon and confirm color from `standardConfirmOptions`
alerts.confirm.fire({
  titleText: `This site uses cookies`,
  text: `We use cookies to store your personal preferences. Please accept use of cookies for optimal performance.`,
  confirmButtonText: `Yes, I accept cookies`,
  cancelButtonText: `No, don't use cookies`,
});
// SweetAlert2's function argument syntax is retained in tandem with the configuration options. Thanks .mixin()
return alerts.alert.fire(
  "This site uses cookies",
  "We use cookies to store your personal preferences. Please accept use of cookies for optimal performance."
);
https://codesandbox.io/s/planningcentersweetalert2-swal-v10-0qx9i?file=/src/alerts.js
If you're migrating a lot of code and want to preserve an old fire method, you can wrap the call — passing arguments — like so:
export const fire = (...args) =>
  Swal.mixin({
    /* old options */
  }).fire(...args);
window.SwalExamples above use modules. If you're app uses Swal as a global, your implementation might look something like this:
import sweetalert from "sweetalert2/dist/sweetalert2";
window.Swal = {
  alert: sweetalert.mixin(standardAlertOptions),
  alertSuccess: sweetalert.mixin(successAlertOptions),
  alertError: sweetalert.mixin(errorAlertOptions),
  confirm: sweetalert.mixin(standardConfirmOptions),
  confirmDestroy: sweetalert.mixin(destroyConfirmOptions),
  confirmCreate: sweetalert.mixin(createConfirmOptions),
  fire: (...args) =>
    sweetalert
      .mixin({ reverseButtons: true, showCancelButton: true })
      .fire(...args),
};
Implementing a facade is an option. It's helpful in three cases:
The primary downside of a facade is that implementors take on the full burdon of documentation, testing, and implementation.
People implementas Alert, which a trasparent facade.
If you implement a facade, implement an opaque facade — not exposing access to the underlying fire method. This will prevent it from becoming a [leaky abstraction] where — in an effort to unexposed library features — consumers reach thru the facade to manipulate the dependency directly. This completely eliminates the value of a facade for transitioning from one library/API to another.
If not actively transitioning between libraries, create convenience functions using mixin instead.
Library facades that live behind a module boundary are difficult to maintain in a multi-app ecosystem. It shifts the library dependency from peerDependency to dependency. This means that a local (app) changes can't be made without library intervention. These interventions might demand consensus from other apps — which is difficult (if not impossible) to get.
Maintaining a peerDependency allows apps to retain full local control over local dependencies while utilizing the theme and shared options.
FAQs
Planning Center Opinions for SweetAlert2
We found that @planningcenter/sweetalert2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.