npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pstevju/pp-toastmaster

v0.1.3

Published

Bootstrap Toast manager for Power Pages.

Downloads

13

Readme

ToastMaster

Overview

ToastMaster is an ES module toast manager, built to simplify handling of Bootstrap v5 toasts in Power Pages sites.

Installation

npm i pp-toastmaster

Usage

// Import the ToastMaster class from the ES module.
import { ToastMaster } from 'pp-toastmaster';

// Create a new ToastMaster instance and attach it to the body element of the document.
// Consider a singleton approach with one global instance per page.
const toastMaster = new ToastMaster();

// Create a success style toast using the createSuccessToast shorthand.
toastMaster.createSuccessToast('Operation completed successfully!');

// Create a warning style toast using the createWarningToast shorthand.
toastMaster.createWarningToast('This is a warning message.');

// Create an error style toast using the createErrorToast shorthand.
toastMaster.createErrorToast('An error occurred.');

// Create a generic style persistent toast with the createToast method.
toastMaster.createToast({ content: 'Something occured.', autohide: false });

// Update positioning settings.
toastMaster.setPositioning({
  /* Setting all values is not required. Previous values will be kept. */
  //horizontalAlignment: 'center',

  verticalAlignment: 'start',

  horizontalOffset: 2,

  verticalOffset: 4,
});

// Log the current ToastMaster version (notice the static method call).
console.log(ToastMaster.version);

Static variables

version

Holds the version of the loaded ToastMaster module.

version: string

Methods

disposeAllToasts()

Disposes all toasts managed by the ToastMaster instance.

disposeAllToasts(): void

disposeToastById(id: string)

Disposes a specific toast item by its UUID.

disposeToastById(id: string): void

Parameters

  • id (string): The UUID of the toast item to dispose.

disposeToastsByScope(scope: string)

Disposes all toast items associated with the given scope.

disposeToastsByScope(scope: string): void

Parameters

  • scope (string): The scope value of the toast items to dispose.

disposeToastsByVariant(variant: ToastMasterToastVariant)

Disposes all toast items with the specified variant.

disposeToastsByVariant(variant: ToastMasterToastVariant): void

Parameters

  • variant (ToastMasterToastVariant): The variant of the toast items to dispose. Valid values are 'info', 'success', 'warning', 'error'.

getToastById(id: string)

Gets a toast item by its UUID.

getToastById(id: string): ToastMasterToast | undefined

Parameters

  • id (string): The UUID of the toast item to retrieve.

Returns

  • ToastMasterToast | undefined: The toast item with the specified UUID, or undefined if no item is found.

getToastsByScope(scope: string)

Gets a list of toast items by their scope value.

getToastsByScope(scope: string): ToastMasterToast[]

Parameters

  • scope (string): The scope value of the toast items to retrieve.

Returns

  • ToastMasterToast[]: An array of toast items with the specified scope value.

createToast(options: ToastMasterToastOptions)

Creates a new toast item and displays it in the global toast container.

createToast(options: ToastMasterToastOptions): ToastMasterToast

Parameters

Returns

  • ToastMasterToast: The newly created toast item.

createSuccessToast(successMessage: string)

Creates a success toast with the specified success message.

createSuccessToast(successMessage: string): ToastMasterToast

Parameters

  • successMessage (string): The success message to display in the toast.

Returns

  • ToastMasterToast: The newly created success toast item.

createWarningToast(warningMessage: string)

Creates a warning toast with the specified warning message.

createWarningToast(warningMessage: string): ToastMasterToast

Parameters

  • warningMessage (string): The warning message to display in the toast.

Returns

  • ToastMasterToast: The newly created warning toast item.

createErrorToast(errorMessage: string)

Creates an error toast with the specified error message.

createErrorToast(errorMessage: string): ToastMasterToast

Parameters

  • errorMessage (string): The error message to display in the toast.

Returns

  • ToastMasterToast: The newly created error toast item.

setParent(parent: HTMLElement)

Moves the toast container to the specified parent element.

setParent(parent: HTMLElement): void

Parameters

  • parent (HTMLElement): The new parent element for the toast container.

setPositioning(positioning: ToastMasterToastPositioning)

Sets the positioning options for the toast and updates the container.

setPositioning(positioning: ToastMasterToastPositioning): void

Parameters


Types

ToastMasterToastVariant

Represents the variant of a toast message.

type ToastMasterToastVariant = 'info' | 'success' | 'warning' | 'error';

Possible values:

  • 'info'
  • 'success'
  • 'warning'
  • 'error'

ToastMasterToastOptions

Represents the options for a toast item in ToastMaster.

type ToastMasterToastOptions = {
  scope?: string;
  content: string;
  autohide?: number | boolean;
  variant?: ToastMasterToastVariant;
};

Properties

  • scope: string (default: '') - The scope of the toast item.
  • content: string (required) - The content of the toast item.
  • autohide: number | boolean (default: 5000) - Number of milliseconds before the toasts auto hide or a boolean for toggle. Zero or false means no autohide.
  • variant: ToastMasterToastVariant (default: 'info') - The variant of the toast item.

ToastMasterToastPosition

Represents the position of a toast message.

type ToastMasterToastPosition = 'start' | 'center' | 'end';

Possible values:

  • 'start'
  • 'center'
  • 'end'

ToastMasterToastPositioning

Represents the positioning of a toast.

type ToastMasterToastPositioning = {
  horizontalAlignment?: ToastMasterToastPosition;
  verticalAlignment?: ToastMasterToastPosition;
  horizontalOffset?: 1 | 2 | 3 | 4 | 5;
  verticalOffset?: 1 | 2 | 3 | 4 | 5;
};

Properties

  • horizontalAlignment: ToastMasterToastPosition (default: 'end') - The horizontal position of the toast container.
  • verticalAlignment: ToastMasterToastPosition (default: 'end') - The vertical position of the toast container.
  • horizontalOffset: 1 | 2 | 3 | 4 | 5 (default: 3) - Top horizontal distance from the screen edge (Bootstrap class shortcut units).
  • verticalOffset: 1 | 2 | 3 | 4 | 5 (default: 2) - Top vertical distance from the screen edge (Bootstrap class shortcut units).