-
Notifications
You must be signed in to change notification settings - Fork 2
/
IndexedDB.elm
219 lines (156 loc) · 4.57 KB
/
IndexedDB.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
port module IndexedDB exposing
( DB
, GetResult
, ObjectStore
, OpenResponse(..)
, PutResult
, Query(..)
, createObjectStore
, createObjectStoreResult
, get
, getResult
, openRequest
, openResponse
, put
, putResult
)
import Json.Decode as JD
import Json.Encode as JE
type OpenResponse
= Success
| UpgradeNeeded
| Error
type alias GetResult =
( ObjectStore, Query, JD.Value )
type alias DB =
String
type Query
= GetAll
| GetKey String
type alias ObjectStore =
{ db : DB
, name : String
}
type alias PutResult =
{ store : ObjectStore
, key : Maybe String
}
port putInternal : JE.Value -> Cmd msg
port putResultInternal : (JD.Value -> msg) -> Sub msg
putResult : (Result JD.Error PutResult -> msg) -> Sub msg
putResult msg =
putResultInternal (JD.decodeValue decodePutResult >> msg)
decodePutResult : JD.Decoder PutResult
decodePutResult =
JD.map2 PutResult
(JD.field "store" objectStoreDecoder)
(JD.field "key" (JD.nullable JD.string))
put : ObjectStore -> String -> JE.Value -> Cmd msg
put os key data =
JE.object
[ ( "db", JE.string os.db )
, ( "name", JE.string os.name )
, ( "data", data )
, ( "key", JE.string key )
]
|> putInternal
port getInternal : JE.Value -> Cmd msg
get : ObjectStore -> Query -> Cmd msg
get store query =
List.concat
[ [ ( "db", JE.string store.db )
, ( "name", JE.string store.name )
]
, case query of
GetKey key ->
[ ( "key", JE.string key ) ]
GetAll ->
[ ( "key", JE.null ) ]
]
|> JE.object
|> getInternal
port getResultInternal : (JD.Value -> msg) -> Sub msg
getResult : (Result JD.Error GetResult -> msg) -> Sub msg
getResult msg =
getResultInternal (JD.decodeValue resultDecoder >> msg)
resultDecoder : JD.Decoder GetResult
resultDecoder =
JD.map3
(\store query data -> ( store, query, data ))
(JD.field "store" objectStoreDecoder)
(JD.field "query" queryDecoder)
(JD.field "data" JD.value)
queryDecoder : JD.Decoder Query
queryDecoder =
JD.nullable JD.string
|> JD.andThen
(\maybe ->
case maybe of
Nothing ->
GetAll |> JD.succeed
Just key ->
GetKey key |> JD.succeed
)
port openResponseInternal : (JD.Value -> msg) -> Sub msg
port openRequestInternal : JE.Value -> Cmd msg
port createObjectStoreInternal : JE.Value -> Cmd msg
port createObjectStoreResultInternal : (JD.Value -> msg) -> Sub msg
createObjectStoreResult : (Result JD.Error ObjectStore -> msg) -> Sub msg
createObjectStoreResult msg =
createObjectStoreResultInternal (JD.decodeValue objectStoreDecoder >> msg)
objectStoreDecoder : JD.Decoder ObjectStore
objectStoreDecoder =
JD.map2
(\db name -> { db = db, name = name })
(JD.field "db" JD.string)
(JD.field "name" JD.string)
createObjectStore : DB -> String -> Cmd msg
createObjectStore db name =
JE.object
[ ( "db", JE.string db )
, ( "name", JE.string name )
]
|> createObjectStoreInternal
openRequest : DB -> Int -> Cmd msg
openRequest name version =
JE.object
[ ( "name", JE.string name )
, ( "version", JE.int version )
]
|> openRequestInternal
openResponse : (( DB, OpenResponse ) -> msg) -> Sub msg
openResponse msg =
openResponseInternal (decodeOpenResponse >> msg)
decodeOpenResponse : JD.Value -> ( DB, OpenResponse )
decodeOpenResponse v =
let
result : Result JD.Error ( DB, OpenResponse )
result =
JD.decodeValue
(JD.map2
Tuple.pair
(JD.at [ "name" ] JD.string)
(JD.at [ "result" ] decodeResult)
)
v
in
case result of
Err _ ->
( "could not get name", Error )
Ok ( db, response ) ->
( db, response )
decodeResult : JD.Decoder OpenResponse
decodeResult =
JD.string
|> JD.andThen
(\s ->
case s of
"success" ->
JD.succeed Success
"error" ->
JD.succeed Error
"upgrade-needed" ->
JD.succeed UpgradeNeeded
_ ->
JD.fail ("unknown response: " ++ s)
)