purge-event-queue
to the API. See https://github.com/Day8/re-frame-test/issues/13 for motivation.app-db
:db
has changed: if the new value provided tests
identical?
to the existing value within app-db
, then app-db
is not reset!
.
Previously, app-db
was always reset!
irrespective,
which potentially caused Layer 2 subscriptions to run unnecessarily. So this is a tiny
efficiency change in this edge case, and it results in behaviour that better matches
programmer intuitions.:dispatch-n
will now ignore nils
. See checkinre-frame.core/on-changes
to work even if event handler does not set :db
.re-frame.trace.trace-enabled?
.reg-sub
enforces using :<-
to indicate subscription inputs. Previously any keyword would have worked here. While using anything other than :<-
was undefined behaviour previously, this could possibly break some code when upgrading. Thanks to @Sohalt #336.re-frame.interceptor/update-coeffect
has been fixed. #328re-frame.interceptor
. Thanks to @ggeoffrey. #3380.6.0-rc
to 0.6.0
.:devDependencies
instead of :dependencies
for the lein-npm Karma dependencies. This stops consumers of re-frame with the lein-npm plugin from having to install Karma and friends.:id
of on-changes interceptor from :enrich
to :on-changes
Welcome, board members. Dr Ford has created a new 6-part narrative, and Bernard some infographics. Anyone seen Dolores?
subscribe
in Form-1 components. This is a big deal.goog-define
(described below), re-frame now requires ClojureScript 1.7.48 or above. See Parameterizing ClojureScript Builds for more information.clear-subscription-cache!
function. You should call this when you are hot reloading code to ensure that any bad subscriptions that cause rendering exceptions are removed. See Why do we call clear-subscription-cache!
? and reagent-project/reagent#272 for more details.re-frame.loggers/get-loggers
function to well, you know.:closure-defines
key to {"re_frame.trace.trace_enabled_QMARK_" true}
make-restore-fn
, dispose of any subscriptions that were created after the restore function was created.:event
coeffect in the :after
function.db
coeffect, if no db
effect was produced.db
coeffect, if no db
effect was produced.Staying on the leading edge of new buzzwords is obviously critical for any framework. Angular's terrifying faceplant is a sobering reminder to us all. With this release, re-frame's already impressive buzzword muscles bulge further with new walnuts like "effects", "coeffects", "interceptors" and "de-duplicated signal graph". I know, right?
Some may even find these new features useful.
Joking aside, this is a substantial release which will change how you use re-frame.
re-frame subscriptions are now de-duplicated. As a result, many Signal graphs will be more efficient. The new behaviour better matches programmer intuitions about what "should" happen.
Each subscription causes a handler to execute, producing
a reactive stream of updates. Two calls to (subscribe [:some :query])
results in two copies of the same
subscription handler running, each delivering a stream of updates. Now, if these two subscriptions
were running at the same time, this would be inefficient. Both handlers would be
doing the same computations and delivering the same stream of updates. Unnecessary, duplicate work.
Starting with this version, this sort of duplication has been eliminated. Two, or more, concurrent subscriptions for the same query will now source reactive updates from the one executing handler.
So, how do we know if two subscriptions are "the same"? Answer: two subscriptions
are the same if their query vectors test =
to each other.
So, these two subscriptions are not "the same": [:some-event 42]
[:some-event "blah"]
. Even
though they involve the same event id, :some-event
, the query vectors do not test =
.
added a new subscription handler registration function called re-frame.core/reg-sub
. It is an
alternative to re-frame.core/register-sub
(now renamed to re-frame.core/reg-sub-raw
).
reg-sub
is significantly easier to use and understand,
while often also being more performant. The design has really fallen out nicely and we're
delighted with it.
With reg-sub
, you no longer need to use reaction
explicitly. Subscription handlers are now pure
which makes them easier to understand, trace and test etc. Plus, as you'll see in the docs, there is some
gratuitous syntactic sugar. Who doesn't like sugar?
At this point, the todomvc example represents the best tutorial on the subject: https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/subs.cljs
re-frame now supports the notion of Event Handlers accepting coeffects and returning effects.
There's now three kinds of event handlers: -db
, -fx
and -ctx
.
For a tutorial see: https://github.com/Day8/re-frame/tree/master/docs
For Effect Handler examples see:
You can now run and debug re-frame tests on the JVM.
Just to be clear: this does not mean you can run re-frame apps on the JVM (there's no React or Reagent available). But you can debug your event handler tests using full JVM tooling goodness.
@samroberton and @escherize have provided the thought leadership and drive here. They converted
re-frame to .cljc
, supplying pluggable interop for both the js
and jvm
platforms.
Further, they have worked with @danielcompton to create a library of testing utilities which
will hopefully evolve into a nice step forward on both platforms:
https://github.com/Day8/re-frame-test
Work is ongoing in this area.
the undo/redo features buried in re-frame has been factored out into a standalone library.
undo and redo have been a part of re-frame from the beginning, but they have never officially
been made a part of the API, and have not been documented. So it nice to see it available, and fully
documented.
This new library includes various enhancements over that which previously existed, and it works in with effectful handlers described above.
Middleware is dead, long live Interceptors.
Up until now, re-frame has allowed you to decorate event handlers with middleware which looked after the cross cutting concerns of tracing, undo/redo, validation, etc. This has proved a neat and successful part of the framework. We thought we were happy.
But recently @steveb8n gave a cljsyd talk on
Pedestal's Interceptor pattern which suddenly transformed them from
arcane to delightfully simple in 20 mins. Interceptors are
really "middleware via data" rather than "middleware via higher order functions".
So it is another way of doing the same thing, but thanks to @steveb8n
Interceptors appear a more flexible base, and simpler.
Interceptors also dovetail really nicely with the effects and coeffects story which has emerged in re-frame through this 0.8.0 release.
we now have a logo designed by Sketch Maester @martinklepsch. Thank you Martin! But remember, no good deed ever goes unpunished - we'll be pestering you every time from now on :-)
requires Reagent >= v0.6.0
re-frame.core/register-handler
has been renamed re-frame.core/reg-event-db
. There's now
three kinds of event-handlers, -db
, -fx
and -ctx
. Event handlers of the 2nd and 3rd kinds
should be registered via the new registration functions re-frame.core/reg-event-fx
and
re-frame.core/reg-event-ctx
re-frame.core/register-sub
has been renamed re-frame.core/reg-sub-raw
. This is to indicate that
this kind of registration is now considered the low level, close to the metal way to
create subscriptions handlers. This release introduced reg-sub
which becomes the preferred way
to register subscription handlers.
middlewares have been replaced by Interceptors. In day to day use, there's a good chance you won't notice the change UNLESS:
You have written your own middleware. If so, you'll have to rewrite it. See how the builtin interceptors are done.
You explicitly use comp
to compose middleware like this:
(reg-event-db
:some-id
(comp debug tim-v) ;; <-- change to [debug trim-v]
(fn [db event]
...))
if you have previously used the undo/redo capabilities buried in re-frame, be aware they have extracted into a sibling library: https://github.com/Day8/re-frame-undo.
By default, re-frame uses js/console
functions like error
and warn
when logging, but you can
supply alternative functions using re-frame.core/set-loggers!
.
With this release, any alternatives you supply will be called with different parameters.
Previously loggers were called with a single str
parameter but now they are expected to act
like console.log
itself and take variadic, non string params. Sorry to break things, but
we are trying to maximise use of cljs-devtools and information is lost when strings are
output, instead of actual data.
Of course, you need only worry about this if you are using re-frame.core/set-loggers!
to
hook in your own loggers. If you are, then, to transition, you'll need to tweak like this:
;; your old log function might have looked like this. Single string parameter.
(defn my-logger [s] (do-something-with s))
;; your new version will have variadic params, and turn them into a string
(defn my-logger [& args] (do-something-with (apply str args))
post-event-callbacks
were not called when dispatch-sync
was called.re-frame.core/clear-post-event-callback
which de-registers a callback
previously added by re-frame.core/add-post-event-callback
app-db
, the debug
middleware now logs a
single line saying so, rather than a "group". Makes it slightly easier to grok
the absence of change.once
and auto
have been replaced by test-once
, test-auto
& karma-once
see CONTRIBUTING.mdBreaking:
removed middleware log-ex
. It is no longer needed because browsers now correctly report the
throw site of re-thrown exceptions. In the unlikely event that you absolutely still need it,
the source for log-ex
is still in middleware.cljs
, commented out. Just transfer it to your project.
debug
middleware now produces slightly different output (to console). So no code will need to change,
just your expectations of what you see in console. Previously all console output from an event handler was put
into the one console group, which could lead to exceptions being hidden (down in a closed group).
Improvements:
:flush-dom
metadata. Previously, there were odd times when
the pause wasn't long enough to ensure redraws.Fixed:
New API:
#118 - Add add-post-event-callback
to the API.
@pupeno is developing prerenderer which looks pretty neat.
Support this effort by adding a way for prerenderer to hook event processing.
on-changes
middleware now official. No longer experimental.
Improvements:
New Features:
Improvements:
fixed problem with log grouping
removed -------New Event-------
log msg
made groups collapsed by default
#104 - Updated to the latest TodoMVC CSS
Reimplemented the router loop. Removed use of core.async. Replaced with hand rolled scheduling. See 420e42a As a result:
dispatch
and the associated event handler being run. (<1ms vs 5ms??)This fixes issues like #39 and #121
I doubt this will affect normal apps. But it could affect games which depend on existing timings. Maybe. It could affect apps which dispatch large volumes of events (telemetry?) very quickly. Maybe.
Improvements:
examples/
now work with figwheelHeadline:
Deprecated:
log-ex
middleware is no longer needed. Simply remove its use.
Sometime in the last couple of months, changes to the CLJS
runtime meant that useful exceptions could escape go-loops, and
good stack traces appear (at least in Chrome).New Features:
(dispatch [:purge-redos])
When trying to recover from an UHE, do an undo to get back to the
last sane state, and then use this new feature to purge the
just-generated-redo.Experimental:
on-changes
.Other:
Improvements:
Various small improvements and bug fixes:
after
and enrich
now call the supplied function f
with
both db
and v
(previously just db
). Because javascript is so forgiving
about function arity, this change is backwards compatible.log-ex
for correctly printing handler stacktraces.
See explanation.Renames:
register-pure-handler
renamed to register-handler
(and existing low level register-handler
becomes register-handler-base
but is not a part of the API).apply-event
middleware and replace with similar trim-v
register-subs
to register-sub
(avoid confusion over possible plurals)set-max-undos
to set-max-undos!
Changes:
undoable
middleware is now a factory. Where before you used this undoable
,
you must now use this (undoable "some explanation")
. See further below.todomvc
available in examples folder.debug
, enrich
and after
The undo/redo feature built into re-frame is now more functional (at the cost of a breaking change).
There is now an explanation associated with each undo state describing modification. This allows an app to inform the user what actions they will be undoing or redoing.
Previously undoable
was simply middleware, but it is now a middleware factory.
Essentially, that means you can't use it "plain" anymore, and instead you must
call it, like this (undoable "Some explanation")
The explanation
provided to undoable must be either a string
(static
explanation) or a function (db event) -> string
, allowing you to customize
the undo message based on details of the event.
Can you improve this documentation? These fine people already did:
Mike Thompson, Daniel Compton, mike-thompson-day8, Stuart Mitchell, hipitihop, Szabó Krisztián, Erik Sandberg, Samuel Miller, Krisztian Szabo & DuckyEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close