Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@solid-primitives/pointer
Advanced tools
A collection of primitives, giving you a nicer API to handle pointer events in a reactive context.
A collection of primitives, giving you a nicer API to handle pointer events in a reactive context.
createPointerListeners
- Setups event listeners for pointer events, that will get automatically removed on cleanup,createPerPointerListeners
- Setup pointer event listeners, while following the pointers individually, from when they appear, until they're gone,createPointerPosition
- Returns a signal with autoupdating Pointer position,createPointerList
- Provides a signal of current pointers on screenpointerHover
- A directive for checking if the element is being hovered by at least one pointer.npm install @solid-primitives/pointer
# or
yarn add @solid-primitives/pointer
createPointerListeners
Setups event listeners for pointer events, that will get automatically removed on cleanup
import { createPointerListeners } from "@solid-primitives/pointer";
Primitive takes one config
argument, of options:
target
- specify the target to attach the listeners to. Will default to document.body
pointerTypes
- specify array of pointer types you want to listen to. By default listens to ["mouse", "touch", "pen"]
passive
- Add passive option to event listeners. Defaults to true
.onenter
, onLeave
, onMove
, ...createPointerListeners({
// pass a function if the element is yet to mount
target: () => el,
pointerTypes: ["touch"],
// both lowerace or capitalized kays work
onEnter: e => console.log("enter", e.x, e.y),
onmove: e => console.log({ x: e.x, y: e.y }),
onup: e => console.log("pointer up", e.x, e.y),
onLostCapture: e => console.log("lost"),
});
createPerPointerListeners
Setup pointer event listeners, while following the pointers individually, from when they appear, until they're gone.
import { createPerPointerListeners } from "@solid-primitives/pointer";
Primitive takes one config
argument, of options:
target
- specify the target to attach the listeners to. Will default to document.body
pointerTypes
- specify array of pointer types you want to listen to. By default listens to ["mouse", "touch", "pen"]
passive
- Add passive option to event listeners. Defaults to true
.onDown
- Start following a pointer from when it's down.onEnter
- Start following a pointer from when it enters the screen.onDown
starts when pointer is down, and ends when that pointer is up. You can create move
and up
listeners when the onStart
runs, to listen to later events of that pointer.
createPerPointerListeners({
target: el,
pointerTypes: ['touch', 'pen'],
onDown({ x, y, pointerId }, onMove, onUp) {
console.log(x, y, pointerId);
onMove(e => {...});
onUp(e => {...});
}
})
onEnter
fires when pointer appears on the screen, and ends then that pointer leaves the screen. You can listen to "down" | "move" | "up" | "leave" | "cancel"
events of that pointer.
createPerPointerListeners({
onEnter({ x, y, pointerId }, { onMove, onLeave, onDown }) {
console.log("New pointer:", pointerId);
onDown(e => {...});
onMove(e => {...});
onLeave(e => {...});
}
});
https://codesandbox.io/s/solid-primitives-pointer-demo-zryr5h?file=/app.tsx
createPointerPosition
Returns a signal with autoupdating Pointer position.
import { createPointerPosition } from "@solid-primitives/pointer";
Primitive takes one config
argument, of options:
target
- specify the target to attach the listeners to. Will default to document.body
pointerTypes
- specify array of pointer types you want to listen to. By default listens to ["mouse", "touch", "pen"]
value
- set the initial value of the returned signal (before the first event)const position = createPointerPosition({
target: document.querySelector("my-el"),
pointerTypes: ["touch"],
});
createEffect(() => {
console.log("position", position().x, position().y);
console.log("hovering", position().isActive);
});
import { pointerPosition } from "@solid-primitives/pointer";
// place this in code to avoid being tree-shaken
pointerPosition;
const [pos, setPos] = createSignal({ x: 0, y: 0 });
const [hovering, setHovering] = createSignal(false);
<div
use:pointerPosition={e => {
setPos({ x: e.x, y: e.y });
setHovering(e.isActive);
}}
/>;
createPointerList
Provides a signal of current pointers on screen.
import { createPointerList } from "@solid-primitives/pointer";
Primitive takes one config
argument, of options:
target
- specify the target to attach the listeners to. Will default to document.body
pointerTypes
- specify array of pointer types you want to listen to. By default listens to ["mouse", "touch", "pen"]
Returns a list of pointers on the screen:
Accessor<Accessor<PointerListItem>[]>;
Basic example:
const points = createPointerList();
// notice that points is an signal returning an array of signals
<For each={points()}>{poz => <div>{poz()}</div>}</For>;
pointerHover
A directive for checking if the element is being hovered by at least one pointer.
import { pointerHover } from "@solid-primitives/pointer";
// place this in code to avoid being tree-shaken
pointerHover;
const [hovering, setHovering] = createSignal(false);
<div use:pointerHover={setHovering} />;
See CHANGELOG.md
FAQs
A collection of primitives, giving you a nicer API to handle pointer events in a reactive context.
We found that @solid-primitives/pointer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.