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

pure-masonry-grid

v1.0.5

Published

Masonry Grid without absolute positioning and css

Downloads

6

Readme

pure-masonry-grid

Masonry Grid without absolute positioning and css

Website and Examples

In development...

Docs

Getting Started


Adding to project via npm

npm i pure-masonry-grid

or just download the files and include in your HTML via script tag as follows

<script src="pure-masonry-grid/dist/pure-masonry-grid.min.js"></script>

Initializing


The following HTML markup should be maintained:

<div id="my-masonry-grid">
  <div>Grid Item 1</div>
  <div>Grid Item 2</div>
  <div>Grid Item 3</div>
  ...
</div>

In js file:

const masonry = new PureMasonryGrid('#my-masonry-grid', //config goes here);

Now you can see the masonry grid with default config. Available config is described below.

Config


columns (default: 4): number

The count of columns.

columnGap (default: 16): number

Horizontal gap between grid items in px.

rowGap (default: columnGap): number

Vertical gap between grid items in px.

itemClass: string

Class added to all grid items individually.

breakpoints: { [key: number]: { ...config } }

Adds responsive breakpoints for custom layouts on different screen sizes. Gets an object with keys as min-width of the screen for media query and values as minimum config object:

{
  // 1 column and 10px gap if window width < 480px
  // as the minimum provided breakpoint is 480
  columns: 1,
  columnGap: 10,
  breakpoints: {
    // 4 columns and 10px gap if window width >= 1200px
    1200: {
      columns: 4,
      columnGap: 10,
    },
    // 3 columns and 20px gap if window width >= 992px
    992: {
      columns: 3,
      columnGap: 20,
    },
    // 2 columns and 15px gap if window width >= 480px
    480: {
      columns: 2,
      columnGap: 15,
    },
  },
}

Events


All event callbacks get instance of the class as first argument.

{
  events: {
    init: instance => {
      console.log('Init: ', instance);
    },
    relayout: instance => {
      console.log('Relayout: ', instance);
    },
    append: instance => {
      console.log('Append: ', instance);
    },
  },
}

init: (instance) => {}

Event is fired after grid is initialized and layout is ready.

relayout: (instance) => {}

Event is fired after the layout has been updated if breakpoints config object has been provided.

append: (instance) => {}

Event is fired after new grid items has been appended via appendItems method.

Methods


appendItems

In case if you need to append new items into grid. It accepts as argument array of HTMLElements. Example of infinite scroll with dummy data:

// dummy data
const srcs = [
  '/img1.jpg',
  '/img2.jpg',
  '/img3.jpg',
  ...
];
const masonry = new PureMasonryGrid('#my-masonry-grid');
const loadMore = document.querySelector('#load-more');
let loading = false;

window.addEventListener('scroll', () => {
  if (loading) {
    return;
  }

  if (window.scrollY + window.innerHeight > loadMore.offsetTop) {
    loading = true;

    // create array of HTMLImageElement with src from dummy data
    const images = srcs.map(src => {
      const img = document.createElement('img');
      img.src = src;

      return img;
    });

    // call appendItems method with array of HTMLImageElement as argument
    masonry.appendItems(images);
  }
});

NOTE: append callback function, if specified in config, is executed after items appended.