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

user-guiding-scripts

v1.4.33

Published

## Embedding the user-guiding-script into your project

Downloads

11

Readme

Usage

Embedding the user-guiding-script into your project

To embed the user-guiding-script into your project, follow the steps below:

  1. Include the following script and CSS link in your HTML file. Make sure to place these lines in the end body tag.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js?token=<WEBSITE_TOKEN>"></script>
<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/[email protected]/index.min.css"
/>
  1. After that, you must initialize the tour connection by using initTourConnection function attached to global window object. This function must be inputted the id of the root element where your Application is mounted (in Acciona linked-site application is root). Example:
<script>
  window.initTourConnection("root");
</script>

That's it! You have successfully embedded the user-guiding-script into your project.

Showing tour in your project

To check whether user has started tour or not, please give us the userId of current user login into the system with the syntax below:

window.dispatchEvent(
  new CustomEvent("store-user-id", {
    detail: { userId: "{{current user id}}" },
  })
);

By default, if user hasn't started before, we will auto trigger to show the tour. But in the remaining cases, if you want to manually trigger tour, please use the syntax below:

window.dispatchEvent(new CustomEvent("show-personal-modal"));

Note

Out tours need certain time to setup for each url, so please only triggers show tour after you received ready-for-touring message.

Example

Below is an example usage with react library:

const [isReadyForTouring, setIsReadyForTouring] = useState<boolean>(false)
const location = useLocation()

useEffect(() => {
  function toggleStateOfTourButton() {
    setIsReadyForTouring(true)
  }
  window.addEventListener('ready-for-touring' as keyof WindowEventMap, toggleStateOfTourButton)

  return () => {
    window.removeEventListener('ready-for-touring' as keyof WindowEventMap, toggleStateOfTourButton)
  }
}, [])

const handleShowPersonaModal = () => {
  window.dispatchEvent(new CustomEvent('show-personal-modal'))
}

return (
  <MenuItem onClick={handleShowPersonaModal} disabled={!isReadyForTouring}>
    <span>Walk Through</span>
  </MenuItem>
)