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

zmgr

v2.2.3

Published

z-index manager

Downloads

25

Readme

zmgr

manage stackable values such as z-index.

Install

npm install --save zmgr

Usage

include dist/index.js then:

mgr = new zmgr({...})
ret1 = mgr.add 100, 1
ret2 = mgr.add 100, 1
mgr.remove ret1
mgr.remove ret2

Constructor options

  • init: default value. optional.
    • if provided, the first added value will be updated based on init and step:
      • if step > 0: max(init, added) will be used
      • if step < 0: min(init, added) will be used
  • step: amount of increase between add function calls. default 1 if omitted.
    • can be negative, indicating a decreased value.
  • layer: object containing customized value for named layers. in this object:
    • key as layer name.
    • value as layer value.

API

  • add(v,s): use a certain v. Return assigned value to use.
    • params:
      • v: expected z-index or string to indicate layer to use. see Named Layers section below.
        • when v is a number, value is added to default layer.
      • s: custom step. direction is ignored.
        • use step (in constructor option) if omitted.
  • remove(n, v): remove a used value from layer n.
    • when n is a number, value is removed from default layer.
  • scope(n): return a scoped interface to this object with add and remove methods.
    • add / remove work the same as add / remove in this object, except they can be called without parameters.
    • n: default layer name for this scope.

Layered Values

You can use multiple zmgr with different init value to better separate values for different purpose. For example, assume we have some dialogs to popup. Some of them are just hints and some of them are important message and users must interact with them.

We can thus use 2 zmgr for configuring them z-index accordingly:

manager = do
  prompt: new zmgr init: 10000
  hint: new zmgr init: 100

ldcv = do
  prompt1: new ldcover zmgr: manager.prompt
  prompt2: new ldcover zmgr: manager.prompt
  hint1: new ldcover zmgr: manager.hint
  hint2: new ldcover zmgr: manager.hint

Named Layers

Alternatively, you can use string as layer name when adding a value:

mgr = new zmgr({
  group: {
    "my new group": 100  # initial value for `my new group` layer is 100
    "default": 10        # initial value for `default` layer is 10
  }
);
mgr.add "my new group" # return 101
mgr.add "default" # return 11
mgr.add "my new group" # return 102

To scope APIs to specific layer by default, use scope:

splash = mgr.scope('splash')
val = splash.add()  # return 4001

zmgr is by default shipped with following layers (and their corresponding default values):

  • notify: 5000
  • splash: 4000
  • modal: 3000
  • fixed: 2000
  • float: 1000
  • base: 1

instead of using these names as string directly, you can use predefined members such as zmgr.notify:

mgr.add(zmgr.notify);

Fallback

While zmgr is necessary for aligning values such as z-index across components, we can prepare a fallback one if zmgr is not available ( example in livescript ):

zmgr = do
  add: (v) -> @[]s.push(z = Math.max(v or 0, (@s[* - 1] or 0) + 1)); return z
  remove: (v) -> if (i = @[]s.indexOf(v)) < 0 => return else @s.splice(i,1)

License

MIT