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

@zipper-inc/use-inspector-guides

v0.0.3

Published

This library aims to provide a simple and easy to create and handle interactions based on hover, like an inspector mode.

Downloads

5

Readme

Introduction

This library aims to provide a simple and easy to create and handle interactions based on hover, like an inspector mode.

Installation

Install using the package manager of your choice.

npm install @zipper-inc/use-inspector-guides
yarn add @zipper-inc/use-inspector-guides
bun add @zipper-inc/use-inspector-guides

@zipper-inc/use-inspector-guides supports also ES modules as well as commonjs.

Usage and Examples

Once installed, you can import the library in your React App. It provides two hooks, useHelpMode and useHelpBorder taht should be used under the HelpModeProvider context.

import { HelpModeProvider, useHelpMode, useHelpBorder } from '@zipper-inc/use-inspector-guides';


const inspectableComponents: InspectableComponents = {
  'blog-post': {
    description:
      'The BlogPostComponent is a React component that is responsible for rendering a single blog post. This includes the post title, author, date, content, and potentially comments and social share links.',
    name: 'BlogPostComponent',
  },
}

ReactDOM.createRoot(document.getElementById('root')!).render(

    <HelpModeProvider inspectableComponents={inspectableComponents}>
      <App />
    </HelpModeProvider>
  </React.StrictMode>
)

You should place the HelpModeProvider at the most top of the hierarchy of your component based in which parts you want to use the inspector mode. It will requires a prop inspectableComponents that is a map of the components that you want to be inspected. The key of the map is the component name and the value is an object with the component name and a description.

The hook useHelpMode is used to enable the inspector mode. It returns a boolean that indicates if the inspector mode is enabled or not. You can use it to show or hide the inspector mode button.

const ToggleHelpModeButton = () => {
  const { toggleHelpMode } = useHelpMode()
  return (
    <button onClick={toggleHelpMode} type="button">
      Toggle Help Mode
    </button>
  )
}

The hook useHelpBorder is responsible for handling the tracking of the component that is being inspected. It returns callbacks that should be added to onMouseEnter and onMouseLeave events of the component that you want to be inspected, it register the component and make it inspectable by mouse hover. It also provides a default style for the component that is being inspected.

const HeroBlogLinkListItem = () => {
  const { onMouseEnter, onMouseLeave, style } = useHelpBorder()
  return (
    <li
      onMouseEnter={onMouseEnter('blog-post')}
      onMouseLeave={onMouseLeave()}
      style={{
        border: style('blog-post').border,
      }}
    >
      {/** ... */}
    </li>
  )
}

API Documentation

This section provides a comprehensive reference for the library's API.

  • HelpModeProvider: A context provider that enables the use of inspector functionalities. Accepts inspectableComponents as a prop, defining the components to be inspected.
  • useHelpMode: A hook to enable the inspector mode. Returns an object containing various properties and functions like helpModeEnabled, inspectorEnabled, elementDescription, toggleHelpMode, etc.
  • useHelpBorder: A hook for tracking and styling inspected components. It provides onMouseEnter and onMouseLeave callbacks for component interaction, and a style method for dynamic styling based on inspection state.
  • InspectableComponent: An interface representing an inspectable component with properties name and description.

Each function and interface is designed to integrate seamlessly, providing a user-friendly inspection mode in your React application.