Package Exports
- ts-async-decorators
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ts-async-decorators) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
TypeScript Async Method Decorators 🧰
This package provides a collection of asynchronous method decorators with an elegant declarative API.
What's Inside?
after- post action.before- pre action.cancelable- canceling execution.debounce- delaying execution by timeout since the last call.retry- retrying on fail.semaphore- limiting the number of simultaneous calls.throttle- limiting the number of calls per time range.timeout- limiting the execution time.
Get Started
npm install --save ts-async-decoratorsAPI
after
Calls an action after a decorated method.
after({ action, wait = false }): Decoratoraction: (instance) => unknown- The action to call after the decorated method.wait: boolean- The flag to wait with promise resolution until the action completes.
Example
import { after } from 'ts-async-decorators';
class SomeClass {
@after({ action() { console.log('called fetch!'); } })
fetch() {
// ...
}
}before
Calls an action before a decorated method.
before({ action, wait = false }): Decoratoraction: (instance) => unknown- The action to call before the decorated method.wait: boolean- The flag to wait with the decorated method call until the action completes.
Example
import { before } from 'ts-async-decorators';
class SomeClass {
@before({ action() { console.log('calling fetch!'); } })
fetch() {
// ...
}
}cancelable
Wraps a call inside a cancelable promise.
cancelable({ onCancel = undefined }): DecoratoronCancel: (instance) => void- The action to call on canceling the returned promise.
There is also an option to set the cancelation callback from within the decorated method.
onCancel(callback): voidcallback: (instance) => void- The callback that will be called on promise cancelation.
Example using parameters
import { cancelable } from 'ts-async-decorators';
class SomeClass {
@cancelable({ onCancel() { this.stop(); } })
start() {
// ...
}
stop() {
// ...
}
}Example using onCancel
import { cancelable, onCancel } from 'ts-async-decorators';
class SomeClass {
@cancelable()
fetch() {
const controller = new AbortController();
const { signal } = controller;
onCancel(() => controller.abort());
return fetch('http://example.com', { signal });
}
}debounce
Delays execution by timeout since the last call.
debounce({ immediate = false, timeout }): Decoratorimmediate: boolean- The flag to call the decorated method on the leading edge.timeout: number | ((instance) => number)- The decorated method will be called only once aftertimeoutmilliseconds since the last call.
Example
import { debounce } from 'ts-async-decorators';
class SomeClass {
@debounce({ timeout: 2000 })
handleChange() {
// ...
}
}retry
Retries failed method calls.
retry({ retries }): Decoratorretries: number | ((instance) => number)- The retries number.
Example
import { retry } from 'ts-async-decorators';
class SomeClass {
@retry({ retries: 3 })
fetch() {
// ...
}
}semaphore
Limits the number of simultaneous calls.
semaphore({ limit }): Decoratorlimit: number- The max number of simultaneous calls.
Example
import { semaphore } from 'ts-async-decorators';
const mutex = () => semaphore({ limit: 1 });
class SomeClass {
@mutex()
connect() {
// ...
}
@semaphore({ limit: 2 })
read() {
// ...
}
}throttle
Limits the number of calls per time range.
throttle({ immediate = false, timeout }): Decoratorimmediate: boolean- The flag to call the decorated method on the leading edge.timeout: number | ((instance) => number)- The decorated method will be called only once withintimeoutmilliseconds.
Example
import { throttle } from 'ts-async-decorators';
class SomeClass {
@throttle({ timeout: 1000 })
handleResize() {
// ...
}
}timeout
Limits method execution time.
timeout({ timeout, reason = 'Operation timeout.' }): Decoratortimeout: number | ((instance) => number)- The execution timeout in milliseconds.reason: string- The timeout reason.
Example
import { cancelable, timeout, onCancel } from 'ts-async-decorators';
class SomeClass {
@timeout({ timeout: 10000, reason = 'Fetch timeout.' })
@cancelable()
fetch() {
const controller = new AbortController();
const { signal } = controller;
onCancel(() => controller.abort());
return fetch('http://example.com', { signal });
}
}