|
|
|
@ -1,7 +1,8 @@
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Actions can return an object containing the two properties defined in this interface. Both are optional.
|
|
|
|
* Actions can return an object containing the two properties defined in this interface. Both are optional.
|
|
|
|
* - update: An action can have a parameter. This method will be called whenever that parameter changes,
|
|
|
|
* - update: An action can have a parameter. This method will be called whenever that parameter changes,
|
|
|
|
* immediately after Svelte has applied updates to the markup.
|
|
|
|
* immediately after Svelte has applied updates to the markup. `ActionReturn` and `ActionReturn<never>` both
|
|
|
|
|
|
|
|
* mean that the action accepts no parameters, which makes it illegal to set the `update` method.
|
|
|
|
* - destroy: Method that is called after the element is unmounted
|
|
|
|
* - destroy: Method that is called after the element is unmounted
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Additionally, you can specify which additional attributes and events the action enables on the applied element.
|
|
|
|
* Additionally, you can specify which additional attributes and events the action enables on the applied element.
|
|
|
|
@ -25,7 +26,7 @@
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Docs: https://svelte.dev/docs#template-syntax-element-directives-use-action
|
|
|
|
* Docs: https://svelte.dev/docs#template-syntax-element-directives-use-action
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
export interface ActionReturn<Parameter = any, Attributes extends Record<string, any> = Record<never, any>> {
|
|
|
|
export interface ActionReturn<Parameter = never, Attributes extends Record<string, any> = Record<never, any>> {
|
|
|
|
update?: [Parameter] extends [never] ? never : (parameter: Parameter) => void;
|
|
|
|
update?: [Parameter] extends [never] ? never : (parameter: Parameter) => void;
|
|
|
|
destroy?: () => void;
|
|
|
|
destroy?: () => void;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
@ -42,10 +43,12 @@ export interface ActionReturn<Parameter = any, Attributes extends Record<string,
|
|
|
|
* The following example defines an action that only works on `<div>` elements
|
|
|
|
* The following example defines an action that only works on `<div>` elements
|
|
|
|
* and optionally accepts a parameter which it has a default value for:
|
|
|
|
* and optionally accepts a parameter which it has a default value for:
|
|
|
|
* ```ts
|
|
|
|
* ```ts
|
|
|
|
* export const myAction: Action<HTMLDivElement, { someProperty: boolean }> = (node, param = { someProperty: true }) => {
|
|
|
|
* export const myAction: Action<HTMLDivElement, { someProperty: boolean } | undefined> = (node, param = { someProperty: true }) => {
|
|
|
|
* // ...
|
|
|
|
* // ...
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
* ```
|
|
|
|
|
|
|
|
* `Action<HTMLDivElement>` and `Action<HTMLDiveElement, never>` both signal that the action accepts no parameters.
|
|
|
|
|
|
|
|
*
|
|
|
|
* You can return an object with methods `update` and `destroy` from the function and type which additional attributes and events it has.
|
|
|
|
* You can return an object with methods `update` and `destroy` from the function and type which additional attributes and events it has.
|
|
|
|
* See interface `ActionReturn` for more details.
|
|
|
|
* See interface `ActionReturn` for more details.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
@ -54,3 +57,7 @@ export interface ActionReturn<Parameter = any, Attributes extends Record<string,
|
|
|
|
export interface Action<Element = HTMLElement, Parameter = never, Attributes extends Record<string, any> = Record<never, any>> {
|
|
|
|
export interface Action<Element = HTMLElement, Parameter = never, Attributes extends Record<string, any> = Record<never, any>> {
|
|
|
|
<Node extends Element>(...args: [Parameter] extends [never] ? [node: Node] : undefined extends Parameter? [node: Node, parameter?: Parameter] : [node: Node, parameter: Parameter]): void | ActionReturn<Parameter, Attributes>;
|
|
|
|
<Node extends Element>(...args: [Parameter] extends [never] ? [node: Node] : undefined extends Parameter? [node: Node, parameter?: Parameter] : [node: Node, parameter: Parameter]): void | ActionReturn<Parameter, Attributes>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Implementation notes:
|
|
|
|
|
|
|
|
// - undefined extends X instead of X extends undefined makes this work better with both strict and nonstrict mode
|
|
|
|
|
|
|
|
// - [X] extends [never] is needed, X extends never would reduce the whole resulting type to never and not to one of the condition outcomes
|
|
|
|
|