[feat] add convenience type for `ComponentEvents` (#7702)

pull/7707/head
Hofer Ivan 3 years ago committed by GitHub
parent 01ba78a6fb
commit bb02a22d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,7 +16,7 @@ function modify(path, modifyFn) {
modify( modify(
'types/runtime/index.d.ts', 'types/runtime/index.d.ts',
content => content.replace('SvelteComponentTyped', 'SvelteComponentTyped, ComponentType, ComponentConstructorOptions, ComponentProps') content => content.replace('SvelteComponentTyped', 'SvelteComponentTyped, ComponentType, ComponentConstructorOptions, ComponentProps, ComponentEvents')
); );
modify( modify(
'types/compiler/index.d.ts', 'types/compiler/index.d.ts',

@ -264,18 +264,18 @@ export class SvelteComponentTyped<
/** /**
* Convenience type to get the type of a Svelte component. Useful for example in combination with * Convenience type to get the type of a Svelte component. Useful for example in combination with
* dynamic components using `<svelte:component>`. * dynamic components using `<svelte:component>`.
* *
* Example: * Example:
* ```html * ```html
* <script lang="ts"> * <script lang="ts">
* import type { ComponentType, SvelteComponentTyped } from 'svelte'; * import type { ComponentType, SvelteComponentTyped } from 'svelte';
* import Component1 from './Component1.svelte'; * import Component1 from './Component1.svelte';
* import Component2 from './Component2.svelte'; * import Component2 from './Component2.svelte';
* *
* const component: ComponentType = someLogic() ? Component1 : Component2; * const component: ComponentType = someLogic() ? Component1 : Component2;
* const componentOfCertainSubType: ComponentType<SvelteComponentTyped<{ needsThisProp: string }>> = someLogic() ? Component1 : Component2; * const componentOfCertainSubType: ComponentType<SvelteComponentTyped<{ needsThisProp: string }>> = someLogic() ? Component1 : Component2;
* </script> * </script>
* *
* <svelte:component this={component} /> * <svelte:component this={component} />
* <svelte:component this={componentOfCertainSubType} needsThisProp="hello" /> * <svelte:component this={componentOfCertainSubType} needsThisProp="hello" />
* ``` * ```
@ -292,7 +292,7 @@ export type ComponentType<Component extends SvelteComponentTyped = SvelteCompone
* <script lang="ts"> * <script lang="ts">
* import type { ComponentProps } from 'svelte'; * import type { ComponentProps } from 'svelte';
* import Component from './Component.svelte'; * import Component from './Component.svelte';
* *
* const props: ComponentProps<Component> = { foo: 'bar' }; // Errors if these aren't the correct props * const props: ComponentProps<Component> = { foo: 'bar' }; // Errors if these aren't the correct props
* </script> * </script>
* ``` * ```
@ -301,6 +301,24 @@ export type ComponentProps<Component extends SvelteComponent> = Component extend
? Props ? Props
: never; : never;
/**
* Convenience type to get the events the given component expects. Example:
* ```html
* <script lang="ts">
* import type { ComponentEvents } from 'svelte';
* import Component from './Component.svelte';
*
* function handleCloseEvent(event: ComponentEvents<Component>['close']) {
* console.log(event.detail);
* }
* </script>
*
* <Component on:close={handleCloseEvent} />
* ```
*/
export type ComponentEvents<Component extends SvelteComponent> =
Component extends SvelteComponentTyped<any, infer Events> ? Events : never;
export function loop_guard(timeout) { export function loop_guard(timeout) {
const start = Date.now(); const start = Date.now();
return () => { return () => {

Loading…
Cancel
Save