Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
react-cursor-position
Advanced tools
A React component that decorates its children with touch and mouse cursor coordinates, plotted relative to itself.
react-cursor-position is a primitive component for composing UI features that require notification of cursor or touch position changes. Position coordinates are plotted relative to the HTML element rendered by react-cursor-position. react-cursor-position re-renders child components with new position props when the cursor or touch position changes.
See the react-cursor-position demo site.
Experiment with react-cursor-position live on CodePen.
npm install --save react-cursor-position
If you are upgrading from v2x to v3x please see the release notes
If you are upgrading from v1x to v2x please see the release notes.
import ReactCursorPosition from 'react-cursor-position';
...
<ReactCursorPosition>
<YourComponentOne/>
<YourComponentTwo/>
</ReactCursorPosition>
react-cursor-position wraps its children in a div, which mouse and touch position are plotted relative to.
Each child component will receive the following props:
{
detectedEnvironment: {
isMouseDetected: false,
isTouchDetected: false,
},
elementDimensions: {
width: Number,
height: Number
},
isActive: Boolean,
isPositionOutside: Boolean,
position: {
x: Number,
y: Number
}
}
This structure may be customized by implementing mapChildProps
API feature.
The information in detectedEnvironment
is acquired from interaction with this component and will be unset until the first interaction.
All props are optional.
activationInteractionMouse : String - One of INTERACTIONS.HOVER (default), INTERACTIONS.CLICK. Import Interactions like this import ReactCursorPosition, { Interactions } from 'react-cursor-position'
. See examples. for more.
activationInteractionTouch : String - One of INTERACTIONS.PRESS (default), INTERACTIONS.TAP, or INTERACTIONS.TOUCH. Import Interactions like this import ReactCursorPosition, { Interactions } from 'react-cursor-position'
. See examples.
className : String - CSS class name(s) to be applied to the div rendered by react-cursor-position.
hoverDelayInMs : Number - Amount of time, in milliseconds, to delay hover interaction from activating. Defaults to 0.
hoverOffDelayInMs : Number - Amount of time, in milliseconds, to delay hover off interaciton from deactivating. Defaults to 0.
isEnabled : Boolean - Enable or disable cursor position monitoring without remounting. Defaults to true.
mapChildProps : Function - Model child component props to your custom shape.
Function receives one parameter with the signature
{ isActive: Boolean, isPositionOutside: Boolean, position: { x: Number, y: Number } }
.
It should return an object that is compatible with the props interface of your child components.
See example demo.
onActivationChanged : Function - Called when the component is active.
Function receives one parameter with the signature { isActive: Boolean }
.
onPositionChanged : Function - Called when cursor or touch position changes.
Function receives one parameter with the signature { elementDimensions: { width: Number, height: Number }, isPositionOutside: Boolean, position: { x: Number, y: Number } }
.
onDetectedEnvironmentChanged : Function - Called when detected environment (mouse or touch) changes.
Function receives one parameter with the signature { isMouseDetected: Boolean, isTouchDetected: Boolean }
.
pressDurationInMs : Number - Milliseconds delay before press gesture is activated. Defaults to 500.
pressMoveThreshold : Number - Amount of movement, in pixels, allowed during press gesture detection. Defaults to 5.
shouldDecorateChildren : Boolean - Suppress decoration of child components by setting this prop false. Defaults to true.
shouldStopTouchMovePropagation : Boolean - Stop touchmove event bubbling when react-cursor-position is active. Defaults to false.
style : Object - Style to be applied to the div rendered by react-cursor-position.
tapDurationInMs : Number - Max milliseconds allowed for a screen touch to be considered a tap gesture. Defaults to 180.
tapMoveThreshold : Number - Amount of movement, in pixels, allowed during tap gesture detection. Defaults to 5.
reset: Invoking the reset method instructs react-cursor-position to recalculate its position relative to the page.
See API Examples section of the demo site for more.
Please open an issue.
git clone https://github.com/ethanselzer/react-cursor-position.git
cd react-cursor-position
npm install
npm run build
cd example
yarn
yarn start
If your default browser does not start automatically, open a new browser window and go to localhost:3000
git clone https://github.com/ethanselzer/react-cursor-position.git
cd react-cursor-position
npm install
npm run #print available commands
The Example Project may be used in development of react-cursor-position.
To rebuild the source automatically when changes are made, run npm run build-watch
.
Please contribute by opening an issue or a pull request.
Thanks to the following community members for opening GitHub Issues and Pull Requests. Your input is very much appreciated!
You are awesome! ✨💫
MIT
FAQs
A React component that decorates its children with touch and mouse cursor coordinates, plotted relative to itself.
We found that react-cursor-position demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.