Syncing consists of submitting a request and handling a response. The sync lifecycle is to:
:active
:success
or :fail
Why do I call this syncing and not AJAX, XHR, or something else? Sync is meant to capture the more general purpose of making an XHR request, along with related concerns that aren't inherently provided by XHR. A sync is tracked in the app-db so that the current state of its lifecycle is accessible. The most common use case is to show an activity indicator in the UI when a request is active. Sync accomplishes this by giving each sync request its own address in the app db.
Syncing is a process that's independent of the underlying mechanism. The basic idea is that you want the state in Place A propagated to Place B. This propagation can take time, and it can result in one of an enumerated set of possible outcomes: one kind of success, many kinds of failure. XHR is one mechanism by which this can take place.
The sync abstraction exposes a consistent way to work with the higher-level concerns in syncing data. It gives you tools for handling success and failure consistently. It also handles updating where the sync request is in its lifecycle.
By treating syncing as an abstraction, we make it possible to implement it using different dispatching mechanisms than XHR. For example, you could create a fully-local dispatcher that simulates remote requests by generating data for the response and using timeouts to simulate request latency.
Separates the data describing a request from actually performing the request. This allows success and failure handlers to be constructed that reference the original request, which can be useful - for example, the request data is used to derive an address for that sync, and that address is used to make the lifecycle state accessible. The response handlers are thus able to update the lifecycle, because they have access to the sync's address.
A request is a vector of
[method resource-name opts]
method
is one of #{:get :put :post :delete}
resource-name
will correspond to a routeopts
can include
:on-success
:on-fail
:params
You'll notice that the request structure does not include a URI. AJAX
requests (obviously) need a URI. The request adapter takes the request
as an argument, and adds a URI to the last element of the request,
opts
.
req-opts
can include :bf
, :on
, and :af
. The value of each is a
map of :success
, :fail
, and other response types. The value of
those is a single event description.
Sweet Tooth composes bf
, on
, af
, in that order.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close