πŸ—œοΈ Optimal Tuple vs Record

Let’s say we have this createStore function:

Ignore the implementation, we focus only on return value.

function createStore() {
	const state = 0;
	const dispatch = () => {
		/* ... */
	};
	return /* ... */;
}

What is a Store ? See Flux In-Depth Overview React uses Redux, Vue uses Vuex, Angular uses NgRx

And we have two ways to return state and dispatch:

Record:

What is a Record? Wikipedia

function createStore() {
	// ...
	return { state, dispatch };
}

const { state, dispatch } = createStore();
console.log(state);
dispatch();

Tuple:

What is a Tuple? Wikipedia

function createStore() {
	// ...
	return [state, dispatch];
}

const [state, dispatch] = createStore();
console.log(state);
dispatch();

We used Destructuring assignment when called our createStore

Now let me show you something amazing ✨ ✨ ✨ We will build both examples using webpack

throwing sparkles

Record:

(() => {
	const { state: t, dispatch: s } = { state: 0, dispatch: () => {} };
	(console.log(t), s());
})();

Tuple:

(() => {
	const [o, c] = [0, () => {}];
	(console.log(o), c());
})();

amazed chris pratt

To the moon? πŸš€ Compiled code that uses tuples is far smaller than one using record. And I suppose this scales when your code base is far bigger.

But why this happens πŸ€” Well, we can assume that everything that is returned from anywhere is a public API to the consumer. And when using a Record return, webpack will consider all fields as a public API, and cannot obfuscate them.

On the other hand when returning a Tuple, webpack does not see any actual fields names, they are just items into an array, and it will obfuscate all the code.

Record also has an advantage that you can reorder the names of the API, while with Tuple you need to use the exact same order as it was defined.

What about the consumer that uses this public API? πŸ§‘β€πŸ’»

Actually here is one more advantage when returning Tuple. Let’s say that consumer wants the API under different name. Instead of state and dispatch to be value and execute

Record:

const { state: value, dispatch: execute } = createStore();

Tuple:

const [value, execute] = createStore();

As you can see consumer code becomes too verbose with Record example, and when he will compile his code, webpack again wil not have the ability to obfuscate his code πŸ’―

Example: StackBlitz

Some dangerous tips:

Tuple can be destructured as Record, and you can change order:

function createStore() {
	// ...
	return [state, dispatch];
}

const { 1: dispatch, 0: state } = createStore();

Or you can return and Tuple and Record, and consumer can use API how it wants:

function createStore() {
	// ...
	const store = [state, dispatch];
	store.state = state;
	store.dispatch = dispatch;
	return store;
}

const [state, dispatch] = createStore();
const { 0: state, 1: dispatch } = createStore();
const { state, dispatch } = createStore();

Conclusion

In the end I think that using tuples is a better approach. I think React team when released hooks took this into consideration for hooks that return multiple values like useState.

Thanks for reaching the end of this blog post πŸ™


Created At
10/13/2021
Updated At
10/14/2021
Published At
10/13/2021