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

use-justified-layout

v0.0.6

Published

Flickr's justified-layout in a React hook

Downloads

21

Readme

use-justified-layout

Flickr's justified-layout in a React hook. Calculate justified layouts to create beautiful image galleries or whatever you want.

gallery preview

Installation

npm i use-justified-layout

Basic usage

import useJustifiedLayout from 'use-justified-layout'
import images from './images'

const Gallery = () => {
  const [layout] = useJustifiedLayout({
    layoutInput: images
  })
    
  return (
    <div style={{position: "relative", height={layout.containerHeight}}>
      {layout.boxes.map(({width, height, top, left}, index) => (
        <img
          width={width}
          height={height}
          style={{ top, left, position: "absolute" }}
          src={images[index].url}
        />
      ))}
    </div>
  )
}

Hook API

Return

useJustifiedLayout returns and array of two elements: [layout, layoutIsReady]

  • layoutIsReady: a boolean that indicates whether or not the layout calculation is ready. Useful in cases where you want to show a loader to the user.

  • layout: the LayoutGeometry object returned by the original justified-layout library. The type is defined as follow:

    type LayoutGeometry = {
      containerHeight: number;
      widowCount: number;
      boxes: Box[];
    };
    • containerHeight is the height of the complete layout, it is necessary since you need to use position: absolute to display the items. This attribute will help you avoid things to overlap in your DOM.

    • widowCount is the number of items at the end of a layout that doesn't make a full row. For example, the next layout will have a widowCount value of 2.

      image-20210815143049152

    • boxes are the calculated attributes for every item in your layout. A box has the following shape:

      type Box = {
        aspectRatio: number;
        top: number;
        width: number;
        height: number;
        left: number;
      };
Params

The hooks accepts a object with the following shape:

interface IUseJustifiedLayout {
  layoutInput: LayoutInput;
  configuration?: LayoutConfiguration;
  dependencies?: ReadonlyArray<unknown>;
}
  • layoutInput: information about the items, necessary to calculate the layout.

    type AspectRatio = number;
      
    type SizeObject = {
      width: number;
      height: number;
    };
      
    type LayoutInput = AspectRatio[] | SizeObject[];

    As you can see, you have to options when passing layoutInput:

    • Aspect ratios: [1.33, 1, 0.65]

    • Size objects:

      [{
          width: 400,
          height: 300
      },
      {
          width: 300,
          height: 300
      },
      {
          width: 250,
          height: 400
      }]
  • dependencies: this is an array with the same function as the dependencies array that you pass to an useEffect hook. When a value of this array changes, the layout gets recalculated. By default, the layout will recalculate if the layoutInput changes.

  • configuration: you can use the following attributes to customize the layout output. This table comes from the justified-layout library documentation (with a slight modifications), you can see the original here.

    | Name | Type | Default | Description | | --------------------------- | ---------------------------- | ------- | ------------------------------------------------------------ | | containerWidth | number | 1060 | The width that boxes will be contained within irrelevant of padding. | | containerPadding | number |ContainerPadding | 10 | Provide a single integer to apply padding to all sides or provide an ContainerPadding object to apply individual values to each side, it has the following attributes: right, left, top and bottom | | boxSpacing | number| BoxSpacing | 10 | Provide a single integer to apply spacing both horizontally and vertically or provide an BoxSpacing object to apply individual values to each axis, it has the following attributes: horizontal and vertical | | targetRowHeight | number | 0.25 | How far row heights can stray from targetRowHeight. 0 would force rows to be the targetRowHeight exactly and would likely make it impossible to justify. The value must be between 0 and 1 | | maxNumRows | number | none | Will stop adding rows at this number regardless of how many items still need to be laid out. | | forceAspectRatio | boolean | number | false | Provide an aspect ratio here to return everything in that aspect ratio. Makes the values in your input array irrelevant. The length of the array remains relevant. | | showWidows | boolean | true | By default we'll return items at the end of a justified layout even if they don't make a full row. If false they'll be omitted from the output. | | fullWidthBreakoutRowCadence | boolean | number | false | If you'd like to insert a full width box every n rows you can specify it with this parameter. The box on that row will ignore the targetRowHeight, make itself as wide as containerWidth - containerPadding and be as tall as its aspect ratio defines. It'll only happen if that item has an aspect ratio >= 1. Best to have a look at the examples to see what this does. |

Configuration examples

Please visit the justified-layout documentation to get more ideas on how to play with the configurations.

Demos

WIP :)