Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@keyvaluesystems/react-multi-inline-images

Package Overview
Dependencies
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keyvaluesystems/react-multi-inline-images

A Multi Inline Images stack

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
6
Created
Source

React Multi Inline Images

npm version

A customizable ready to use Multiple Inline Image stack for React

Try tweaking a dot matrix using this codesandbox link here

Installation

The easiest way to use react-multi-inline-images is to install it from npm and build it into your app with Webpack.

npm install @keyvaluesystems/react-multi-inline-images

You’ll need to install React separately since it isn't included in the package.

Usage

React Multi Inline Images can run in a very basic mode by just providing the data like given below:


import InlineImages from '@keyvaluesystems/react-multi-inline-images';

<InlineImages
  data={dataArray}
/>

The data is an array of objects with the following keys:

  • name - a string that represents each user's name
  • avatarUrl - a string to specify the user image

An example for data array is shown below:

const dataArray = [
  {
    name: 'Jon Dew',
    avatarUrl: 'example.svg'
  },
  {
    name: 'Jack'
  }
];

If no avatarUrl is specified for the user, following default Image will be considered.

You can specify whether to add an elivation effect or to show name on hover with the help of 'elivateOnHover' and 'nameOnHover' prop. Even if elivateOnHover is true, the effect will only be there if the corresponding user has name specified in the data object.

<InlineImages
  data={dataArray}
  elivateOnHover={true}
  nameOnHover={true}
/>

We can also control the distance between each user image with the help of spaceBetweenPics prop as follows.

<InlineImages
  data={dataArray}
  spaceBetweenPics={30}
/>

Props

Props that can be passed to the component are listed below:

PropDescriptionDefault
data: object[] An array of user objects to specify the name and avatar url (image url) undefined
totalUserCount?: number To specify the total number of users present if the additional count is to be displayed at the end of the image stack. The additional count displayed will be the difference between this value and length of data array 0
elivateOnHover?: boolean To add an elivation effect on hover action for user images false
nameOnHover?: boolean To show the name of each user on hovering over the user image false
onUserClick?: function A callback function to be triggered on image click undefined
spaceBetweenPics?: number To specify the distance between each avatar (user image) 20px

Style Customizations

All the default styles provided by this package are overridable using the styles prop. the below code shows all the overridable styles:

<InlineImages
  data={dataArray}
  styles={{
    Avatar: () => ({...styles}),
    Name: () => ({...styles}),
    ExtraValue: () => ({...styles})
  }}
/>

  • Avatar - overrides the avatar (user image) style
  • Name - overrides the user name style
  • ExtraValue - overrides the style of additional value displayed at last

Keywords

FAQs

Package last updated on 17 Apr 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc