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

popflow

v1.0.0

Published

[![npm version](https://img.shields.io/npm/v/popflow?logo=npm)](https://github.com/popflow/popflow) [![npm version](https://img.badgesize.io/https:/unpkg.com/popflow/dist/index.min.js?compression=gzip)](https://github.com/popflow/popflow)

Downloads

2

Readme

PopFlow

npm version npm version

PopFlow is a small yet powerful pop-up tool library that can automatically pop up at a suitable position adjacent to the trigger. It also supports virtual elements, which can be used in canvas and CSS class animations.

Playground

PopFlow

中文文档

Install

npm i popflow

or via CDN

<script src="https://unpkg.com/popflow@latest/dist/index.min.js"></script>
<script>
  console.log(popflow)
</script>

Usage

import { PopFlow } from 'popflow'

const container = document.querySelector('.container'); // default: document.body
const trigger = document.querySelector('.trigger'); 
// or virtual element. type: { getBoundingClientRect: () =>  { left: number, top: number, width: number, height: number } }

const content = document.createElement('div'); // You need to pop up the displayed content
content.classList.add('content');

const popflow = new PopFlow({
  container,
  trigger, // required
  content, // required
})

trigger.onclick = () => {
  popflow.toggle()
  // or
  // if (popflow.opening) {
  //   popflow.close();
  // } else {
  //   popflow.open();
  // }
}

// if you don't need it anymore
popflow.destroy()

CSS Animation

The cssName parameter allows you to add CSS animations when showing and hiding a pop-up layer.

const popflow = new PopFlow({
  cssName: 'fade'
})

PopFlow will add the following 6 classes through the cssName.

`${cssName}-enter-from` // Starts displaying and is removed in the next frame.
`${cssName}-enter-active` // Added in the next frame and removed when the animation ends.
`${cssName}-enter-to` // Added in the next frame and removed when the animation ends.
`${cssName}-exit-from` // Starts hiding and is removed in the next frame.
`${cssName}-exit-active` // Added in the next frame and removed when the animation ends.
`${cssName}-exit-to` // Added in the next frame and removed when the animation ends.

You can write CSS styles like this:

.fade-enter-from, .fade-exit-to {
  transform: scale(.7);
  opacity: 0;
}
.fade-enter-active, .fade-exit-active {
  transition: transform .1s ease, opacity .1s ease;
}

Arrow

The arrow parameter allows you to add a custom arrow element.

const arrow = document.createElement('div')
arrow.classList.add('arrow')

const popflow = new PopFlow({
  arrow
})
.arrow {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  transform-origin: center;
  background: #000;
}

Scroll

The autoScroll parameter controls whether the pop-up layer automatically scrolls with the trigger element when it is scrolled.

The closeOnScroll parameter controls whether the pop-up layer automatically closes when the trigger element is scrolled.

The hideOnInvisible parameter controls whether the pop-up layer automatically hides when the trigger element is not visible on the screen.

AutoUpdate

The autoUpdate parameter controls whether the pop-up layer's position is automatically updated when the size of the container, content, or trigger element changes. This feature relies on the ResizeObserver.

The autoPlacement parameter controls whether the pop-up layer's position is automatically adjusted to ensure that it is fully displayed when there is not enough space.

Hook

PopFlow provides rich hook functions that can execute code during various stages of the pop-up layer's lifecycle.

new PopFlow({
  onBeforeEnter() {
    // Executed before the CSS display animation starts.
  },
  onEntered() {
    // Executed after the CSS display animation completes.
  },
  onBeforeExit() {
    // Executed before the CSS hide animation starts.
  },
  onExited() {
    // Executed after the CSS hide animation completes.
  },
  onBeforePosition(pos) {
    // Executed before setting the pop-up layer's position.
    // pos.position: the final display position.
    // pos.xy: the position of the pop-up layer, undefined means not displayed.
    // pos.arrowXY: the position of the arrow, undefined means not displayed.
    // You can modify xy and arrowXY directly to change the final position.
    if (pos.xy) pos.xy[0] += 10
    if (pos.arrowXY) pos.arrowXY[0] += 10
  },
  onOpen() {
    // Executed when the pop-up layer is displayed.
  },
  onClose() {
    // Executed when the pop-up layer is closed.
  }
})

Virtual Element

The trigger parameter can be a virtual element in addition to a DOM element. This allows you to use PopFlow with canvas. When the canvas is scrolled, you can manually call the popflow.onScroll() method to trigger the pop-up layer to scroll.

const popflow = new PopFlow({
  trigger: {
    getBoundingClientRect() {
      return {
        left: 0,
        top: 0,
        width: 0,
        height: 0
      }
    }
  }
})

canvas.on('scroll', () => popflow.onScroll())

API

Config

| Name | Type | Description | | -- | -- | -- | | container | HTMLElement | The container of the popup. Default value: document.body. | | content | Element | The content element to be popped up | | trigger | { getBoundingClientRect: () => Rect } \| Element | The trigger element | | arrow | Element | The arrow element. | | placement | PLACEMENT | The placement of the popup. Default: 't'. | | translate | [number, number] | The custom xy offset. | | autoPlacement | boolean | Whether to automatically switch the position when there is not enough space. Default: true. | | autoUpdate | boolean | Whether to automatically update the position when the container, content, or trigger size changes. Default: true. | | autoScroll | boolean | Whether to automatically follow the trigger element when it is scrolled. Default: true. | | cssName | string | The CSS animation class name. | | overflowHidden | boolean | Whether the container has overflow hidden. Default: automatically detected. | | coverTrigger | boolean | Whether to cover the trigger element with the popup. | | closeOnScroll | boolean | Whether to automatically close the popup when the trigger element is scrolled. | | hideOnInvisible | boolean | Whether to automatically hide the popup when the trigger element is invisible on the screen. | | onBeforeEnter | () => void | Called before the CSS enter animation starts. | | onEntered | () => void | Called when the CSS enter animation ends. | | onBeforeExit | () => void | Called before the CSS exit animation starts. | | onExited | () => void | Called when the CSS exit animation ends. | | onBeforePosition | (pos: Position) => void | Called before setting the position of the popup. You can modify the pos object to set the final position of the popup. | | onOpen | () => void | Called when the popup is opened. | | onClose | () => void | Called when the popup is closed. |

Property

| Name | Type | Description | | -- | -- | -- | | el | HTMLElement | The pop-up layer element | | config | PopFlowConfig | PopFlow configuration object | | opening | boolean | Indicates whether the pop-up layer is currently displayed | | isAnimation | boolean | Indicates whether a CSS animation is currently in progress |

Methods

open()

Open the PopFlow instance.

open(): void;

close()

Close the PopFlow instance.

close(): void;

toggle()

Toggle the PopFlow instance open or close.

toggle(): void;

destroy()

Destroy the PopFlow instance.

destroy(): void;

onScroll()

Manually trigger the onScroll event. Generally only used when using a virtual element.

onScroll(): void;

update()

Manually update the position of the PopFlow instance.

update(): void;