From 3d3c7a1ccd9d94bacf8c111a11fe6a82ec370ce5 Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Thu, 25 Aug 2016 00:29:57 +1000 Subject: [PATCH] Add navigation to docs pages --- docs/{EffectfulEvents.md => EffectfulHandlers.md} | 5 +++++ docs/Effects.md | 11 +++++++++++ docs/Interceptors.md | 5 +++++ docs/README.md | 2 +- 4 files changed, 22 insertions(+), 1 deletion(-) rename docs/{EffectfulEvents.md => EffectfulHandlers.md} (99%) diff --git a/docs/EffectfulEvents.md b/docs/EffectfulHandlers.md similarity index 99% rename from docs/EffectfulEvents.md rename to docs/EffectfulHandlers.md index 6990ca6..4a5fd9d 100644 --- a/docs/EffectfulEvents.md +++ b/docs/EffectfulHandlers.md @@ -389,3 +389,8 @@ cause additional side-effects (effects). That's when you reach for `-fx` handle In the next tutorial, we'll shine a light on `interceptors` which are the mechanism by which event handlers are executed. That knowledge will give us a springboard to then, as a next step, better understand coeffects and effects. We'll soon be writing our own. + +--- +Up: [Index](Readme.md)       +Next: [Interceptors](Interceptors.md) + diff --git a/docs/Effects.md b/docs/Effects.md index ab95496..fe4dca4 100644 --- a/docs/Effects.md +++ b/docs/Effects.md @@ -278,6 +278,17 @@ then you can use a `fixture` to restore all effect handlers at the end of your t `re-frame.core/make-restore-fn` creates a checkpoint for re-frame state (including registered handlers) to which you can return. +### Summary + +XXX + + +--- +Previous: [Interceptors](Interceptors.md)       +Up: [Index](Readme.md)       +Next: [Coeffects](Coeffects.md) + +--- ### Builtin Effect Handlers diff --git a/docs/Interceptors.md b/docs/Interceptors.md index 4625e77..3bd6024 100644 --- a/docs/Interceptors.md +++ b/docs/Interceptors.md @@ -337,6 +337,11 @@ __4.__ Interceptors do interesting things: In the next Tutorial, we'll look at (side) Effects in more depth. Later again, we'll look at Coeffects. +--- +Previous: [Interceptors](Interceptors.md)       +Up: [Index](Readme.md)       +Next: [Effects](Effects.md) + ## Appendix diff --git a/docs/README.md b/docs/README.md index 73152e6..5d14b6b 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,7 +7,7 @@ ## Understanding Event Handlers: -1. [EffectfulEvents](EffectfulEvents.md) +1. [Effectful Handlers](EffectfulHandlers.md) 2. [Interceptors](Interceptors.md) 3. [Effects](Effects.md) 4. [CoEffects](coeffects.md)