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

svelte-brick-gallery

v1.0.1

Published

A masonry-like image gallery component for svelte

Downloads

89

Readme

Svelte Brick Gallery

A masonry-like image gallery component for svelte

See the Demo

Preview Image

Installation

npm install svelte-brick-gallery

Usage

The component has an images prop that takes an array of objects with a src property, which contains a path or an url of each image

<script>
  import Gallery from "svelte-brick-gallery";

  // an array of { src } objects
  let images = [{ src: "1.jpg" }, { src: "2.jpg" }, ...];

</script>

<Gallery {images}/>

Props

| Props | Type | Description | Default | |------------|---------|----------------------------------------------------------------------------------|---------| | images | array | an array of { src } objects containing the path or url of each images to display | [] | | itemWidth | number | default display width in pixel of an image | 300 | | itemHeight | number | display height in pixel of an image | 200 | | gap | number | margin in pixel between images | 10 | | justify | string | alignment, can be : left, center or right | left | | delay | number | duration of an image's loading animation in milliseconds | 1000 |

example 1

If the width and height of the images are known beforehand, include them in the array of objects

<script>
  import Gallery from "svelte-brick-gallery";

  // an array of { src, width, height } objects
  let images = [{src, width, height}];

</script>

<Gallery {images}/>

See the REPL

example 2

An image slot is available if you want to customize the render and interaction of the image.

<script>
  import Gallery from "svelte-brick-gallery";

  // an array of objects with a 'src', 'width' and 'height' properties
  let images = [{src, width, height}];

</script>

<Gallery {images}>
  <div slot="image" let:index let:style let:displayWidth let:displayHeight style="height: 100%;">
    <img src={images[index].src} {style} alt={images[index].width + 'x' + images[index].height}>
  </div>
</Gallery>

let:index: the index of an image inside the array. let:style: the default style which sets the image to cover the whole area using object-fit: cover; . let:displayWidth: the rendered width (content and padding) in pixel of the box containing the image. let:displayHeight: the rendered height in pixel of the box containing the image.

See the REPL

example 3

Two (2) more slots are available : loading and error

<script>
  import Gallery from "svelte-brick-gallery";

  // an array of objects with a 'src', 'width' and 'height' properties
  let images = [{src, width, height}];

</script>

<Gallery {images}>
  <div slot="loading">
    ...loading
  </div>
  <div slot="image" let:index let:style style="height: 100%;">
    <img src={images[index].src} {style} alt={images[index].width + 'x' + images[index].height}>
  </div>
  <div slot="error" let:load let:src>
    <button on:click={() => load(src)}>reload</button>
  </div>
</Gallery>

The loading slot allows to add a custom loading animation for each images. The error slot allows to display an error message when the image has failed to load and provides a load function that can reload the image.

See the REPL

License

Distributed under the MIT License