Socket
Socket
Sign inDemoInstall

react-loading-overlay-ts

Package Overview
Dependencies
3
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-loading-overlay-ts

[![npm version](https://badgen.net/npm/v/react-loading-overlay-ts)](https://www.npmjs.com/package/react-loading-overlay-ts) ![minified + gzipped](https://badgen.net/bundlephobia/minzip/react-loading-overlay-ts) [![downloads](https://badgen.net/npm/dw/re


Version published
Weekly downloads
9.3K
increased by1.23%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

React Loading Overlay

npm version minified + gzipped downloads

A customizable, simple loading overlay with spinner, transitions.

Comparing to react-loading-overlay, this library support ES Module and Typescript friendly, and also have another features like ref forwarding and using latest version of @emotion/css instead emotion.



Quick start :running_woman:

Install this library using npm/yarn

npm i react-loading-overlay-ts
# or
yarn add react-loading-overlay-ts

If you are still using react 17.x, please install v1.0.5 instead

npm i react-loading-overlay-ts@1.0.5
# or
yarn add react-loading-overlay-ts@1.0.5

Wrap your components in it and toggle the active prop as necessary.

import { useState, useCallback } from 'react';
import LoadingOverlay from 'react-loading-overlay-ts';

const Sample = () => {
  const [isActive, setActive] = useState(true)
  const handleButtonClicked = useCallback(() => {
    setActive(value => !value)
  }, [])
  return (
    <LoadingOverlay
      active={isActive}
      spinner
      text='Loading your content...'
    >
      <div style={{ height: 200 }}>
        <p>Some content or children or something.</p>
        <button onClick={handleButtonClick}>Toggle active</button>
      </div>
    </LoadingOverlay>
  )
}

Props :hammer_and_wrench:

  • active (boolean)
    • default: true - whether the loader is visible.
  • fadeSpeed (milliseconds)
    • default: 500 - the transition speed for fading out the overlay.
  • onClick (function)
    • default: undefined - click handler for the overlay when active.
  • className (string)
    • default: undefined - the className for the wrapping <div /> that is present whether active or not.
  • classNamePrefix (string)
    • default: _loading_overlay_ - the prefix for all classNames on the generated elements. see Styling for more info.
  • spinner (boolean OR node)
    • default: false - renders the default spinner when true (and when the loader is active). Otherwise you can provide any valid react node to use your own spinner.
  • text (node)
    • default: undefined - the text or react node to render in the loader overlay when active.
  • styles (object)
    • default: undefined - see Styling for more info.
  • ref (HTML Element)
    • default: undefined - this will refer to wrapper element (see here), if you use it with either useRef or createRef.

Custom Spinner :recycle:

Adding a custom spinner is super easy, here's an example:

Acquire the spinner you want to use. Doesn't matter where you get it, as long as you're rendering a valid React node. It can be a custom svg in your codebase if you want. For this example let's use react-spinners.

npm install react-spinners

Then simply provide it to the spinner prop for your loader.

import LoadingOverlay from 'react-loading-overlay-ts'
import BounceLoader from 'react-spinners/BounceLoader'

export default function MyLoader({ active, children }) {
  return (
    <LoadingOverlay
      active={active}
      spinner={<BounceLoader />}
    >
      {children}
    </LoadingOverlay>
  )
}

Custom styling :nail_care:

Previous versions were difficult to customize because of limited configuration props. This iteration uses a form of styling heavily inspired by Style configuration was inspired by react-select. Internally using emotion to style elements and providing a styles interface to either extend the base styling or completely overwrite it. Additionally, a classNamePrefix prop is available to customize the classNames used on each element, allowing you to define your own styles with your own regular css setup.

Keep reading for details on each option.

Styles with emotion :woman_singer:

The styles prop accepts an object where each key represents one of the following elements:

  • wrapper - main wrapping element, always present.
  • overlay - the overlay positioned over top of the children.
  • content - element inside the overlay containing the spinner and text.
  • spinner - default spinner element.

Each value must be an object or a function (where the first parameter is the base default styles) that returns an object. In either case, the resulting object will be applied as the final set of styles via emotion.css. See examples below.

  • Custom overlay background (extending base styles)

    export default function MyLoader({ active, children }) {
      return (
        <LoadingOverlay
          active={active}
          styles={{
            overlay: (base) => ({
              ...base,
              background: 'rgba(255, 0, 0, 0.5)'
            })
          }}
        >
          {children}
        </LoadingOverlay>
      )
    }
    

  • Custom spinner size + color (extending base styles)

    export default function MyLoader({ active, children }) {
      return (
        <LoadingOverlay
          active={active}
          styles={{
            spinner: (base) => ({
              ...base,
              width: '100px',
              '& svg circle': {
                stroke: 'rgba(255, 0, 0, 0.5)'
              }
            })
          }}
        >
          {children}
        </LoadingOverlay>
      )
    }
    

  • Custom wrapper (non-extended)

    export default function MyLoader({ active, children }) {
      return (
        <LoadingOverlay
          active={active}
          styles={{
            wrapper: {
              width: '400px',
              height: '400px',
              overflow: active ? 'hidden' : 'scroll'
            }
          }}
        >
          {children}
        </LoadingOverlay>
      )
    }
    

Styles with css

Every element has a classname you can target via your own css configuration.

  • _loading_overlay_wrapper
  • _loading_overlay_overlay
  • _loading_overlay_content
  • _loading_overlay_spinner

You can also specify your own classNamePrefix if you wish. For example, if using: classNamePrefix="MyLoader_":

  • MyLoader_wrapper
  • MyLoader_overlay
  • MyLoader_content
  • MyLoader_spinner

The base styles will still be applied, but you could negate all of these using the styles prop:

  • Remove all default styles

    export default function MyLoader({ active, children }) {
      return (
        <LoadingOverlay
          active={active}
          styles={{
            wrapper: {},
            overlay: {},
            content: {},
            spinner: {}
          }}
          classNamePrefix='MyLoader_'
        >
          {children}
        </LoadingOverlay>
      )
    }
    

Styles with styled-components :nail_care:

You can style the loader using styled-component as you might expect.

Simply include the nested elements in your style definition:

  • styled-components example

    import styled from 'styled-components'
    
    const StyledLoader = styled(LoadingOverlay)`
      width: 250px;
      height: 400px;
      overflow: scroll;
      .MyLoader_overlay {
        background: rgba(255, 0, 0, 0.5);
      }
      &.MyLoader_wrapper--active {
        overflow: hidden;
      }
    `
    
    export default function MyLoader({ active, children }) {
      return (
        <StyledLoader
          active={active}
          classNamePrefix='MyLoader_'
        >
          {children}
        </StyledLoader>
      )
    }
    

Keywords

FAQs

Last updated on 19 May 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc