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

@lironefitoussi/react-skeleton-img-loader

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lironefitoussi/react-skeleton-img-loader

A React hook for lazy loading images with MUI Skeleton integration

  • 0.1.17
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

react-skeleton-img-loader by Lirone Fitoussi

A React hook for lazy loading images with an integrated Material-UI skeleton loader.

Table of Contents

  • Installation
  • Usage
  • API Reference
  • Examples
  • TypeScript Support
  • Contributing
  • License
  • Changelog

Installation

npm install react-skeleton-img-loader @mui/material

Ensure you have the peer dependencies installed:

npm install react @mui/material @emotion/react @emotion/styled

Usage

import React from 'react';
import useLazyImage from 'react-skeleton-img-loader';

const MyComponent = () => {
  const lazyImage = useLazyImage('https://example.com/image.jpg', {
    width: 300,
    height: 200,
    alt: 'Example image',
  });

  return (
    <div>
      <h1>My Lazy Loaded Image</h1>
      {lazyImage}
    </div>
  );
};

export default MyComponent;

API Reference

useLazyImage(src, options)

A hook that returns a React element containing a lazy-loaded image with a skeleton loader.

Parameters
  • src (string): The source URL of the image to be loaded.
  • options (object):
    • width (number): The width of the image and skeleton.
    • height (number): The height of the image and skeleton.
    • alt (string, optional): The alt text for the image. Default: ''.
    • ...imgProps (object, optional): Any additional props to be passed to the img element.
Returns

(React.ReactElement): A div containing both the skeleton and the image.

Examples

Basic Usage

const MyComponent = () => {
  const lazyImage = useLazyImage('https://example.com/image.jpg', {
    width: 300,
    height: 200,
    alt: 'A beautiful landscape',
  });

  return <div>{lazyImage}</div>;
};

With Additional Image Props

const MyComponent = () => {
  const lazyImage = useLazyImage('https://example.com/image.jpg', {
    width: 300,
    height: 200,
    alt: 'A beautiful landscape',
    className: 'my-image-class',
    style: { borderRadius: '8px' },
  });

  return <div>{lazyImage}</div>;
};

TypeScript Support

The useLazyImage hook includes TypeScript definitions. Here's an example of how to use it with TypeScript:

import React from 'react';
import useLazyImage from 'react-skeleton-img-loader';

interface MyComponentProps {
  imageSrc: string;
}

const MyComponent: React.FC<MyComponentProps> = ({ imageSrc }) => {
  const lazyImage = useLazyImage(imageSrc, {
    width: 300,
    height: 200,
    alt: 'Example image',
  });

  return (
    <div>
      <h1>My Lazy Loaded Image</h1>
      {lazyImage}
    </div>
  );
};

export default MyComponent;

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.0.0] - 2023-07-26

Added
  • Initial release of useLazyImage hook
  • Lazy loading functionality for images
  • Skeleton loader using Material-UI
  • TypeScript support
  • Basic documentation and examples

Keywords

FAQs

Package last updated on 26 Jul 2024

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