Last active
April 8, 2018 01:48
-
-
Save jasondew/d83343901d15b1e8c142 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Action | |
= Updated Response | |
| APIError Error | |
update : Action -> Model -> ( Model, Effects Action ) | |
update action model = | |
case action of | |
Updated response -> -- do things | |
APIError error -> | |
let | |
_ = | |
case error of | |
Http.Timeout -> | |
Debug.log "API timeout" error | |
Http.NetworkError -> | |
Debug.log "Network error contacting API" error | |
Http.UnexpectedPayload payload -> | |
Debug.log ("Unexpected payload from API: " ++ payload) error | |
Http.BadResponse status payload -> | |
Debug.log ("Unexpected status/payload from API: " ++ (toString status) ++ "/" ++ payload) error | |
in | |
( model, Effects.none ) | |
requestUpdate : Effects Action | |
requestUpdate = | |
Http.get decoder url | |
|> Task.map Updated | |
|> (flip Task.onError) (Task.succeed << APIError) | |
|> Effects.task |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment