react-longpressable
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/react-longpressable package

1.1.1 • Public • Published

React LongPressable

npm

Long-press wrapper for React that uses pointer events. Supports normal clicks as well.

Pointer events are hardware agnostic, meaning that they can be triggered by a mouse, a pen/stylus, or touch. Read more here: https://developer.mozilla.org/en-US/docs/Web/API/Pointer_events

Install

npm install --save react-longpressable

Props

  • onShortPress(event) (function): callback for normal clicks.
  • onLongPress(event) (function): callback for long presses.
  • longPressTime (number, default 500): duration of a long press in milliseconds.
  • dragThreshold (number, default 5): distance in pixels that the mouse is allowed to move while clicking without canceling the long press.
  • primaryMouseButtonOnly (boolean, default true): whether long presses are only triggered by the left mouse button.

Example

import React from 'react';
import LongPressable from 'react-longpressable';
 
export default class Example extends React.PureComponent {
 
  onLongPress = (e) => {
    console.log('Long pressed.');
  }
 
  onShortPress = (e) => {
    console.log('Short pressed.');
  }
 
  render() {
    return (
      <LongPressable
        onShortPress={this.onShortPress}
        onLongPress={this.onLongPress}
        longPressTime={700}>
        <button>Press Me!</button>
      </LongPressable>
    );
  }
 
}

/react-longpressable/

    Package Sidebar

    Install

    npm i react-longpressable

    Weekly Downloads

    1,331

    Version

    1.1.1

    License

    MIT

    Unpacked Size

    14.9 kB

    Total Files

    7

    Last publish

    Collaborators

    • stardust66