Provider
A Provider defines an specific resource of a data origin.
When we create a Provider, we'll get a provider instance that should be alive during the whole live of our application, as it is going to be at charge of the cache, avoiding unnecessary resources consumption while the data origin has not changed.
The Provider class should not be used directly to create providers. It is the base from which specific origins implementations should extend (read the "How to create origin addons" chapter for further info). Here are described the arguments and options that are common to all origins addons. For specific options of each addon please read its own documentation.
Provider(id, [options])
Arguments
id
(String): Id for the provider instance. It is used internally as namespace in the store. It is also useful for debugging purposes, and can be used for configuring the provider instance using theproviders
object.options
(Object): Options will differ depending of the type of origin. Here are described the properties in the options object that are common to all origins addons. For specific options of different origin addons, please refer to its own documentation.cache
(Boolean): Iffalse
, it will disable the cache, and thereadMethod
defined by the origin will be called always, which could result in a negative performance impact. It istrue
by default, and normally it should not be disabled. This option can be changed also using theconfig
method of the provider instance.cacheTime
(Number): Milliseconds. After this time, the cache will be invalidated and thereadMethod
will be executed again whenread
is called. When the cache is invalidated it does not trigger acleanCache
event. Setting it to zero or null makes the cache never being invalidated. This option can be changed also using theconfig
method of the provider instance.cleanCacheInterval
(Number): Milliseconds. The cache is automatically cleaned every defined interval. ThecleanCache
event is triggered each time the cache is cleaned. When the cache is cleaned by any other process, the interval counter is resetted to zero. Setting this option tonull
will remove previously defined interval. This option can be changed also using theconfig
method of the provider instance.cleanCacheThrottle
(Number): Milliseconds. Avoids cleaning the cache more than once during this period of time. If thecleanCache
method is called one or multiple times while it is "throttled", it will clean the cache again when the period expires. This option will be ignored if clean cache methods are called with the option{ force: true}
. Setting this option to null will remove previously defined value. This option can be changed also using the config method of the provider instance.tags
(Array of Strings): Defines tags for the provider instance, which can be used afterwards to manage groups of providers using theproviders
object. Origin addons should usually automatically add his own tag to the beginning of the provided array, to allow configuring easily all providers of a same type.initialState
(Object|Function): Object containingloading
,loaded
,error
anddata
properties, which will define the initial state of the provider, before itsread
method is executed for the first time. This is useful to give a default value for the data, so you don't have to make extra format checks in your views (data && data.map
). It is also useful to define the initial loading state, which can be defined as true, which will save extra renders (as the read method is executed normally by the views theirself, the first time a selector is read it should haveloading
state as false, then immediatelytrue
, thenfalse
when data is retrieved. SettinginitialState.loading
property totrue
will save that extra render in the initialization). A function can be also provided, then, it will receive the currentquery
as argument, and the returned object will be used asinitialState
.
Returns
A provider
instance, which common methods are described in the providers and selectors methods page of these docs.
Example
import { Axios } from "@data-provider/axios";
const provider = new Axios("example", {
url: "/foo-url",
tags: ["foo-tag"],
initialState: {
loading: true,
data: []
}
});
console.log(provider.id);
// example
console.log(provider.options);
// { cache: true, tags: ["axios", "foo-tag"], url: "/foo-url" }
console.log(provider.state);
// { loading: true, loaded: false, data: [], error: null }
Tips
- Use clear identifiers in your providers. It will improve the development experience, as Data Provider and addons usually use them when printing messages into the console.
- When an
id
is duplicated, Data Provider will automatically append a suffix to it and will print a warning. - Define always the
initialState
, it will save you extra format checks in your views, and will save an initial extra render, as described in the Arguments API.
Overwritable methods for creating addons
In the Provider class there are some special methods and getters that can be overwritten when creating custom origins (read the "How to create origin addons" for further info):
initialState
Getter used to calculate the initial state of the provider when it is instantiated. It usually returns the initialState
from options as defined above, but this getter can be overwritten by plugins in order to change this behavior. For example, you could retrieve the real value from the data origin in case it is synchronous and return it as "data" property of the initialState
, this is how the addon "browser-storage" works, for example.
configMethod(newOptions)
This method is called when the instance is created and every time the config
method is called. It receives the new options as argument, which are the result of extending the previous with the received ones.
readMethod(...args)
This is the method called to calculate the provider data, so it is the most important one when creating addons. It should return a promise when the origin is asynchronous, so the resolved result will be saved in the data state. It can also simply return a value when the origin is synchronous. If the method throws an error or the returned promise is rejected, the provider will fill the error state, trigger the error event and clean the cache.
Remember that you can use the this.queryValue
and other getters to get the current query value, etc. The arguments of the method are open, so this method will receive the same ones that are passed to the provider read
method when it is called (addons can define its own custom options for the read method)
getChildQueryMethod(newQuery)
This method is used to calculate the queryValue
in the new child instance returned when the query method is executed. It normally returns the extension of the original query with the new one, but some addons need to make a deep extend instead, for example.
// default behavior: getChildQueryMethod() {return { ...this.queryValue, ...query };}
const queried = provider.query({ foo: "foo"}).query({ "var": "var" });
console.log(queried.queryValue) // {foo, "foo", var: "var"}
createChildMethod
This method is used to return a new instance when the query
method is executed. It normally returns a new instance using the same constructor. This method rarely has to be overwritten, it is used internally by Selectors because they do not accomplish with the Provider arguments described in this chapter, so they need to transform the options when they are created.
Internal methods for creating addons
There are also other methods and getters intended to be used only internally by addons that shouldn't be overwritten:
initialStateFromOptions
This getter returns the result of the initialState
option originally defined as an option to the provider. It is useful when overwriting the initialState
getter, because addons can consult the original option and act in consequence.
emit(eventName, data)
Addons can also emit its own events. Read the "events" chapter for further info.