-
Notifications
You must be signed in to change notification settings - Fork 4
/
DecodeSimpleString.elm
161 lines (126 loc) · 2.7 KB
/
DecodeSimpleString.elm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import Html exposing (..)
import Html.App as Html
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Http
import Json.Decode as Json exposing ((:=))
import Task
-- https://api.myjson.com/bins/yws2
-- {
-- "title": "This is an amazing title",
-- "data": [
-- {
-- "id": 1,
-- "name": "foo"
-- },
-- {
-- "id": 2,
-- "name": "bar"
-- },
-- {
-- "id": 3,
-- "name": "baz"
-- }
-- ],
-- "obj": {
-- "title": "I'm a nested object"
-- },
-- "members": [
-- {
-- "id": 4,
-- "name": "garply",
-- "profile": {
-- "avatar": "some_path_to_garply"
-- }
-- },
-- {
-- "id": 5,
-- "name": "waldo",
-- "profile": {
-- "avatar": "some_path_to_waldo"
-- }
-- },
-- {
-- "id": 6,
-- "name": "fred",
-- "profile": {
-- "avatar": "some_path_to_fred"
-- }
-- }
-- ]
-- }
main =
Html.program
{ init = init
, view = view
, update = update
, subscriptions = subscriptions
}
-- MODEL
type alias Model =
{ url : String
, result : String
, error : Bool
}
initialModel : Model
initialModel = {
url = ""
, result = ""
, error = False
}
init : (Model, Cmd Msg)
init =
(initialModel, Cmd.none)
-- UPDATE
type Msg
= StoreURL String
| FetchData
| FetchSucceed String
| FetchFail Http.Error
update : Msg -> Model -> (Model, Cmd Msg)
update action model =
case action of
StoreURL url ->
({ model | url = url }, Cmd.none)
FetchData ->
(model, makeRequest model.url)
FetchSucceed str ->
({ model | result = str, error = False }, Cmd.none)
FetchFail _ ->
({ model | error = True }, Cmd.none)
-- VIEW
view : Model -> Html Msg
view model =
let
response =
if model.error == True
then "There was an error"
else if model.result /= ""
then "I just found: " ++ model.result
else ""
in
div []
[ h1 [] [ text "Simple string"]
, p [] [ text "Here I want to grab the 'title'"]
, p [] [ text "Demo URL: https://api.myjson.com/bins/1mny6"]
, input [
placeholder "Enter a URL",
onInput StoreURL
] []
, button [ onClick FetchData ] [ text "Fetch!" ]
, p [] [ text response ]
, div [] [ text (toString model) ]
]
-- SUBSCRIPTIONS
subscriptions : Model -> Sub Msg
subscriptions model =
Sub.none
-- HTTP
makeRequest : String -> Cmd Msg
makeRequest url =
Task.perform FetchFail FetchSucceed (Http.get decodeTitle url)
-- decodeTitle
-- return the string from 'title'
decodeTitle : Json.Decoder String
decodeTitle =
Json.at ["title"] Json.string