Category | Browser |
---|---|
Export Size | 749 B |
Last Changed | 4 weeks ago |
Related | useWebWorker |
Run expensive functions without blocking the UI, using a simple syntax that makes use of Promise. A port of alewin/useWorker.
import { useWebWorkerFn } from '@vueuse/core' const { workerFn } = useWebWorkerFn(() => { // some heavy works to do in web worker })
import { useWebWorkerFn } from '@vueuse/core' const { workerFn, workerStatus, workerTerminate } = useWebWorkerFn( dates => dates.sort(dateFns.compareAsc), { timeout: 50000, dependencies: [ 'https://cdnjs.cloudflare.com/ajax/libs/date-fns/1.30.1/date_fns.js', // dateFns ], }, )
Before you start using this function, we suggest you read the Web Worker documentation.
This function is a Vue port of https://github.com/alewin/useWorker by Alessio Koci, with the help of @Donskelle to migration.
export type WebWorkerStatus = | "PENDING" | "SUCCESS" | "RUNNING" | "ERROR" | "TIMEOUT_EXPIRED" export interface UseWebWorkerOptions extends ConfigurableWindow { /** * Number of milliseconds before killing the worker * * @default undefined */ timeout?: number /** * An array that contains the external dependencies needed to run the worker */ dependencies?: string[] } /** * Run expensive function without blocking the UI, using a simple syntax that makes use of Promise. * * @see https://vueuse.org/useWebWorkerFn * @param fn * @param options */ export declare function useWebWorkerFn<T extends (...fnArgs: any[]) => any>( fn: T, options?: UseWebWorkerOptions ): { workerFn: (...fnArgs: Parameters<T>) => Promise<ReturnType<T>> workerStatus: Ref<WebWorkerStatus> workerTerminate: (status?: WebWorkerStatus) => void } export type UseWebWorkerFnReturn = ReturnType<typeof useWebWorkerFn>
© 2019-present Anthony Fu
Licensed under the MIT License.
https://vueuse.org/core/useWebWorkerFn/