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

justified-mosaic

v1.0.0

Published

A react component which automatically resizes images to conform to a justified layout using Flickr's open-source algorithm

Downloads

4

Readme

Justified Mosaic

A react component which automatically resizes images to conform to a justified layout using Flickr's open-source algorithm.

Basic example

Installation:

npm install --save justified-mosaic

Basic Usage:

const images = [
  { src: 'http://imagewebsite.com/image1.png' },
  { src: 'http://imagewebsite.com/image2.jpg' },
  { src: 'http://imagewebsite.com/image3.gif' },
  ...
];

<JustifiedMosaic images={images} />

Props:

| Prop | Type | Required | Default | Description | | ---- | ---- | -------- | ------- | ----------- | | images | array | Yes | N/A | An array of objects which follow a shape described below | | omitIncompleteRows | boolean | No | true | If true, images which are unable to form a complete row will be dropped | | containerPadding | integer | No | 5 | Pixels to use as padding around the container | boxSpacing | integer | No | 5 | Pixels of empty space between images | | targetRowHeight | integer | No | 300 | Pixel height of each row in a perfect world | | rowLimit | integer | No | Infinity | Maximum number of rows to render. Excess images will be dropped | darkenOnHover | boolean | No | false | If false, image will not darken and title/description will not be displayed |

Shape of images prop

The following keys are part of the images prop of the main component. Remember, if the component prop darkenOnHover is not true, title and description will never be displayed. If darkenOnHover is true, and a title and description are not provided, the image will still darken, but no text will be displayed.

| Key | Type | Required | Description | | --- | ---- | -------- | ----------- | | src | string | Yes | Link to an image | | title | string | No | Title of the image, also used as alt text. Displayed when the user hovers over the image | | description | string | No | Description of the image. Displayed in smaller text below the title | | url | string | No | A URL to navigate to when the image is clicked |

Code example:

{
  src: 'http://somewebsite.com/with/an/image.jpg',
  title: 'Image Title',
  description: 'Tell the user something about the image',
  url: 'Navigate here if the user clicks the image'
}

Want to tinker with it?

git clone http://github.com/LegendaryLinux/justified-mosaic.git
npm install && npm run dev
cd public/ && http-server

The browse to localhost:8080