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

d3-boxes

v1.0.0

Published

Nested box layout for use with D3 visualizations.

Downloads

17

Readme

d3-boxes

Nested box layout for use with D3 visualizations. Check out this example!

image

The above nested box structure can be configured like this:

var layout = {
  orientation: "vertical",
  children: [
    "A",
    {
      orientation: "horizontal",
      children: [
        "B",
        "C"
      ],
      size: 2 // Make this layer have a size weight of 2 (default is 1)
    },
    "D"
  ]
};

var sizes = {
  A: {
    size: 2 // Make the "A" box have a size weight of 2 (default is 1)
  }
};

var box = {
  width: 960,
  height: 500
};

var boxes = d3.boxes(layout, sizes, box);

For more context, see the full example code.

The following features are also present:

  • Specifying relative (proportions to siblings) or absolute (fixed number of pixels) size of any node in the layout tree. Relative size makes sense for resizable visualizations, while absolute size makes sense for conventional UI widgets that only look good at a specific size in terms of pixels. To use this feature, specify size as a string ending in "px".

  • Toggling visibility of components. When a component is marked as "hidden", it is excluded from the layout algorithm. This could be used to, for example, hide and show the JSON configuration editor when the user clicks on a "settings" button. To use this feature, add { hidden : true } to the sizes configuration.

Installing

If you use NPM, npm install d3-boxes. Otherwise, download the latest release.

API Reference

# boxes(layout, sizes, box)

This function computes the nested box layout from a tree data structure.

Takes as input the following arguments:

  • layout A tree data structure defining nested boxes. The root of the tree may be either a leaf node or an internal node.
    • Leaf nodes are component alias strings.
    • Internal nodes are objects with the following properties:
      • orientation A string, either
        • "horizontal", meaning this node is subdivided horizontally with children placed from left to right, or
        • "vertical", meaning this node is subdivided vertically with children placed from top to bottom.
      • children An array of child node objects, each of which may be either a leaf node or internal node.
      • size The size of the internal node, with the same specifications as values within sizes (see next bullet point).
      • optional name in order to get position and size of this internal node.
  • sizes An object that specifies component size options, where
    • Keys are component alias strings.
    • Values are objects with the following properties:
      • size the width (if the containing box is horizontal) or height (if the containing box is vertical) of the component. May be either:
        • a number (like "1.5" or "1", expressed as a number or a string) that determines size relative to siblings within the containing box, or
        • a count of pixels (like "50px" or "200px" expressed as a string with "px" suffix) that determines an absolute fixed size. This is useful in cases where components have fixed-size UI widgets rather than flexibly resizable visualizations.
        • If size is not specified, it is assigned a default value of 1.
      • hidden A boolean for hiding components. If true, the component is excluded from the layout, if false the component is included.
  • box An object describing the outermost box of the layout, with the following properties:
    • width The width of the box in pixels.
    • height The height of the box in pixels.
    • x The X offset of the box in pixels. If not specified, this defaults to zero.
    • y The Y offset of the box in pixels. If not specified, this defaults to zero.

Returns an object where

  • Keys are component aliases.
  • Values are objects representing the computed box for the component, having the following integer properties:
  • x The X offset of the box in pixels.
  • y The Y offset of the box in pixels.
  • width The width of the box in pixels.
  • height The height of the box in pixels.
  • nonleaf A boolean (true/ undefined) in case of a named internal node (composed boxe).
  • These box dimensions are quantized from floats to ints such that there are no gaps.