npm i -S vue-use-switch-map
A Vue 3 composition package that exports:
useSwitchMap
, a function to compose a ref with a function from values to refsuseSwitchMapO
, a function to compose a ref with a function from values to objects containing refs
This package is designed for binding refs to Vue composition functions, which, in turn, may produce one or more refs.
It works with both Vue 3 and Vue 2 + @vue/composition-api
because I'm using vue-demi, and it is written in TypeScript.
The behaviour is similar to the RxJS switchMap operator.
The composition itself will produce a ref, called switchMappedRef
. Each time the composed ref changes:
- the ref previously returned by the composed function will be discarded, so the
switchMappedRef
will no longer be updated by its changes - the composed function runs again, producing a new ref
switchMappedRef
is connected to this fresh ref, receiving its updates
Menu:
function useSwitchMap<T, U>(
ref: Ref<T>,
projectionFromValuesToRefs: (value: T, scf: SetCleanupFunction) => Ref<U>
): Ref<U>
useSwitchMap
takes a ref and a function from values to refs, returning a ref that will see its value changed because of two main reasons: the composed function changes its returned ref's value, or the input ref's value has been changed.
The first case is not special at all, I'm sure you already use some Vue 3 composition functions that internally listen to some events, or use some timeouts, promises, etc. and therefore change the ref's value they return in response to those happenings.
The second case is more tricky, because a lot of stuff happens when the input ref's value is changed. The composed function is re-runned from scratch, producing a new ref R
. This ref is automagically substituted to the one that useSwitchMap
has returned, in such a way that it will receive only the updates from the last ref R
produced.
A function is passed to projectionFromValuesToRefs
to let it set a cleanup function that will be called just before projectionFromValuesToRefs
is runned again.
We want to track all the pointer positions after an initial click that starts the tracking. We want to be able to restart the tracking from scratch at each click.
Here it is:
import { useSwitchMap } from 'vue-use-switch-map'
import { ref } from 'vue'
// click handling
const mouseClickPoisitonRef = ref({ x: -1, y: -1 })
function updateMouseCLickPositionRef(x, y) {
mouseClickPoisitonRef.value.x = x
mouseClickPoisitonRef.value.y = y
}
const clickListener = (clickEvent) => {
updateMouseCLickPositionRef(clickEvent.screenX, clickEvent.screenY)
}
// each time we click, mouseClickPoisitonRef is updated
window.addEventListener('click', clickListener)
// positions tracking
const switchMappedRef = useSwitchMap(mouseClickPoisitonRef, (initP, cleanup) => {
// do nothing until we click
if (initP.x === -1) return ref([])
const psRef = ref([{ x: initP.x, y: initP.y }])
const moveListener = (moveEvent) => {
psRef.value.push({
x: moveEvent.screenX,
y: moveEvent.screenY,
})
}
// add the new position inside the positions array ref
window.addEventListener('mousemove', moveListener)
cleanup(() => window.removeEventListener('mousemove', moveListener))
return psRef
})
Here switchMappedRef
will be a ref to an array that will be updated with the pointer positions after the first click. Each time we click somewhere on the screen, the function that tracks the mouse will be called again, so switchMappedRef
will be updated with a new, fresh array. We do use the cleanup
function to set a function that will remove the event listener because, even if older listeners do not interfere with switchMappedRef
, we don't like memory leaks.
A function like useSwitchMap
is not enough in the case the composed function returns an object where each property is itself a ref. This is why useSwitchMapO
was born.
function useSwitchMapO<T, R extends object>(
ref: Ref<T>,
projectionFromValuesToRefs: (value: T, scf: SetCleanupFunction) => R
): R
Our goal is to compose the following useFetch
Vue composition function with a ref, so that each time the ref is changed the function will refetch the data. This useFetch
function will return an object containing three refs: one that signal if the fetch is in a pending state, one for the resulting data and the last for a possible error message.
Using useSwitchMapO
will be a breeze:
import { useSwitchMapO } from 'vue-use-switch-map'
import { ref, computed } from 'vue'
const useFetch = (url) => {
const dataRef = ref(null)
const errorMessageRef = ref('')
const isPendingRef = ref(true)
fetch(url)
.then((response) => response.json())
.then((data) => (dataRef.value = data))
.catch((error) => (errorMessageRef.value = error.message))
.finally(() => (isPendingRef.value = false))
return { dataRef, errorMessageRef, isPendingRef }
}
// for example, counterRef could be a prop
const counterRef = ref(0)
function incrementCounterRef() {
counterRef.value++
}
const urlRef = computed(() => `https://jsonplaceholder.typicode.com/todos/${counterRef.value}`)
// here it is
const { dataRef, errorMessageRef, isPendingRef } = useSwitchMapO(urlRef, useFetch)
As you can see, we don't have to worry about older fetch calls that may take longer than the last one, with the risk of having our dataRef
, errorMessageRef
and isPendingRef
changed by them.
Moreover, you can always use the cleanup function argument to set up a cleaup function, e.g. to stop an asynchronous computation:
const useFetch = (url, cleanup) => {
const dataRef = ref(null)
const errorMessageRef = ref('')
const isPendingRef = ref(true)
const controller = new AbortController()
const signal = controller.signal
fetch(url, { signal })
.then((response) => response.json())
.then((data) => (dataRef.value = data))
.catch((error) => (errorMessageRef.value = error.message))
.finally(() => (isPendingRef.value = false))
cleanup(() => controller.abort())
return { dataRef, errorMessageRef, isPendingRef }
}
In this case, though, the promise will rejects with an AbortError
, so the magic of useSwitchMapO
is still needed to prevent the problems we have just discussed.
Let's say we have a Vue composition function like the following:
function useSomething(value, config [, cleanup]) {
// ...
return useSomethingRef
}
We want to bind such a function to aRef
using useSwitchMap
. How do we do that?
const makeUseSomething = (config) => (value [, cleanup]) => useSomething(value, config [, cleanup])
const switchMappedRef = useSwitchMap(aRef, makeUseSomething(config))
Let's say we need to bind more than one ref to a composition function:
function useSomething(value, anotherValue [, cleanup]) {
// ...
return useSomethingRef
}
const switchMappedRef = useSwitchMap(aRef, anotherRef, useSomething)
// that's not how 'useSwitchMap' works
How do we do that? Simple, we have to create an object ref:
const objectRef = computed(() => ({ value: aRef.value, anotherValue: anotherRef.value }))
const switchMappedRef = useSwitchMap(
objectRef,
(object [, cleanup]) => useSomething(object.value, object.anotherValue [, cleanup])
)
I've tried my best to test it, but I clearly suck at it. I've messed a lot with jest, fake timers and watchers without much success, therefore I was unable to express some advanced use cases that I had to personally test using home made solutions. Therefore, any contribution in this direction is really really appreciated 😊.
You can read more about this package in this blog post.