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

dom-stack

v0.0.1

Published

Create a stack of DOM elements. You can add/remove elements, reorder them, hide/show the elements, transit between them, or move them all together.

Downloads

4

Readme

#DOM Stack

Create a stack of DOM elements. You can hide/show the elements, transit between them, or move them all together.

##Installation

npm install dom-stack

##How to use

###Initialize

Require and initialize dom-stack:

var Stack = require("dom-stack"),
  stack = new Stack();

Let's say that we have five dom elements:

var sections = document.querySelectorAll("section");
var dom1 = sections[0];
var dom2 = sections[1];
var dom3 = sections[2];
var dom3 = sections[3];
var dom3 = sections[4];

###Add dom elements

You can add the dom elements. They will be removed from their current position in the DOM and be added to the stack.

stack.add(dom1);
stack.add(dom2);
stack.add(dom3);
stack.add(dom4);
stack.add(dom5);

###Remove dom elements

You can remove dom elements from the stack:

stack.remove(dom4);
stack.remove(dom5);

###Place the stack

You can attach the stack to a parent element. All the elements from the stack will be appended to main, in the same order that they were added. You can call place again to attach the stack to another dom element.

stack.place(document.querySelector("main"));

###Reorder dom elements:

Then you can reorder the elements.

stack.up(dom2); // the order will be: dom2, dom1, dom3
stack.down(dom1); // the order will be: dom2, dom3, dom1

Or you can move a dom element directly to a new location:

stack.move(dom3, 0); // the order will be: dom3, dom2, dom1

###Insert new dom elements

Let's reinsert the dom elements that we previously removed:

stack.insert(dom4, 0); // the order will be: dom4, dom3, dom2, dom1;
stack.insert(dom5, 3); // the order will be: dom4, dom3, dom2, dom5, dom1;

You can now where a dom element is at anytime, and how many dom elements you have:

stack.getPosition(dom5); // 3
stack.count(); // 5

###Hiding/showing elements

You can hide/show dom elements. The elements are not actually hidden, but totally removed from the DOM for performance reason.

stack.hide(dom4); // will hide dom4 by removing it from the dom.

When showing the element, it will be added back to the dom:

stack.show(dom4);

There's a short cut for hiding/showing them all:

stack.hideAll();
stack.showAll();

##Transit to a dom element

If you hide all elements but then show just one of them:

stack.hideAll();
stack.show(dom1);

You can then transit to another dom element, which will hide the previous one and show the new one:

stack.transit(dom2); // will hide dom1 and show dom2

LICENSE

MIT