This repository was archived by the owner on Oct 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMain.elm
More file actions
302 lines (256 loc) · 8.17 KB
/
Main.elm
File metadata and controls
302 lines (256 loc) · 8.17 KB
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
module Main exposing (..)
import Html exposing (Html, div, text, button)
import Html.Events exposing (onClick)
import Html.Attributes exposing (value)
import Task exposing (Task)
import Json.Decode
import Dict exposing (Dict)
import Firebase
import Firebase.Errors exposing (Error)
import Firebase.Database
import Firebase.Database.Query
import Firebase.Database.Reference
import Firebase.Database.Snapshot
import Firebase.Database.Types exposing (Database, Query, Reference, Snapshot)
import Firebase.Authentication
import Firebase.Authentication.User
import Firebase.Authentication.Types exposing (Auth, User)
-- Entry Point
main =
let
subscriptions : Model -> Sub Msg
subscriptions model =
let
subscribeToReference : List (Sub Msg)
subscribeToReference =
if model.subscription then
[ Firebase.Database.Reference.on "value" model.subRef SubscriptionChange ]
else
[]
subscribeToQuery : List (Sub Msg)
subscribeToQuery =
[ Firebase.Database.Query.on "value" model.subQuery CollectionQuery ]
in
Sub.batch
(List.append subscribeToReference subscribeToQuery)
in
Html.programWithFlags
{ init = init
, update = update
, subscriptions = subscriptions
, view = view
}
-- Model
type alias Model =
{ app : Firebase.App
, demo : Maybe String
, test : Maybe { foo : String }
, collection : Maybe (Dict String Int)
, subscription : Bool
, subRef : Reference
, subQuery : Query
, currentUser : Maybe User
}
type alias Flags =
{ apiKey : String
, authDomain : String
, databaseURL : String
, storageBucket : String
, messagingSenderId : String
, projectId : String
}
initialModel : Flags -> Model
initialModel firebaseConfig =
let
app : Firebase.App
app =
Firebase.init firebaseConfig
database : Database
database =
app
|> Firebase.Database.init
subRef : Reference
subRef =
database
|> Firebase.Database.ref (Just "subscriptionTest")
subQuery : Query
subQuery =
database
|> Firebase.Database.ref (Just "collection")
|> Firebase.Database.Reference.orderByValue
|> Firebase.Database.Query.limitToLast 3
in
{ app = app
, demo = Nothing
, test = Nothing
, collection = Nothing
, subscription = True
, subRef = subRef
, subQuery = subQuery
, currentUser = Nothing
}
init : Flags -> ( Model, Cmd Msg )
init flags =
let
model : Model
model =
initialModel flags
ref : Reference
ref =
model.app
|> Firebase.Database.init
|> Firebase.Database.ref (Just "demo")
in
( model
, Task.perform ReadDemo (Firebase.Database.Reference.once "value" ref)
)
-- Update
type Msg
= ReadDemo Snapshot
| SubscriptionChange Snapshot
| ToggleSubscription
| CollectionQuery Snapshot
| SignInAnonymously
| SignedIn (Result Error User)
| SignOut
| GetApp
| NoOp ()
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
ReadDemo snapshot ->
let
demo : Maybe String
demo =
snapshot
|> Firebase.Database.Snapshot.value
|> Json.Decode.decodeValue (Json.Decode.string)
|> Result.withDefault ""
|> Just
in
( { model | demo = demo }
, Cmd.none
)
SubscriptionChange snapshot ->
let
value : Maybe { foo : String }
value =
let
decoder =
Json.Decode.map
assembleFooObj
(Json.Decode.field "foo" Json.Decode.string)
assembleFooObj foo =
{ foo = foo }
in
snapshot
|> Firebase.Database.Snapshot.value
|> Json.Decode.decodeValue decoder
|> Result.toMaybe
in
( { model | test = value }
, Cmd.none
)
ToggleSubscription ->
( { model | subscription = not model.subscription }
, Cmd.none
)
CollectionQuery snapshot ->
let
value : Maybe (Dict String Int)
value =
let
decoder =
(Json.Decode.dict Json.Decode.int)
in
snapshot
|> Firebase.Database.Snapshot.value
|> Json.Decode.decodeValue decoder
|> Result.toMaybe
in
( { model | collection = value }
, Cmd.none
)
SignInAnonymously ->
let
auth : Auth
auth =
model.app
|> Firebase.Authentication.init
in
( model
, Task.attempt SignedIn (Firebase.Authentication.signInAnonymously auth)
)
SignedIn (Ok user) ->
( { model | currentUser = Just user }
, Cmd.none
)
SignedIn (Err err) ->
let
_ =
Debug.log "SignedIn.fail" err
in
( { model | currentUser = Nothing }
, Cmd.none
)
SignOut ->
let
auth : Auth
auth =
model.app
|> Firebase.Authentication.init
in
( { model | currentUser = Nothing }
, Task.perform NoOp (Firebase.Authentication.signOut auth)
)
GetApp ->
let
_ =
Debug.log "Firebase app" (Firebase.app ())
in
update (NoOp ()) model
NoOp _ ->
( model
, Cmd.none
)
-- View
view : Model -> Html Msg
view model =
div
[]
[ div [] [ text ("Firebase " ++ Firebase.sdkVersion ++ " basic api test") ]
, div [] [ text ("App.name = " ++ (Firebase.name model.app)) ]
, div [] [ text ("App.options = " ++ (toString (Firebase.options model.app))) ]
, div [] [ text ("Number of firebase apps = " ++ (toString <| List.length (Firebase.apps ()))) ]
, div [] [ text ("Demo value = " ++ (toString model.demo)) ]
, div [] [ text ("Subscription value = " ++ (toString model.test)) ]
, button
[ onClick ToggleSubscription
]
[ text
("Turn subscription "
++ (if model.subscription then
"Off"
else
"On"
)
)
]
, div [] [ text ("Collection query = " ++ (toString model.collection)) ]
, viewSignIn model.currentUser
, button
[ onClick GetApp ]
[ text "Check console for current app" ]
]
viewSignIn : Maybe User -> Html Msg
viewSignIn maybeUser =
case maybeUser of
Just user ->
div
[]
[ div [] [ text "Successfully authenticated" ]
, div [] [ text ("Is anonymous? " ++ (toString (Firebase.Authentication.User.isAnonymous user))) ]
, button [ onClick SignOut ] [ text "Sign out" ]
]
Nothing ->
button [ onClick SignInAnonymously ] [ text "Sign in anonymously" ]