powerful asynchronous query binding for vanillajs.
This library is experimental. Its API is likely to evolve between 2 versions. It covers one of my specific requirements. I am not sure to maintain this library yet.
This library is inspired from :
- Vanilla.js / [code]
I wanted to use a frontend library Alpine.js, lighter than React or Vue.js, to make interactive interface. I need a asynchronous state management module as react-query to :
- declare query as independant code
- deduplicate REST requests if several widgets load the same data source
- update all widgets when the request is invalidated and run again
- regularly pull a data source and update all the widgets that use it
- mock REST requests easily to perform unit test
- process only the last request during cascading invalidations
As I couldn't find a library that match this requirement for vanillajs, I decide to implement qbind
<script src="https://unpkg.com/qbind/dist/qbind.min.js"></script>
npm install --save qbind
the following examples can be played in the browser console when installing qbind
in the browser.
preparedQuery("users", "https://randomuser.me/api/?seed=foobar&results=5")
function users() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
})
}
function userByGender() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
results = {}
for (key in data.results) {
user = data.results[key]
gender = user.gender
if (!(gender in results)) {
results[gender] = []
}
results[gender].push(user)
}
// display the list in the dom element
console.log(results)
}
})
}
users();
userByGender();
// run the query once, and execute the callback of users and userByFender.
invalidateQuery("users");
In some case, you have a query that is not ready. It requires an external argument that is not set yet.
function users() {
subscribeQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
});
users(); // nothing happens
invalidateQuery("users");
}
preparedQuery("users", "https://randomuser.me/api/?seed=foobar", {}, {interval: 5})
function users() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
})
}
function userByGender() {
useQuery("users", (data, loading, error) => {
if (loading == false) {
results = {}
for (key in data.results) {
user = data.results[key]
gender = user.gender
if (!(gender in results)) {
results[gender] = []
}
results[gender].push(user)
}
// display the list in the dom element
console.log(results)
}
})
}
users();
userByGender();
qbind
allows you to mock an external call in your automatic tests with the mockQuery
method and
bypass the request to the server by returning a pre-programmed response.
preparedQuery("users", "https://randomuser.me/api/?seed=foobar&results=5")
mockQuery("users", {results: []})
function users() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
})
}
/* use the mock instead of calling the api */
users();
The second argument of preparedQuery
and replaceQuery
contains the options for the fetch request.
preparedQuery("users", "https://randomuser.me/api/?seed=foobar&results=5", {mode: 'cors'})
function users() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
})
}
users();
By default, qbind
only returns the result of the last invalidation when several successive invalidations have been executed.
This behavior limits clipping by recovering incomplete data.
If you need to call the callbacks for all invalidations, use the postponeInvalidation: false
option.
preparedQuery("users", "https://randomuser.me/api/?seed=foobar&results=5", {}, {postponeInvalidation: false})
function users() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
})
}
users();
// run the query once, and execute the callback of users and userByFender.
invalidateQuery("users");
The replaceQuery
method reconfigures an existing query.
It is possible to make an existing query recurrent, for example to run it every 60 seconds.
preparedQuery('users', "https://randomuser.me/api/?seed=foobar&results=5", {}, {});
replaceQuery('users', "https://randomuser.me/api/?seed=foobar&results=5", {}, {interval: 60});
function users() {
useQuery("users", (data, loading, error, response) => {
if (loading == false) {
console.log(data.results)
}
})
}
users();
preparedQuery('users', "https://randomuser.me/api/?seed=foobar&results=5", {}, {});
useQuery("users", (data, loading, error, response, stopCallback) => {
if (loading == false) {
console.log(data.results)
}
if (data !== null) {
map = //...
}
if (map !== null) {
stopCallback.set()
}
})
/**
* once the invocation of the stopCallback takes place,
* the callback is no longer executed
*/
invalidateQuery("users");
invalidateQuery("users");
To define a new engine, you must write a javascript function that takes a query object as a parameter.
An engine should always invoke the invokeSubscriptions
function from the response it retrieves.
This will trigger the execution of the subscriptions of this query.
The replaceQueryDefaultEngine
function replaces the query engine for all queries.
export function customAxiosEngine(query) {
axios.get(query.url)
.then(function (response) {
invokeSubscriptions(query, response.data, null, response);
})
.catch(function (error) {
invokeSubscriptions(query, null, error, null);
})
}
replaceQueryDefaultEngine(customAxiosEngine)
preparedQuery
and replaceQuery
accept also an engine
option to specify
a specific query engine for a specific query.
preparedQuery('users', "https://randomuser.me/api/?seed=foobar&results=5", {}, {engine: customAxiosEngine});
qbind
implements 2 engines that you can use for inspiration fetchJsonEngine
and mockEngine
.
You can find the latest version to ...
git clone https://github.com/FabienArcellier/qbind.git
npm test
If you propose hotfixes or new features, I will integrate them as a best effort. As the library is experimental I would prefer discuss them on discord. You can join me on it.
- Fabien Arcellier
MIT License
Copyright (c) 2022 Arcellier Fabien
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.