svelte-event provides a set of wrapper functions for adding modifiers to event handlers and a versatile event
action for comprehensive event listener management in Svelte.
This package is primarily intended to address the upcoming changes to events in Svelte 5, though is entirely compatible with Svelte 3 and 4 as well.
🚧 NOTE: This plugin is still in early development, use at your own risk.
# Using npm
npm install svelte-event
# Using yarn
yarn add svelte-event
# Using pnpm
pnpm add svelte-event
# Using bun
bun add svelte-event
svelte-event
provides several wrapper functions for modifying event behavior:
preventDefault
stopPropagation
stopImmediatePropagation
self
trusted
once
Note: passive
requires use of the event
action, as it requires access to the event listener options which is not possible using wrapper functions.
Apply modifiers directly to event handlers:
<script>
import { once, preventDefault } from 'svelte-event';
function handleClick(event) {
// Click event logic
}
</script>
<div onclick={once(preventDefault(handleClick))} />
Use withModifiers
to apply multiple modifiers using a configuration object:
<script>
import { withModifiers } from 'svelte-event';
function handleClick(event) {
// Click event logic
}
const modifiedHandler = withModifiers(handleClick, {
preventDefault: true,
stopPropagation: true
});
</script>
<div onclick={modifiedHandler} />
The key
modifier allows you to specify a key that must be pressed for the event handler to execute:
<script>
import { key } from 'svelte-event/key';
function handleKeydown(event) {
// Keydown event logic
}
</script>
<div onkeydown={key(handleKeydown, 'Enter')} />
You can also specify the set of modifier keys (altKey
, ctrlKey
, metaKey
, shiftKey
) that must be pressed for the event handler to execute:
<script>
import { key } from 'svelte-event/key';
function handleKeydown(event) {
// Keydown event logic
}
</script>
<div onkeydown={key(handleKeydown, 'Enter', { ctrlKey: true, exact: true })} />
If the exact
modifier is set to true
, then the event handler will only execute if the specified key is pressed and no other modifier keys are pressed.
The package also provides left
, right
, and middle
modifiers for mouse events, which only execute the event handler if the left, right, or middle mouse button is pressed, respectively:
<script>
import { left, right, middle } from 'svelte-event/mouse';
function handleClick(event) {
// Click event logic
}
</script>
<div onclick={left(handleClick)} />
You can also specify the set of modifier keys (altKey
, ctrlKey
, metaKey
, shiftKey
) that must be pressed for the event handler to execute, as well as the exact
modifier in the same way as the key
modifier.
The compose
function allows you to combine multiple wrapper functions into a single function:
import { compose } from 'svelte-event';
const handler = compose(
handler1,
handler2,
);
// Use the composed handler in your Svelte component
<div onclick={handler} />
The event
action in svelte-event
allows you to attach event listeners to DOM elements, enabling detailed control through various modifiers.
<script>
import { event } from 'svelte-event';
function handleClick() {
// Click event logic
}
</script>
<div use:event={{ click: handleClick }} />
You can provide detailed configuration for event listeners, including multiple handlers, various modifiers, and specific event phases.
-
Multiple Handlers: Attach several handlers to the same event:
<div use:event={{ click: { handlers: [handleClick1, handleClick2] } }} />
-
Event Modifiers: Customize event behavior with modifiers such as
preventDefault
,stopPropagation
,passive
, and more:<div use:event={{ click: { handler: handleClick, modifiers: { preventDefault: true } } }} />
-
Performance Optimization with
passive
: Improve scrolling performance for touch and wheel events:<div use:event={{ wheel: { modifiers: { passive: true } } }} />
-
Capture Phase with
capture
: Execute event handler during the capture phase:<div use:event={{ click: { modifiers: { capture: true } } }} />
svelte-event
is open source, licensed under the MIT License. For more information, see the LICENSE file.