-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDecodeNestedList.elm
194 lines (146 loc) · 3.25 KB
/
DecodeNestedList.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
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
import String
-- 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
}
-- Types
type alias Model =
{ url : String
, result : (List Item)
, error : Bool
}
type alias Item =
{ name: String
, id: Int
}
-- MODEL
initialModel : Model
initialModel = {
url = ""
, result = []
, error = False
}
init : (Model, Cmd Msg)
init =
(initialModel, Cmd.none)
-- UPDATE
type Msg
= StoreURL String
| FetchData
| FetchSucceed (List Item)
| 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 results ->
({ model | result = results, error = False }, Cmd.none)
FetchFail _ ->
({ model | error = True }, Cmd.none)
-- VIEW
renderError : Html Msg
renderError =
p [] [ text "There was an error" ]
renderResult : Item -> Html Msg
renderResult item =
li [] [ text ( "Item " ++ (toString item.id) ++ ": " ++ item.name) ]
renderResults : Model -> Html Msg
renderResults model =
ul [] (List.map renderResult model.result)
view : Model -> Html Msg
view model =
let
response =
if model.error == True
then renderError
else renderResults model
in
div []
[ h1 [] [ text "Nested list"]
, p [] [ text "Here I want to each object nested inside of 'data'"]
, p [] [ text "Demo URL: https://api.myjson.com/bins/1mny6"]
, input [
placeholder "Enter a URL",
onInput StoreURL
] []
, button [ onClick FetchData ] [ text "Fetch!" ]
, 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 decoder url)
-- decoder
-- decode the contents of 'data' with nestedListDecoder
decoder: Json.Decoder (List Item)
decoder =
Json.at ["data"] (Json.list nestedListDecoder)
-- nestedListDecoder
-- get the name and id from each object
nestedListDecoder : Json.Decoder Item
nestedListDecoder =
Json.object2 Item
("name" := Json.string)
("id" := Json.int)