Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
svelte-gestures
Advanced tools
1.5 KB gzipped - collection of gesture recognisers for Svelte.
It contains the most popular gestures: pan
, pinch
, rotate
, swipe
, tap
. It also exposes generic event handling core, which can be extended for your own specific gesture implementation (see sourcecode how gestures are implemented).
It uses pointer events under the hood, to make it really cross platform. Gestures will be recognized, if done by mouse, touche, stylus etc.
Recognizers are kept as simple as possible, but still providing desired basic functionality. They are made in form of svelte actions with custom event emiters. Any number of different recognizers can be used on one element.
Except main event, each resogniser triggers, three more events with names composed from action name (pan
| pinch
| tap
| swipe
| rotate
) and event type (up
| down
| move
).
For example pan
action has for example panup
, pandown
, panmove
. It dispatches event.detail
with following property { event: PointerEvent, pointersCount: number }
. First is native pointer event, second is number of active pointers.
Pan action fires pan
event: event.detail
has x
and y
properties (x,y stand for position withing the element
on which the action is used).
It is triggered on pointer (mouse, touch, etc.) move. But not earlier than delay
parameter. The delay
parameter is optional. If used it overwrites 300ms default value. It prevents triggering of tap or swipe gestures when combined on single element.
<script>
import { pan } from 'svelte-gestures';
let x;
let y;
function handler(event) {
x = event.detail.x;
y = event.detail.y;
}
</script>
<div
use:pan="{{delay:300}}"
on:pan="{handler}"
style="width:500px;height:500px;border:1px solid black;"
>
pan: {x} {y}
</div>
Pinch action fires pinch
event: event.detail.scale
. Initial scale after first two registered points is 1, then it either decrease toward zero as the points get nearer, or grow up as their distance grows.
<script>
import { pinch } from 'svelte-gestures';
let scale;
function handler(event) {
scale = event.detail.scale;
}
</script>
<div
use:pinch
on:pinch="{handler}"
style="width:500px;height:500px;border:1px solid black;"
>
pinch scale: {scale}
</div>
Rotate action fires rotate
event: event.detail.rotation
. Initial rotation after first two registered points is 0, then it either decrease to -180 as the points rotate anticlockwise, or grow up 180 as they rotate clockwise.
event.detail.rotation
represents angle between -180 and 180 degrees.
<script>
import { rotate } from 'svelte-gestures';
let rotation;
function handler(event) {
rotation = event.detail.rotation;
}
</script>
<div
use:rotate
on:rotate="{handler}"
style="width:500px;height:500px;border:1px solid black;"
>
rotation: {rotation}
</div>
Swipe action fires swipe
event: event.detail.direction
. It accepts props as parameter: { timeframe: number; minSwipeDistance: number }
with default values 300ms and 60px. Swipe is fired if preset distance in propper direction is done in preset time.
event.detail.direction
represents direction of swipe: 'top' | 'right' | 'bottom' | 'left'
<script>
import { swipe } from 'svelte-gestures';
let direction;
function handler(event) {
direction = event.detail.direction;
}
</script>
<div use:swipe={{ timeframe: 300, minSwipeDistance: 60 }} on:swipe={handler} style="width:500px;height:500px;border:1px solid black;">
direction: {direction}
</div>
Tap action fires tap
event: event.detail
has x
and y
properties (x,y stand for position withing the element
on which the action is used).
Tap action is fired only when the click/touch is finished within the give timeframe
, the parameter is optional and overwrites defalut value of 300ms.
<script>
import { tap } from 'svelte-gestures';
let x;
let y;
function handler(event) {
x = event.detail.x;
y = event.detail.y;
}
</script>
<div use:tap={{ timeframe: 300 }} on:tap={handler} style="width:500px;height:500px;border:1px solid black;">
tap: {x} {y}
</div>
You are encouraged to define your own custom gestures. There is a setPointerControls
function exposed by the svelte-gestures
. It handle all the events registration/deregistration needed for handling gestures; you just need to pass callbacks in it.
function setPointerControls(
gestureName: string,
node: HTMLElement,
onMoveCallback: (activeEvents: PointerEvent[], event: PointerEvent) => void,
onDownCallback: (activeEvents: PointerEvent[], event: PointerEvent) => void,
onUpCallback: (activeEvents: PointerEvent[], event: PointerEvent) => void
);
You can pass null
instead of a callback if you dont need to call it in that event. In double tap example below you actually do not need any events related to move, as they are irrelevant for tapping.
See how doubletap custome gesture is implemented:
> repl Custom gesture (doubletap) demo
<script>
import { setPointerControls, DEFAULT_DELAY } from 'svelte-gestures';
let dx;
let dy;
function doubletapHandler(event) {
dx = event.detail.x;
dy = event.detail.y;
}
function doubletap(
node: HTMLElement,
parameters: { timeframe: number } = { timeframe: DEFAULT_DELAY }
): { destroy: () => void } {
const gestureName = 'doubletap';
let startTime: number;
let clientX: number;
let clientY: number;
let tapCount = 0;
let spread = 20;
let timeout;
function onUp(activeEvents: PointerEvent[], event: PointerEvent) {
if (
Math.abs(event.clientX - clientX) < spread &&
Math.abs(event.clientY - clientY) < spread &&
Date.now() - startTime < parameters.timeframe
) {
if (!tapCount) {
tapCount++;
} else {
const rect = node.getBoundingClientRect();
const x = Math.round(event.clientX - rect.left);
const y = Math.round(event.clientY - rect.top);
node.dispatchEvent(
new CustomEvent(gestureName, {
detail: { x, y },
})
);
clearTimeout(timeout);
tapCount = 0;
}
}
}
function onDown(activeEvents: PointerEvent[], event: PointerEvent) {
if (!tapCount) {
clientX = event.clientX;
clientY = event.clientY;
startTime = Date.now();
}
timeout = setTimeout(() => {
tapCount = 0;
}, parameters.timeframe);
}
return setPointerControls(gestureName, node, null, onDown, onUp);
}
</script>
<div
use:doubletap
on:doubletap="{doubletapHandler}"
style="width:500px;height:500px;border:1px solid black;"
>
double tap me {dx} {dy}
</div>
FAQs
Svelte cross-platform gesture actions
The npm package svelte-gestures receives a total of 4,897 weekly downloads. As such, svelte-gestures popularity was classified as popular.
We found that svelte-gestures demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.