1.1.0 • Published 2 years ago
svelte-component-actions v1.1.0
svelte-component-actions
This package provides a svelte action that facilitates the use of actions and action parameters on components. It is based on what svelte-material-ui uses internaly for its own components.
Install
npm install svelte-component-actionsUsage
In the component you want to pass actions to :
- Expose a
useprops - Import
useActionsfromsvelte-component-actionsand add theusedirective to the desired element as follows :use:useActions={use}
<!-- MyComponent.svelte -->
<script lang="ts">
import { useActions, type ActionArray } from "svelte-component-actions";
export let use: ActionArray = [];
</script>
<div use:useActions={use}>
Hello from MyComponent !
</div>When using your component, give the use prop an array. Each array element can either be an action, or an array containing an action followed by its parameters.
<!-- MyPage.svelte -->
<script>
import MyComponent from "./Mycomponent.svelte"
import { myAction, myActionWithParams }
</script>
<MyComponent
use={[ myAction, [ myActionWithParams, { myParam1: "foo", myParam2: "bar" }]]}
/>⚠️ When updating action parameters, do not change the actions array length