Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

tiny-pack

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiny-pack

A really tiny bin packing algorithm < 500 bytes minfied.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
2
Created
Source

tiny-pack

An exceptionally small and fast masonry layout resolver.

Installation

$ npm install tiny-pack

Features & Behavior

tiny-pack resolves a tight grid layout for a set of input elements of varying dimensions. It does not interact directly with the DOM and can be used in any JS environment.

The resolver is agnostic to absolute element and container dimensions, and operates using only relative ratios.

All elements are positioned to have the same height as all other elements within each row. No element can span multiple rows, regardless of how tall and narrow it is.

The resolved layout preserves the aspect ratios of all elements, only scale transformations are necessary to conform the input elements to the layout.

The layout resolver output is a single array of scale values that represent each input element's width relative to the absolute container. It does not return absolute dimensions or coordinates, however, absolute coordinates of each element can be calculated by iterating through the returned scale values.

Usage

Below is a contrived minimal example that demonstrates creating an HTML layout for a set of input element of known dimensions.

import tinyPack from 'tiny-pack';

// Assuming we have a set of images of known dimensions
const images = [
  {width: 450, height: 400, src: '...'},
  {width: 300, height: 200, src: '...'},
  {width: 500, height: 350, src: '...'},
  {width: 400, height: 350, src: '...'},
  {width: 100, height: 600, src: '...'},
  ...
];

// Generate an array of aspect ratios (width/height) from the input dimensions.
const ratios = images.map((element) => {
  return element.width / element.height;
});

// Define the target ratio for each packed row. Each row will be 4 units wide
// and 1 unit high.
const targetRatio = 4;

// `tiny-pack` returns an array of scale values that, when applied to each input
// element, will pack them tightly into rows.
const scales = tinyPack(targetRatio, ratios);

// Create a container element that left-aligns and wraps all child elements.
const container = document.createElement('div');
document.body.appendChild(container);
container.style.display = 'flex';
container.style.flexWrap = 'flex-wrap';
container.style.outline = '1px solid black';

// Append a img tag for each input image definition and set its width
// (as flex-basis) relative to the parent container.
images.map((image, i) => {
  const img = document.createElement('img');
  container.appendChild(img);

  img.src = image.src;
  img.style.flex = `0 1 ${scales[i] * 100} %`;
});

Keywords

masonry

FAQs

Package last updated on 30 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts