@ndriadev/futurable
TypeScript icon, indicating that this package has built-in type declarations

2.2.0 • Public • Published

Futurable

Javascript's Promise and Fetch API with super powers!

npm version npm bundle size (scoped version) npm NPM

Statements Branches Functions Lines

Summary

Introduction

Futurable is a library that extends Javascript's Promise and Fetch APIs, adding a number of useful features and with support for Typescirpt. It can be used on both browser and node.

Often it happens where to develop a feature using promises that covers a particular need. Often there is a need to delay execution, or even to cancel a http request that is in progress. Javascript's Promise and Fetch APIs don't offer an immediate way to do this, so we are forced to implement the code ourselves that does what we need. The purpose of this library is to provide these features ready to use, without the user having to think about anything else.

⚠️ If you intend to use the library in node in order to use fetch implementation, for versions lower than 17.5.0 it is necessary to install the node-fetch library, since the native support for the Fetch API was introduced by this version.

Installation

npm  install  futurable  # or yarn add futurable or pnpm add futurable

Usage

The library supports both ESM and CJS formats, so it can be used as follows:

import { Futurable } from '@ndriadev/futurable'; 		// ok

const { Futurable } = require('@ndriadev/futurable');	// ok

Use-case

React

Thanks to the use of this library, there is a simple and effective way to be able to cancel an Api request executed in a useEffect which, due to the Strict Mode, is executed twice:

Example

export default function Component() {
	//...code

	useEffect(() => {
        let f;
        function callApi() {
            f = Futurable
            .fetch("...")
            .then(resp => resp.json())
            .then(setTodo);
        }
        callApi();
        return () => {
            f && f.cancel();
        }
    },[])

	//OR

	useEffect(() => {
        const controller = new AbortController();
        Futurable
        .fetch(
            "...",
            {
                signal: controller.signal
            }
        )
        .then(resp => resp.json())
        .then(setTodo);

        return () => {
            controller.abort();
        }
    },[])

	//...code
}

API

The methods implemented, excluding those that are by nature static can be used:

  • During the construction of the futurable using the new operator;
  • In the chain-style promise chaining.

They are the following:

constructor(executor: FuturableExecutor, signal?: AbortSignal)

Futurable is instantiable like a classic Promise.

//Javascript Promise

const promise = new Promise((resolve, reject) => {
	const data = /*..async operations or other..*/
	resolve(data);
});

//Futurable
import { Futurable } from '@ndriadev/futurable';

const futurable = new Futurable((resolve, reject) => {
	const data = /*..async operations or other..*/
	resolve(data);
});

But it provides two more statements:

  1. Its constructor can receive a second parameter signal, an AbortSignal, usable to cancel the promise from the outside.
const controller = new AbortController();

const futurable = new Futurable((resolve, reject) => {
	const data = /*..async operations or other..*/
	resolve(data);
}, controller.signal);
  1. The executor function passed to the promise receives a third parameter, utils, optional.
const controller = new AbortController();

const futurable = new Futurable((resolve, reject, utils) => {
	const data = /*..async operations or other..*/
	resolve(data);
});

Utils is an object with the following properties which mirror the methods described in the usage section and which will be described below:

  • cancel;
  • onCancel:
  • delay;
  • sleep;
  • fetch;
  • futurizable.

In addition is has:

  • signal: internal futurable signal;

cancel(): void

If invoked, it cancel the futurable if it is to be executed or if it is still executing.

Example

function asynchronousOperation() {
	return new Futurable((res, rej) => {
		// asynchornous code..
		resolve(true);
	});
);

//...code

const futurable = asynchronousOperation();
	futurable.then(value => {
	//DO anything
});

//...code

futurable.cancel();

onCancel(cb: callback): void

If it is invoked, when the futurable is cancelled, it executes the callback passed as a parameter.

Example

const futurable = new Futurable((resolve, reject, utils) => {
	utils.onCancel(() => console.log("Futurable cancelled"));
	const data = /*..async operations or other..*/
	resolve(data);
});

//...code

futurable.cancel();

//OR

const futurable = new Futurable((res, rej) => {
	// asynchornous code..
	resolve(true);
});

//...code

futurable
.onCancel(() => console.log("Futurable cancelled"))
.then(val => .......);

//...code

futurable.cancel();
Output: Futurable cancelled

sleep(timer: number): Futurable

Waits for timer parameter (in milliseconds) before returning the value.

Example

const futurable = new Futurable((resolve, reject, utils) => {
	const data = /*..async operations or other..*/
	utils.sleep(3000);
	resolve(data);
});
//...code

//OR

const futurable = new Futurable((res, rej) => {
	// asynchornous code..
	resolve(true);
});

//...code

futurable
.sleep(3000)
.then(val => .......);

//...code

delay(cb: callback, timer: number)

Waits for timer parameter (in milliseconds), then executes callback with the futurable value and returns the result obtained from the invocation. Callback parameter, when delay is invoked as class method, has the value of futurable, like then method.

Example

const futurable = new Futurable((resolve, reject, utils) => {
	const data = /*..async operations or other..*/
	utils.delay(()=>console.log("delayed"), 3000);
	resolve(data);
});

//...code

//OR

const futurable = new Futurable((res, rej) => {
	// asynchornous code..
	resolve(true);
});

//...code

futurable
.delay((val)=> {
	console.log("delayed val", val);
	return val;
},3000)
.then(val => .......);

//...code

fetch(url: string | (val => string), opts: object | RequestInit)

Fetch API extension with cancellation support. Url parameter can be a string or a function with receive value from futurable chaining as paremeter.

Example

const futurable = new Futurable((resolve, reject, utils) => {
	utils.fetch(/*string url to fetch..*/)
	.then(val => resolve(val))
});

//...code

//OR

const futurable = new Futurable((res, rej) => {
	// asynchornous code..
	resolve(true);
});

//...code

futurable
.fetch(/*url to fetch..*/)
.then(val => .......);

//OR
futurable
.then(val => "https://...")
.fetch((val /* val came from previous then*/) => ..., ..)

//...code

futurizable(promise: Promise | (val => Promise))

Takes a promise and transforms it into a futurable. Promise can be also a function that receives value from futurable chaining as parameter.

Example

const futurable = new Futurable((resolve, reject, utils) => {
	utils.futurizable(new Promise(res => {
		//asynchronous code
		res(data);
	}))
	.then(val => resolve(val))
});

//...code

//OR

const futurable = new Futurable((res, rej) => {
	// asynchornous code..
	resolve(true);
});

//...code

futurable
.futurizable(/*promise to futurizable*/)
.then(val => .......);

//OR
futurable
.then(val => 3)
.futurizable((val /* val is 3 */) => new Promise(/*...*/) /*promise to futurizable*/, ..)

//...code

Futurable.onCancel(cb: callback | {cb: callback, signal?: AbortSignal})

OnCancel static method. It accepts a callback or a object with cb property and an optional signal.

Example

const controller = new AbortController();

//...code
Futurable.onCancel({
	cb: ()=>console.log("Cancelled"),
	signal: controller.signal
});
//...code

Futurable.sleep(timer: number | {timer: number, signal?: AbortSignal})

Sleep static method. It accepts a timer or a object with timer property and an optional signal.

Example

//...code

Futurable.sleep({
	timer: 3000,
	signal: signal
});

//...code

Futurable.delay({cb: callback, timer: number, signal?: AbortSignal})

Delay static method. It accepts a object with timer and cb properties and an optional signal property.

Example

const controller = new AbortController();
//...code

Futurable.delay({
	cb: ()=>console.log("Cancelled"),
	timer: 3000
});

//...code

Futurable.fetch(url: string, opts: object | RequestInit)

Fetch static method.

Example

//...code

Futurable.fetch(/*url string..*/, {method: "POST"});

//...code

Futurable.futurizable({promise: Promise, signal: AbortSignal})

Futurizable static method.

Example

const controller = new AbortController();
//...code

Futurable.futurizable({promise: /*promise to futurizable*/, signal: controller.signal});

//...code

Futurable.all(values: T, signal?: AbortSignal)

Extension of the static method all with cancellation support.

Example

const controller = new AbortController();

//...code

Futurable.all([
	1,
	Futurable.resolve(true, controlles.signal),
	new Futurable/*...*/
], controller.signal);

//...code

controller.abort();

//OR

const f = Futurable.all([
	1,
	Futurable.resolve(true),
	new Futurable/*...*/
]

//...code

f.cancel();

Futurable.allSettled(values: T, signal?: AbortSignal)

Extension of the static method allSettled with cancellation support.

Example

const controller = new AbortController();

//...code

Futurable.allSettled([
	1,
	Futurable.resolve(true, controller.signal),
	new Futurable/*...*/
], controller.signal);

//...code

controller.abort();

//OR

const f = Futurable.allSettled([
	1,
	Futurable.resolve(true),
	new Futurable/*...*/
];

//...code

f.cancel();

Futurable.any(values: T, signal?: AbortSignal)

Extension of the static method any with cancellation support.

Example

const controller = new AbortController();
//...code

Futurable.any([
	1,
	Futurable.resolve(true, controller.signal),
	new Futurable/*...*/
], controller.signal);

//...code

controller.abort();

//OR

const f = Futurable.any([
	1,
	Futurable.resolve(true, controller.signal),
	new Futurable/*...*/
];

//...code

f.cancel();

Futurable.race(values: T, signal?: AbortSignal)

Extension of the static method race with cancellation support.

Example

const controller = new AbortController();
//...code

Futurable.race([
	1,
	Futurable.resolve(true, controller.signal),
	new Futurable/*...*/
], controller.signal);

//...code

controller.abort();

//OR

const f = Futurable.race([
	1,
	Futurable.resolve(true, controller.signal),
	new Futurable/*...*/
];

//...code

f.cancel();

Futurable.polling(value: ()=> Futurable, { interval, signal }:{interval: number, signal?: AbortSignal})

Creates a polling service with cancellation support and possibility to handle error.

Example

//...code
const polling = Futurable.polling(() => Futurable.fetch(/*...*/)), {interval: 1000});
polling.catch(err => console.error(err));

//...code

polling.cancel();

Futurable.withResolvers(signal?: AbortSignal)

Extension of static method withResolvers with support of cancel function and utils object of Futurable.

Example

//...code
const {futurable, resolve, reject} = Futurable.withResolvers();

//...code

const result = await futurable;

//...code
resolve("resolved");

ToDo

  • Extends fetch api support to third library like axios.
  • Implement promise cache.

License

Futurable is licensed under a MIT License.

Package Sidebar

Install

npm i @ndriadev/futurable

Weekly Downloads

8

Version

2.2.0

License

MIT

Unpacked Size

61.6 kB

Total Files

13

Last publish

Collaborators

  • ndriadev