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

grid-distribute

v0.3.1

Published

Efficiently distribute elements on a grid according to their priority or score.

Downloads

4

Readme

grid-distribute

Efficiently distribute elements on a grid according to their priority or score.

This can be useful for placing components on a full-screen dashboard or images in a fixed-size gallery.

It's fully typed via typescript but can be used with plain javascript as well.

Setup

npm install grid-distribute
# or
yarn add grid-distribute

Usage:

import setupGrid from "grid-distribute";

const grid = setupGrid({width: 4, height: 3});

const elements = [{prio: 2}, {prio: 4}, {prio: 2}];
const result = grid.distribute({elements, getPriority: e => e.prio});

the result will look like this:

[
  {
    position: {top: 0, left: 0, width: 4, height: 2},
    element: {prio: 4}
  },
  {
    position: {top: 2, left: 0, width: 2, height: 2},
    element: {prio: 2}
  }
  {
    position: {top: 2, left: 2, width: 2, height: 2},
    element: {prio: 2}
  }
]

API

setupGrid({width, height, maxRatio, minRatio}) => Grid

Calling setupGrid will find all valid tile sizes and returns a Grid object which you can use to distrbute your elements.

width, height [required]

Amount of rows and columns of your grid.

minRatio default: 0.5, maxRatio default: 2

When determining all valid tile sizes, you can use minRatio and maxRatio to prevent tiles with weird aspect ratios. A tile which is 3 columns wide and 2 rows high has a ratio of 3/2 -> 1.5

Grid.distribute(options) => ElementWithPosition[]

This function performs an A*-like search through the solution space and returns a solution in which elements are paired with positions.

The return value has the shape [{element, position: {top, left, width, height}},...]. element is the original element that you passed into the elements argument.

There is no guarantee that all elements will be placed onto the grid. Passing a high skipMultiplier to the options will favour solutions that fit as many elements as possible though.

option: elements: E[] [required]

Pass a list of arbitrary objects that need to be put onto the grid.

option: getPriority: (e: E) => number [required]

Pass a callback that extracts a priority value for an element. Priorities will be normalized by the algorithm, so it can be any number. Elements with higher priority will be assigned tiles with less costs. (i.e. typically a greater area).

options costOfUnexplored: (e: E) => number default: () => 0.5

This option deterimines the greediness of the algorithm by assigning an estimated cost to elements that haven't been placed yet.

The cost needs to be between 0 and 1. Setting this value to 0 will perform an exhaustive search returning the optimal solution given the costs. This will result in thousands of iterations even for few elements placed on a grid. Setting this value to 1 will lead to very few iteration cycles leading to a sub-optimal solution since backtracking is deemed too expensive due to the high cost of unexplored solutions.

options costOfEmptyCell: number default: 0.75

This option determines the cost of an empty cell in the final solution.

options ratioDiffWeight: number default: 0.1

ratioDiff refers to the relative size of the normalized element priority and the the ratio of the assigned tile area compared to the whole grid size.

Here's an example: Let's assume there are two elements e1 with a prio of 3 and e2 with a prio of 1. The normalized prios are 0.75 and 0.25 respectively.

Now we try to determine the cost for assigning e1 to a 3x2 tile on a 3x3 grid. The tile takes up 6 of the 9 grid cells. So its ratio is about 0.66. The ratio diff is determined by 1 - Math.min(tileRatio / elementRatio, elementRatio / tileRatio). So in our case it's 0.1111. If the elementRatio would be half as big as the tileRatio or vice versa, the ratioDiff would be 0.5

The ratioDiffWeight determines the weight of the ratioDiff when estimating the cost of placing this element. Setting it to 0 would mean that a ratio difference would not matter, and higher values would encourage solutions in which the ratioDiff is as small as possible at the expense of more iterations.

options costsOfPlacement: ({element, position, grid, ratioDiffMultiplier}) => number[] default: defaultCostsOfPlacement

Determine the cost multipliers when placing an element on a grid. The cost multipliers are an array of numbers in the range of 0 to 1. These values get averraged. Higher values indicate a sub-optimal placement for the given element, whereas a cost of 0 would indicate a perfect placement.

The defaultCostsOfPlacement can be imported via import {defaultCostsOfPlacement} from "grid-distribute" and used as a basis for more specific cost calculations. It returns the weighted ratioDiff explained above, as well as costs for the horizontal and vertical distance from the center. This favours solutions in which higher prio elements will be closer to the center of the grid.

Here's the description of the of the callback arguments:

element: E the element that was just placed on the grid

position: {left, top, height, width} the position of the element on the grid

grid: {height, width} width and height of the grid

ratioDiffMultiplier: number the cost as determined by the ratioDiff and the ratioDiffWeight

options skipMultiplier: (element: E) => number default: 1

This option determines the cost of not placing the given element on the grid.

A note on costs:

The costs applied to an element are multiplied with the relative priority of that element. This means that higher-prio elements tend to be placed more favourably than lower-prio elements if you the same costs are applied to them.