2016-11-06 20:12:24 +00:00
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
## Mental Model Omnibus
|
|
|
|
|
2016-10-25 06:22:49 +00:00
|
|
|
> If a factory is torn down but the rationality which produced it is
|
|
|
|
left standing, then that rationality will simply produce another
|
|
|
|
factory. If a revolution destroys a government, but the systematic
|
|
|
|
patterns of thought that produced that government are left intact,
|
2016-10-25 10:46:56 +00:00
|
|
|
then those patterns will repeat themselves. <br>
|
2016-10-25 06:22:49 +00:00
|
|
|
> -- Robert Pirsig, Zen and the Art of Motorcycle Maintenance
|
|
|
|
|
2016-12-04 20:59:11 +00:00
|
|
|
The tutorials initially focus on the **domino
|
|
|
|
narrative**. The goal is to efficiently explain the mechanics of re-frame,
|
2016-10-25 10:46:56 +00:00
|
|
|
and get you reading and writing code ASAP.
|
2016-10-25 06:22:49 +00:00
|
|
|
|
2016-12-03 10:44:06 +00:00
|
|
|
**But** there are other interesting perspectives on re-frame
|
|
|
|
which will deepen your understanding of its design,
|
2016-12-03 20:57:31 +00:00
|
|
|
and help you to get the best from it.
|
2016-10-22 03:56:04 +00:00
|
|
|
|
|
|
|
This tutorial is a tour
|
2016-12-04 20:59:11 +00:00
|
|
|
of these ideas, justifications and insights. It is a little rambling, but
|
2016-12-06 01:23:55 +00:00
|
|
|
I'm hoping you'll have had at least one "Aaaah, I see" moment before the end.
|
2016-12-04 20:59:11 +00:00
|
|
|
|
|
|
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
|
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
2016-12-06 03:15:05 +00:00
|
|
|
## Table Of Contents
|
2016-12-04 20:59:11 +00:00
|
|
|
|
2016-12-06 03:15:05 +00:00
|
|
|
- [What is the problem?](#what-is-the-problem)
|
2016-12-04 20:59:11 +00:00
|
|
|
- [Guiding Philosophy](#guiding-philosophy)
|
|
|
|
- [It does Event Sourcing](#it-does-event-sourcing)
|
|
|
|
- [It does a reduce](#it-does-a-reduce)
|
|
|
|
- [Derived Data All The Way Down](#derived-data-all-the-way-down)
|
|
|
|
- [It does FSM](#it-does-fsm)
|
|
|
|
- [Full Stack](#full-stack)
|
2016-12-06 03:15:05 +00:00
|
|
|
- [What Of This Romance?](#what-of-this-romance)
|
2016-12-04 20:59:11 +00:00
|
|
|
|
|
|
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
2016-10-22 03:56:04 +00:00
|
|
|
|
2016-10-25 06:22:49 +00:00
|
|
|
## What is the problem?
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
First, we decided to build our SPA apps with ClojureScript, then we
|
2016-12-02 12:46:06 +00:00
|
|
|
choose [Reagent], then we had a problem. It was August 2014.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
For all its considerable brilliance, Reagent (+ React)
|
|
|
|
delivers only the 'V' part of a traditional MVC framework.
|
|
|
|
|
2016-12-03 10:44:06 +00:00
|
|
|
But apps involve much more than V. We build quite complicated
|
2016-12-03 20:57:31 +00:00
|
|
|
SPAs which can run to 50K lines of code. So, I wanted to know:
|
|
|
|
where does the control logic go? How is state stored & manipulated? etc.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
We read up on [Pedestal App], [Flux],
|
|
|
|
[Hoplon], [Om], early [Elm], etc and re-frame is the architecture that
|
2016-12-03 10:44:06 +00:00
|
|
|
emerged. Since then, we've tried to keep an eye on further developments like the
|
2016-10-21 09:40:32 +00:00
|
|
|
Elm Architecture, Om.Next, BEST, Cycle.js, Redux, etc. They have taught us much
|
|
|
|
although we have often made different choices.
|
|
|
|
|
2016-12-02 12:46:06 +00:00
|
|
|
re-frame does have parts which correspond to M, V, and C, but they aren't objects.
|
2016-10-21 09:40:32 +00:00
|
|
|
It is sufficiently different in nature
|
|
|
|
from (traditional, Smalltalk) MVC that calling it MVC would be confusing. I'd
|
|
|
|
love an alternative.
|
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
Perhaps it is a RAVES framework - Reactive-Atom Views Event
|
2016-10-21 09:40:32 +00:00
|
|
|
Subscription framework (I love the smell of acronym in the morning).
|
|
|
|
|
|
|
|
Or, if we distill to pure essence, `DDATWD` - Derived Data All The Way Down.
|
|
|
|
|
|
|
|
*TODO:* get acronym down to 3 chars! Get an image of stacked Turtles for `DDATWD`
|
|
|
|
insider's joke, conference T-Shirt.
|
|
|
|
|
|
|
|
## Guiding Philosophy
|
|
|
|
|
|
|
|
__First__, above all we believe in the one true [Dan Holmsand], creator of Reagent, and
|
|
|
|
his divine instrument the `ratom`. We genuflect towards Sweden once a day.
|
|
|
|
|
|
|
|
__Second__, we believe in ClojureScript, immutable data and the process of building
|
|
|
|
a system out of pure functions.
|
|
|
|
|
2016-12-03 10:44:06 +00:00
|
|
|
__Third__, we believe in the primacy of data, for the reasons described in
|
2016-12-03 20:57:31 +00:00
|
|
|
the main README. re-frame has a data oriented, functional architecture.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-12-03 10:44:06 +00:00
|
|
|
__Fourth__, we believe that Reactive Programming is one honking good idea.
|
2016-10-25 06:22:49 +00:00
|
|
|
How did we ever live without it? It is a quite beautiful solution to one half of re-frame's
|
|
|
|
data conveyance needs, **but** we're cautious about taking it too far - as far as, say, cycle.js.
|
2016-10-21 09:40:32 +00:00
|
|
|
It doesn't take over everything in re-frame - it just does part of the job.
|
|
|
|
|
|
|
|
__Finally__, many years ago I programmed briefly in Eiffel where I learned
|
|
|
|
about [command-query separation](https://en.wikipedia.org/wiki/Command%E2%80%93query_separation).
|
|
|
|
Each generation of
|
2016-12-03 10:44:06 +00:00
|
|
|
programmers seems destined to rediscover this principle - CQRS is the recent re-rendering.
|
2016-10-21 09:40:32 +00:00
|
|
|
And yet we still see read/write `cursors` and two way data binding being promoted as a good thing.
|
2016-12-03 10:44:06 +00:00
|
|
|
Please, just say no. As your programs get bigger, the use of these two-way constructs
|
|
|
|
will encourage control logic into all the
|
|
|
|
wrong places and you'll end up with a tire fire of an Architecture.
|
2016-10-21 05:08:16 +00:00
|
|
|
|
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
## It does Event Sourcing
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-10-26 20:05:05 +00:00
|
|
|
How did that error happen, you puzzle, shaking your head ruefully?
|
|
|
|
What did the user do immediately prior? What
|
|
|
|
state was the app in that this event was so problematic?
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
To debug, you need to know this information:
|
2016-10-21 09:40:32 +00:00
|
|
|
1. the state of the app immediately before the exception
|
2016-10-26 20:05:05 +00:00
|
|
|
2. What final `event` then caused your app to error
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
Well, with re-frame you need to record (have available):
|
2016-10-25 06:22:49 +00:00
|
|
|
1. A recent checkpoint of the application state in `app-db` (perhaps the initial state)
|
2016-10-26 20:05:05 +00:00
|
|
|
2. all the events `dispatch`ed since the last checkpoint, up to the point where the error occurred
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
Note: that's all just data. **Pure, lovely loggable data.**
|
|
|
|
|
2016-10-26 20:05:05 +00:00
|
|
|
If you have that data, then you can reproduce the error.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
re-frame allows you to time travel, even in a production setting.
|
|
|
|
Install the "checkpoint" state into `app-db`
|
2016-10-21 09:40:32 +00:00
|
|
|
and then "play forward" through the collection dispatched events.
|
|
|
|
|
|
|
|
The only way the app "moves forwards" is via events. "Replaying events" moves you
|
2016-10-26 20:05:05 +00:00
|
|
|
step by step towards the error causing problem.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
This is perfect for debugging assuming, of course, you are in a position to capture
|
2016-12-03 20:57:31 +00:00
|
|
|
a checkpoint of `app-db`, and the events since then.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
Here's Martin Fowler's [description of Event Sourcing](http://martinfowler.com/eaaDev/EventSourcing.html).
|
|
|
|
|
|
|
|
## It does a reduce
|
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
Here's an interesting way of thinking about the re-frame
|
|
|
|
data flow ...
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
**First**, imagine that all the events ever dispatched in a
|
2016-10-26 20:05:05 +00:00
|
|
|
certain running app were stored in a collection (yes, event sourcing again).
|
2016-10-21 09:40:32 +00:00
|
|
|
So, if when the app started, the user clicked on button X
|
2016-10-22 03:56:04 +00:00
|
|
|
the first item in this collection would be the event
|
2016-10-21 09:40:32 +00:00
|
|
|
generated by that button, and then, if next the user moved
|
|
|
|
a slider, the associated event would be the next item in
|
|
|
|
the collection, and so on and so on. We'd end up with a
|
|
|
|
collection of event vectors.
|
|
|
|
|
|
|
|
**Second**, remind yourself that the `combining function`
|
2016-12-03 10:44:06 +00:00
|
|
|
of a `reduce` takes two arguments:
|
2016-10-21 09:40:32 +00:00
|
|
|
1. the current state of the reduction and
|
2016-12-04 20:59:11 +00:00
|
|
|
2. the next collection member to fold in
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-12-03 10:44:06 +00:00
|
|
|
Then notice that `reg-event-db` event handlers take two arguments also:
|
2016-10-26 20:05:05 +00:00
|
|
|
1. `db` - the current state of `app-db`
|
|
|
|
2. `v` - the next event to fold in
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-10-26 20:05:05 +00:00
|
|
|
Interesting. That's the same as a `combining function` in a `reduce`!!
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
So now we can introduce the new mental model: at any point in time,
|
|
|
|
the value in `app-db` is the result of performing a `reduce` over
|
|
|
|
the entire `collection` of events dispatched in the app up until
|
2016-10-22 03:56:04 +00:00
|
|
|
that time. The combining function for this reduce is the set of event handlers.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
|
|
|
It is almost like `app-db` is the temporary place where this
|
|
|
|
imagined `perpetual reduce` stores its on-going reduction.
|
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
Now, in the general case, this perspective breaks down a bit,
|
2016-10-25 06:22:49 +00:00
|
|
|
because of `reg-event-fx` (has `-fx` on the end, not `-db`) which
|
|
|
|
allows:
|
2016-10-22 03:56:04 +00:00
|
|
|
1. event handlers can produce `effects` beyond just application state
|
|
|
|
changes.
|
|
|
|
2. Event handlers sometimes need coeffects (arguments) in addition to `db` and `v`.
|
|
|
|
|
|
|
|
But, even if it isn't the full picture, it is a very useful
|
2016-12-03 20:57:31 +00:00
|
|
|
and interesting mental model. We were first exposed to this idea
|
|
|
|
via Elm's early use of `foldp` (fold from the past), which was later enshrined in the
|
2016-10-22 03:56:04 +00:00
|
|
|
Elm Architecture.
|
2016-10-21 09:40:32 +00:00
|
|
|
|
2016-12-04 20:59:11 +00:00
|
|
|
## Derived Data All The Way Down
|
|
|
|
|
|
|
|
For the love of all that is good, please watch this terrific
|
2016-12-06 03:10:56 +00:00
|
|
|
[StrangeLoop presentation](https://www.youtube.com/watch?v=fU9hR3kiOK0) (40 mins).
|
2016-10-26 20:05:05 +00:00
|
|
|
See what happens when you re-imagine a database as a stream!! Look at
|
2016-12-03 10:44:06 +00:00
|
|
|
all the problems that evaporate.
|
2016-10-26 20:05:05 +00:00
|
|
|
Think about that: shared mutable state (the root of all evil),
|
|
|
|
re-imagined as a stream!! Blew my socks off.
|
|
|
|
|
2016-12-03 20:57:31 +00:00
|
|
|
If, by chance, you ever watched that video (you should!), you might then twig to
|
|
|
|
the idea that `app-db` is really a derived value ... the video talks
|
2016-12-03 10:44:06 +00:00
|
|
|
a lot about derived values. So, yes, app-db is a derived value of the `perpetual reduce`.
|
2016-10-26 20:05:05 +00:00
|
|
|
|
|
|
|
And yet, it acts as the authoritative source of state in the app. And yet,
|
2016-12-03 20:57:31 +00:00
|
|
|
it isn't, it is simply a piece of derived state. And yet, it is the source. Etc.
|
2016-10-26 20:05:05 +00:00
|
|
|
|
2016-12-03 20:57:31 +00:00
|
|
|
This is an infinite loop of sorts - an infinite loop of derived data.
|
2016-10-26 20:05:05 +00:00
|
|
|
|
2016-10-22 03:56:04 +00:00
|
|
|
## It does FSM
|
2016-10-21 05:08:16 +00:00
|
|
|
|
|
|
|
> Any sufficiently complicated GUI contains an ad hoc,
|
|
|
|
> informally-specified, bug-ridden, slow implementation
|
2016-10-25 06:22:49 +00:00
|
|
|
> of a hierarchical Finite State Machine <br>
|
2016-12-04 20:59:11 +00:00
|
|
|
> -- me, trying too hard to impress my two twitter followers
|
2016-10-21 05:08:16 +00:00
|
|
|
|
2016-10-26 20:05:05 +00:00
|
|
|
`event handlers` collectively
|
|
|
|
implement the "control" part of an application. Their logic
|
|
|
|
interprets arriving events in the context of existing state,
|
2016-11-30 10:28:01 +00:00
|
|
|
and they compute what the new state of the application.
|
2016-10-21 05:08:16 +00:00
|
|
|
|
2016-10-25 06:22:49 +00:00
|
|
|
`events` act, then, a bit like the `triggers` in a finite state machine, and
|
2016-10-24 03:21:47 +00:00
|
|
|
the event handlers act like the rules which govern how the state machine
|
2016-10-21 05:08:16 +00:00
|
|
|
moves from one logical state to the next.
|
|
|
|
|
2016-11-30 10:28:01 +00:00
|
|
|
In the simplest
|
|
|
|
case, `app-db` will contain a single value which represents the current "logical state".
|
|
|
|
For example, there might be a single `:phase` key which can have values like `:loading`,
|
|
|
|
`:not-authenticated` `:waiting`, etc. Or, the "logical state" could be a function
|
|
|
|
of many values in `app-db`.
|
2016-10-24 03:21:47 +00:00
|
|
|
|
2016-10-21 05:08:16 +00:00
|
|
|
Not every app has lots of logical states, but some do, and if you are implementing
|
|
|
|
one of them, then formally recognising it and using a technique like
|
|
|
|
[State Charts](https://www.amazon.com/Constructing-User-Interface-Statecharts-Horrocks/dp/0201342782)
|
2016-10-24 03:21:47 +00:00
|
|
|
will help greatly in getting a clean design and fewer bugs.
|
|
|
|
|
|
|
|
The beauty of re-frame from a FSM point of view is that all the state is
|
|
|
|
in one place - unlike OO systems where the state is distributed (and synchronized)
|
|
|
|
across many objects. So implementing your control logic as a FSM is
|
2016-11-30 10:28:01 +00:00
|
|
|
fairly natural in re-frame, whereas it is often difficult and
|
|
|
|
contrived in other kinds of architecture (in my experience).
|
2016-10-21 05:08:16 +00:00
|
|
|
|
2016-10-24 03:21:47 +00:00
|
|
|
So, members of the jury, I put it to you that:
|
2016-10-21 05:08:16 +00:00
|
|
|
- the first 3 dominoes implement an [Event-driven finite-state machine](https://en.wikipedia.org/wiki/Event-driven_finite-state_machine)
|
2016-12-06 01:23:55 +00:00
|
|
|
- the last 3 dominoes render of the FSM's current state for the user to observe
|
2016-10-24 03:21:47 +00:00
|
|
|
|
2016-10-25 10:46:56 +00:00
|
|
|
Depending on your app, this may or may not be a useful mental model,
|
|
|
|
but one thing is for sure ...
|
2016-10-24 03:21:47 +00:00
|
|
|
|
2016-10-21 05:08:16 +00:00
|
|
|
Events - that's the way we roll.
|
|
|
|
|
2016-12-07 06:58:29 +00:00
|
|
|
|
|
|
|
|
2016-12-04 20:59:11 +00:00
|
|
|
## Full Stack
|
|
|
|
|
|
|
|
If you like re-frame and want to take the principles full-stack, then
|
|
|
|
these resource might be interesting to you:
|
|
|
|
|
|
|
|
Commander Pattern
|
|
|
|
https://www.youtube.com/watch?v=B1-gS0oEtYc
|
|
|
|
|
|
|
|
Datalog All The Way Down
|
|
|
|
https://www.youtube.com/watch?v=aI0zVzzoK_E
|
|
|
|
|
|
|
|
## What Of This Romance?
|
2016-12-03 10:44:06 +00:00
|
|
|
|
|
|
|
My job is to be a relentless cheerleader for re-frame, right?
|
|
|
|
The gyrations of my Pom-Poms should be tectonic,
|
2016-12-03 20:57:31 +00:00
|
|
|
but the following quote makes me smile. It should
|
2016-12-03 10:44:06 +00:00
|
|
|
be taught in all ComSci courses.
|
|
|
|
|
|
|
|
> We begin in admiration and end by organizing our disappointment <br>
|
|
|
|
> -- Gaston Bachelard (French philosopher)
|
|
|
|
|
2016-12-03 20:57:31 +00:00
|
|
|
Of course, that only applies if you get passionate about a technology
|
|
|
|
(a flaw of mine).
|
2016-12-03 10:44:06 +00:00
|
|
|
|
|
|
|
But, no. No! Those French Philosophers and their pessimism - ignore him!!
|
|
|
|
Your love for re-frame will be deep, abiding and enriching.
|
|
|
|
|
2016-12-04 11:26:01 +00:00
|
|
|
***
|
|
|
|
|
2016-12-04 20:59:11 +00:00
|
|
|
Previous: [First Code Walk-Through](CodeWalkthrough.md)
|
2016-12-04 11:26:01 +00:00
|
|
|
Up: [Index](README.md)
|
2016-12-04 20:59:11 +00:00
|
|
|
Next: [Effectful Handlers](EffectfulHandlers.md)
|
2016-12-06 01:23:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
[SPAs]:http://en.wikipedia.org/wiki/Single-page_application
|
|
|
|
[SPA]:http://en.wikipedia.org/wiki/Single-page_application
|
|
|
|
[Reagent]:http://reagent-project.github.io/
|
|
|
|
[Dan Holmsand]:https://twitter.com/holmsand
|
|
|
|
[Flux]:http://facebook.github.io/flux/docs/overview.html#content
|
|
|
|
[Hiccup]:https://github.com/weavejester/hiccup
|
|
|
|
[FRP]:https://gist.github.com/staltz/868e7e9bc2a7b8c1f754
|
|
|
|
[Elm]:http://elm-lang.org/
|
|
|
|
[OM]:https://github.com/swannodette/om
|
|
|
|
[Prismatic Schema]:https://github.com/Prismatic/schema
|
|
|
|
[Hoplon]:http://hoplon.io/
|
|
|
|
[Pedestal App]:https://github.com/pedestal/pedestal-app
|