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

rdndmb-html5-to-touch

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rdndmb-html5-to-touch

Multi Backend pipeline for react-dnd-multi-backend (HTML5 <-> Touch)

  • 8.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34K
decreased by-14.26%
Maintainers
1
Weekly downloads
 
Created
Source

React DnD: HTML5 to Touch Pipeline NPM Version dependencies Status devDependencies Status

Try it here!

This project is a Drag'n'Drop backend pipeline compatible with React DnD Multi Backend. It cannot be used standalone.

This pipeline starts by using the React DnD HTML5 Backend, but switches to the React DnD Touch Backend if a touch event is triggered. You application can smoothly use the nice HTML5 compatible backend and fallback on the Touch one on mobile devices!

See the migration section for instructions when switching from 6.x.x.

Installation

npm install -S rdndmb-html5-to-touch

You can then import the pipeline using import { HTML5toTouch } from 'rdndmb-html5-to-touch'.

Usage

This package should be used with react-dnd-multi-backend.

import { DndProvider } from 'react-dnd-multi-backend'
import { HTML5toTouch } from 'rdndmb-html5-to-touch'

const App = () => {
  return (
    <DndProvider options={HTML5toTouch}>
      <Example />
    </DndProvider>
  )
}

Examples

You can see an example here.

Migrating

Migrating from 6.x.x and earlier

HTML5toTouch used to be provided as part of react-dnd-multi-backend which made importing different builds (commonjs vs esm) more difficult. It also used to be a default export.

Previously:

import HTML5toTouch from 'react-dnd-multi-backend/dist/esm/HTML5toTouch'
// or
import HTML5toTouch from 'react-dnd-multi-backend/dist/cjs/HTML5toTouch'

Now:

import { HTML5toTouch } from 'rdndmb-html5-to-touch'

License

MIT, Copyright (c) 2021-2022 Louis Brunner

Keywords

FAQs

Package last updated on 21 Sep 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