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

pd-bubble

v1.1.3

Published

Custom Web Element used as a notifications container that delivers messages to the user.

Downloads

40

Readme

pd-bubble

A custom web component that can be used in web applications or websites. It provides a container for several types of messages to a user, such as "success", "error", "warning", "forbidden", "info", "tag" and more. Almost all message icons are based upon iconocss. There is also option to listen the message on browsers supporting SpeechSynthesis of the Web Speech API. Published on webcomponents.org

Demo page (by unpkg.com)

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

node.js

Installing

$ npm install pd-bubble

Running the tests

npm test

Tests output explanation

pd-bubble

canSpeak

✓ checks if browser can use speechSynthesis from Web Speech API, return will be true or false

queue

✓ this is the messages queue it is an empty array [] upon initialization

speechSynthesis

✓ loads speech synthesis utterance

forceSpeakBubble

✓ check if bubble messages are enforced to be spoken upon click

delayTime

✓ this is the delay time that a user can set for each bubble as a threshold in the total delay time until the bubble closes. Value should be 0 in the constructor

bbIcons

✓ @font-face string containing the appropriate CSS for the icon fonts used

✓ check that string holds certain CSS rules

sRoot

✓ Checks that component is attached to DOM and is equal to

✓ Checks that component is attached to DOM and has empty innerHTML

initSpeechSynthesis()

✓ Checks speechSynthesisUtterance after custom element is rendered

✓ Checks speechSynthesis selected language "en-US" after being checked if it is supported by Web Speech API

getColors()

✓ Get foreground and background colors of the message bubble on type "warning"

✓ Get foreground and background colors of the message bubble on type "forbidden"

✓ Get foreground and background colors of the message bubble on type "error"

✓ Get foreground and background colors of the message bubble on type "info"

✓ Get foreground and background colors of the message bubble on type "tag"

✓ Get foreground and background colors of the message bubble on type "success"

bubble()

_✓ Creates a message bubble of type - warning

✓ Creates a message bubble of type - error

✓ Creates a message bubble of type - forbidden

✓ Creates a message bubble of type - tag

✓ Creates a message bubble of type - info

✓ Creates a message bubble of type - success

Adding bubble messages by changing text attribute on a rendered element

✓ pd-bubble

Array

indexOf()

✓ should return -1 when the value is not present. This is a demo test to check that the response from the testing framework is ok.

Deployment

Add the custom element tag to your HTML page.

The element's parameters are:

  • speakit (boolean - default false). Setting it to true gives the ability to the user to hear the message upon click on browsers supporting SpeechSynthesis.
  • delay (integer default 0). This is a delay time that is added on the overall delay time of each bubble. After that overall delay time each message bubble is removed using a simple fade-up effect. To calculate the overall time a simple formula is used overall message delay time = delay + (number of words in a message)*750ms
  • text (text message default null). The actual message with a prefix used to determine the type for example warning#:,error#:.

<pd-bubble speakit="true" delay="3000" text=""></pd-bubble>

To display various messages simply add the type followed by #:, in front of the message e.g. warning#: and use javascript to set the text attribute of the element.

customElements.whenDefined('pd-bubble').then(() => {  
    document.querySelector("pd-bubble:defined").setAttribute("text","warning#: Bubble container for a \"Warning\" message.");  
    document.querySelector("pd-bubble:defined").setAttribute("text","forbidden#: Bubble container for a \"Forbidden\" message.");  
    document.querySelector("pd-bubble:defined").setAttribute("text","error#: Bubble container for an \"Error\" message."); 
    document.querySelector("pd-bubble:defined").setAttribute("text","info#: Bubble container for an \"Info\" message.");  
    document.querySelector("pd-bubble:defined").setAttribute("text","tag#: Bubble container for a \"Tag\" message.");  
    document.querySelector("pd-bubble:defined").setAttribute("text","success#: Bubble container for a \"Success\" message.");
});  

Additional CSS is used to position the messages container pd-bubble.

<style>
body {
    width: 100%;
}
:host {
    display: block;
}
pd-bubble:not(:defined) {
    display: none;
}
pd-bubble,
pd-bubble:defined {
    position: sticky;
    width: 20%;
    top: 0;
    z-index: 99999;
    float: right;
    height: auto;
    margin: 2% 5% 0% 70%;
    display: block;
    padding: 0;
}	
</style>

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request 😁

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

  • test-utils.js can be found in https://github.com/github/custom-element-boilerplate