Created
January 23, 2016 09:59
-
-
Save mkulke/8907fb2c9f03b45fd78d to your computer and use it in GitHub Desktop.
Elm: simple rest call
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
module Main where | |
import Html exposing (Html, text, p) | |
import Signal exposing (Address) | |
import Effects exposing (Effects, Never) | |
import Json.Decode as Json exposing ((:=)) | |
import StartApp exposing (start) | |
import Task | |
import Http | |
-- MAIN | |
app = start | |
{ init = init | |
, update = update | |
, view = view | |
, inputs = [] | |
} | |
main = | |
app.html | |
port tasks : Signal (Task.Task Never ()) | |
port tasks = | |
app.tasks | |
-- MODEL | |
type alias Model = String | |
init : (Model, Effects Action) | |
init = | |
("...", getName) | |
decodeName : Json.Decoder String | |
decodeName = | |
"name" := Json.string | |
userUrl : String | |
userUrl = "http://jsonplaceholder.typicode.com/users/1" | |
-- ACTION | |
type Action = NewUser (Maybe String) | |
-- EFFECTS | |
getName : Effects Action | |
getName = | |
Http.get decodeName userUrl | |
|> Task.toMaybe | |
|> Task.map NewUser | |
|> Effects.task | |
-- VIEW | |
view : Address Action -> Model -> Html | |
view address model = | |
p [] [ text model ] | |
-- UPDATE | |
update : Action -> Model -> (Model, Effects Action) | |
update action model = | |
let name maybeName = Maybe.withDefault "error" maybeName | |
in | |
case action of | |
NewUser maybeName -> (name maybeName, Effects.none) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment