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
, y
and target
properties (x,y stand for position withing the element
on which the action is used). target
is an EventTarget (HTMLElement) of the pan. The target is recorded when pan starts.
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;
let target;
function handler(event) {
x = event.detail.x;
y = event.detail.y;
target = event.detail.target;
}
</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
with properties {scale:number; center: {x:number; y:number;}}
. 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.
x
and y
represents coordinates in px
of an imaginary center of the pinch gesture. They originate in top left corner of the element on which pinch is used.
<script>
import { pinch } from 'svelte-gestures';
let scale;
let x;
let y;
function handler(event) {
scale = event.detail.scale;
x = event.detail.center.x;
y = event.detail.center.y;
}
</script>
<div
use:pinch
on:pinch="{handler}"
style="width:500px;height:500px;border:1px solid black;"
>
pinch scale: {scale} <br />
center: x {x}, y {y}
</div>
Rotate action fires rotate
event: event.detail
. with properties{rotation:number; center: {x:number;y:number;}}
. 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.
x
and y
represents coordinates in px
of an imaginary center of the rotation gesture. They originate in top left corner of the element on which rotate is used.
event.detail.rotation
represents angle between -180 and 180 degrees.
<script>
import { rotate } from 'svelte-gestures';
let rotation;
let x;
let y;
function handler(event) {
rotation = event.detail.rotation;
x = event.detail.center.x;
y = event.detail.center.y;
}
</script>
<div
use:rotate
on:rotate="{handler}"
style="width:500px;height:500px;border:1px solid black;"
>
rotation: {rotation} <br />
center: x {x}, y {y}
</div>
Swipe action fires swipe
event: event.detail
. With properties direction
and target. target
is an EventTarget (HTMLElement) of the swipe action. The target is recorded when swipe starts.
It accepts props as parameter: { timeframe: number; minSwipeDistance: number; touchAction: string }
with default values 300ms, 60px and none
.
Swipe is fired if preset distance in proper direction is done in preset time.
You can use the touchAction parameter to control the default behaviour of the browser.
For example if you only use left/right swipe and want to keep the default browser behaviour (scrolling) for up/down swipe use touchAction: 'pan-y'
.
event.detail.direction
represents direction of swipe: 'top' | 'right' | 'bottom' | 'left'
<script>
import { swipe } from 'svelte-gestures';
let direction;
let target;
function handler(event) {
direction = event.detail.direction;
target = event.detail.target;
}
</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
, y
and target
properties (x,y stand for position withing the element
on which the action is used). target
is an EventTarget (HTMLElement) of the tap.
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;
let target;
function handler(event) {
x = event.detail.x;
y = event.detail.y;
target = event.detail.target;
}
</script>
<div use:tap={{ timeframe: 300 }} on:tap={handler} style="width:500px;height:500px;border:1px solid black;">
tap: {x} {y}
</div>
Press action fires press
event: event.detail
has x
, y
, target
properties (x,y stand for position withing the element
on which the action is used). target
is an EventTarget (HTMLElement) of the press.
Press action is fired only when the click/touch is finished after the give timeframe
, the parameter is optional and overwrites defalut value of 300ms.
<script>
import { press } from 'svelte-gestures';
let x;
let y;
let target;
function handler(event) {
x = event.detail.x;
y = event.detail.y;
target = event.detail.target
}
</script>
<div use:press={{ timeframe: 300 }} on:press={handler} style="width:500px;height:500px;border:1px solid black;">
press: {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';
const spread = 20;
let startTime: number;
let clientX: number;
let clientY: number;
let tapCount = 0;
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>
1.3.0
Added press
gesture.
Gestures press
, tap
, swipe
, pan
now also emit target:EventTarget
in the event detail.
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.