-
Notifications
You must be signed in to change notification settings - Fork 4
/
DecodeOddlyShapedObject.elm
195 lines (152 loc) · 3.52 KB
/
DecodeOddlyShapedObject.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
195
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 User =
{ id: Int
, name: String
, avatar: String
}
type alias Model =
{ url : String
, result : List User
, error : Bool
, message : String
}
initialModel : Model
initialModel = {
url = ""
, result = []
, error = False
, message = ""
}
init : (Model, Cmd Msg)
init =
(initialModel, Cmd.none)
-- UPDATE
type Msg
= StoreURL String
| FetchData
| FetchSucceed (List User)
| 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 members ->
({ model | result = members, error = False }, Cmd.none)
FetchFail err ->
({ model | error = True, message = toString err }, Cmd.none)
-- VIEW
renderMember members =
ul [] (List.map (\member ->
li [] [
text (toString(member.id) ++ ": " ++ member.name ++ " " ++ member.avatar)
]
) members)
view : Model -> Html Msg
view model =
let
response =
if model.error == True
then "There was an error"
else ""
in
div []
[ h1 [] [ text "Oddly shaped object"]
, p [] [ text "Here I want to grab every member's 'id', 'name' and path to their 'avatar' (nested in 'profile')"]
, p [] [ text "Demo URL: https://api.myjson.com/bins/yws2"]
, input [
placeholder "Enter a URL",
onInput StoreURL
] []
, button [ onClick FetchData ] [ text "Fetch!" ]
, p [] [ text response ]
, renderMember model.result
, 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 decodeMembersResponse url)
-- decodeMembersResponse
-- pluck out the members list from the makeRequest response
-- decode response with decodeMembers
decodeMembersResponse: Json.Decoder (List User)
decodeMembersResponse =
Json.at ["members"] (Json.list decodeMembers)
-- decodeMembers
-- pluck out the id, name, name and avatar for each member
decodeMembers : Json.Decoder User
decodeMembers =
Json.object3 User
("id" := Json.int)
("name" := Json.string)
("profile" := decodeAvatar)
-- decodeAvatar
-- pluck the avatar from profile
decodeAvatar : Json.Decoder String
decodeAvatar =
Json.at ["avatar"] Json.string