0.5.6 • Published 26 days ago

overlayscrollbars-react v0.5.6

Weekly downloads
11,321
License
MIT
Repository
github
Last release
26 days ago

OverlayScrollbars React Downloads Version License

OverlayScrollbars for React

This is the official OverlayScrollbars React wrapper.

Installation

npm install overlayscrollbars-react

Peer Dependencies

OverlayScrollbars for React has the following peer dependencies:

npm install overlayscrollbars
  • The React framework: react
npm install react

Usage

The first step is to import the CSS file into your app:

import 'overlayscrollbars/overlayscrollbars.css';

Note: If the path 'overlayscrollbars/overlayscrollbars.css' is not working use 'overlayscrollbars/styles/overlayscrollbars.css' as the import path for the CSS file.

Component

The main entry point is the OverlayScrollbarsComponent which can be used in your application as a component:

import { OverlayScrollbarsComponent } from "overlayscrollbars-react";

// ...

<OverlayScrollbarsComponent defer>
  example content
</OverlayScrollbarsComponent>

Properties

The component accepts all properties of regular elements such as div and span.
Additionally it has custom optional properties:

  • element: accepts a string which represents the tag of the root element.
  • options: accepts an object which represents the OverlayScrollbars options.
  • events: accepts an object which represents the OverlayScrollbars events.
  • defer: accepts an boolean or object. Defers the initialization to a point in time when the browser is idle.

Note: None of the properties has to be memoized.

Note: Its highly recommended to use the defer option whenever possible to defer the initialization to a browser's idle period.

// example usage
<OverlayScrollbarsComponent
  element="span"
  options={{ scrollbars: { autoHide: 'scroll' } }}
  events={{ scroll: () => { /* ... */ } }}
  defer
/>

Ref

The ref of the OverlayScrollbarsComponent will give you an object with which you can access the OverlayScrollbars instance and the root element of the component.
The ref object has two properties:

  • osInstance: a function which returns the OverlayScrollbars instance.
  • getElement: a function which returns the root element.

Hook

In case the OverlayScrollbarsComponent is not enough, you can also use the useOverlayScrollbars hook:

import { useOverlayScrollbars } from "overlayscrollbars-react";

// example usage
const Component = () => {
  const ref = useRef();
  const [initialize, instance] = useOverlayScrollbars({ options, events, defer });
  
  useEffect(() => {
    initialize(ref.current);
  }, [initialize]);
  
  return <div ref={ref} />
}

The hook is for advanced usage and lets you control the whole initialization process. This is useful if you want to integrate it with other plugins such as react-window or react-virtualized.

The hook will destroy the instance automatically if the component unmounts.

Parameters

Parameters are optional and similar to the OverlayScrollbarsComponent. Its an object with optional properties:

  • options: accepts an object which represents the OverlayScrollbars options.
  • events: accepts an object which represents the OverlayScrollbars events.
  • defer: accepts an boolean or object. Defers the initialization to a point in time when the browser is idle.

Return

The useOverlayScrollbars hook returns a tuple with two values:

  • The first value is the initialization function, it takes one argument which is the InitializationTarget.
  • The second value is a function which returns the current OverlayScrollbars instance or null if not initialized.

Note: The identity of both functions is stable and won't change, thus they can safely be used in any dependency array.

License

MIT

@vdjurdjevic/react-toolkit@aukindustries/auk-components@riiid/www-packlocomotive-dsbiz-email-extensions@knapsack/toby@everything-registry/sub-chunk-2394polaris-easy-email-extensionstemplate-builder-extensionst4b-core-frontedt4b-core-frontend@momos/easy-email-extensions@moonshop/easy-email-extensions@pui-cn/react@sambegin/easy-email-extensions@plugilo/easy-email-extensions@wisdomise/utilsenavia-io-app-core-test@ubidy_devs/ubidy-uikit@ubergrape/aurora-ui@uidu/shellenvy-ui@kwooshung/react-overlay-scrollbars-smooth@lms365globaldelivery/lms365-cs-insight-navigator-libraryeasy-pdf-extensionseasedraft-templateeasedraft-template-extensionseasy-email-extensionseasy-email-extensions-ruseasy-email-pro-editoreasy-email-pro-theme@snack-uikit/scroll@rizqirakun/easy-email-extensions@sdv-streaming/web@sdv-streaming/web-god@sdv-streaming/web-native@sima-land/ui-nucleonsduxweb@truongan106/easy-email-extensions91-easy-email-extensions@appsmithorg/design-system@asany/components@asany/editor@asany/sunmao@zoom-studio/zoom-react-components@do-exam/publishablecode-rex-email-editor-extensionsbrokarry-delivery-monitorbeacas-editorbeacas-pluginskia-easy-email-extensionspolaris-email-extensions@based/uibulogngo-common-componentsmaterial-scrollbarsarchbase-react@bty/chat-ui@bty/chat-ui-mobile@duxweb/dux-refine@duongtruongan/easy-email-extensions@easypost/easy-uirealmail-extensionsrevo-email-extensions@groovymedia/easy-email-extensions@gruzf/widget@hsuehpe/easy-email-extensionsseidr-react@infinitebrahmanuniverse/nolb-ov@innovatrics/food-menu@invoke-ai/ui@invoke-ai/ui-library
0.5.6

26 days ago

0.5.5

1 month ago

0.5.4

3 months ago

0.5.3

6 months ago

0.5.2

8 months ago

0.5.1

10 months ago

0.5.0

1 year ago

0.4.0

1 year ago

0.3.0

2 years ago

0.2.3

3 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

5 years ago

0.1.0

5 years ago