Add navigation to docs pages

This commit is contained in:
Mike Thompson 2016-08-25 00:29:57 +10:00
parent 733ad218a2
commit 3d3c7a1ccd
4 changed files with 22 additions and 1 deletions

View File

@ -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 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 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. 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)

View File

@ -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 `re-frame.core/make-restore-fn` creates a checkpoint for re-frame state (including
registered handlers) to which you can return. registered handlers) to which you can return.
### Summary
XXX
---
Previous: [Interceptors](Interceptors.md)      
Up: [Index](Readme.md)      
Next: [Coeffects](Coeffects.md)
---
### Builtin Effect Handlers ### Builtin Effect Handlers

View File

@ -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. 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 ## Appendix

View File

@ -7,7 +7,7 @@
## Understanding Event Handlers: ## Understanding Event Handlers:
1. [EffectfulEvents](EffectfulEvents.md) 1. [Effectful Handlers](EffectfulHandlers.md)
2. [Interceptors](Interceptors.md) 2. [Interceptors](Interceptors.md)
3. [Effects](Effects.md) 3. [Effects](Effects.md)
4. [CoEffects](coeffects.md) 4. [CoEffects](coeffects.md)