forked from ReactTraining/hooks-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.fake.js
413 lines (363 loc) · 10.1 KB
/
db.fake.js
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
// faking the firebase API to get as much as we need
import localforage from "localforage"
import { format } from "date-fns"
window.lf = localforage
window.clearFakeData = () => localforage.clear()
fakeStreamedData()
export const mode = "fake"
const FAKE_LATENCY = true
// const FAKE_LATENCY = false
const LF_KEY = "data"
const OPERATORS = {
"==": (field, value) => field === value,
"<": (field, value) => field < value,
">": (field, value) => field > value,
"<=": (field, value) => field <= value,
">=": (field, value) => field >= value
}
const subscriptions = {
doc: {}, // { [path]: [callback] }
collection: {}
}
function addSubscription(type, path, callback) {
const subs = subscriptions[type]
;(subs[path] || (subs[path] = [])).push(callback)
}
function removeSubscription(type, path, callback) {
const subs = subscriptions[type][path]
subs.splice(subs.indexOf(callback), 1)
}
function notify(type, path, action) {
const subs = subscriptions[type][path]
if (subs) {
subs.forEach(callback => callback(action))
}
}
////////////////////////////////////////////////////////////////////////////////
export function collection(path) {
const methods = {
onSnapshot,
where,
limit,
orderBy,
add,
get
}
let queries = []
let _limit = null
let _orderBy = null
let orderByDirection = "asc"
const makeWeirdSnapshot = values => {
const keys = Object.keys(values)
function forEach(iterator) {
keys.forEach(id => {
const value = values[id]
const data = () => value
const doc = { data, id }
iterator(doc)
})
}
return { forEach, size: keys.length }
}
const matchesQueries = record =>
queries.every(([field, operator, test]) =>
OPERATORS[operator](record[field], test)
)
const getPathRecords = lfData => {
const all = getObjValue(path, lfData)
let ids = []
ids = Object.keys(all).filter(key => matchesQueries(all[key]))
if (_orderBy) {
ids = ids.sort((a, b) => {
const x = all[a][_orderBy]
const y = all[b][_orderBy]
const one = orderByDirection === "desc" ? -1 : 1
return x < y ? -one : x > y ? one : 0
})
}
if (_limit) {
ids = ids.slice(0, _limit)
}
const records = ids.reduce((obj, id) => {
obj[id] = all[id]
return obj
}, {})
return records
}
async function get() {
const lfData = await localforage.getItem(LF_KEY)
const records = getPathRecords(lfData)
const snapshot = makeWeirdSnapshot(records)
await fakeLatency()
return snapshot
}
function where(...query) {
queries.push(query)
return methods
}
function limit(n) {
_limit = n
return methods
}
function orderBy(field, direction = "asc") {
_orderBy = field
orderByDirection = direction
return methods
}
async function add(record) {
const lfData = await localforage.getItem(LF_KEY)
const values = getObjValue(path, lfData)
const id = genId()
values[id] = record
await localforage.setItem(LF_KEY, lfData)
notify("collection", path, {
type: "ADD",
lfData,
record
})
return doc(`${path}/${id}`)
}
function onSnapshot(callback) {
const subscription = async action => {
switch (action.type) {
case "INIT": {
const lfData = await localforage.getItem(LF_KEY)
const records = getPathRecords(lfData)
const snapshot = makeWeirdSnapshot(records)
await fakeLatency()
callback(snapshot)
break
}
case "ADD":
case "UPDATE":
case "DELETE": {
if (!matchesQueries(action.record)) return
const records = getPathRecords(action.lfData)
const snapshot = makeWeirdSnapshot(records)
await fakeLatency()
callback(snapshot)
break
}
default: {
}
}
}
addSubscription("collection", path, subscription)
subscription({ type: "INIT" })
return () => {
callback = noop
removeSubscription("collection", path, subscription)
}
}
return methods
}
export function doc(path) {
function onSnapshot(callback) {
// don't want to return a promise to useEffect, so weird IIFE
;(async () => {
const doc = await getRecordAsWeirdDoc()
await fakeLatency()
callback(doc)
})()
return () => {
callback = noop
}
}
async function get() {
await fakeLatency()
return getRecordAsWeirdDoc()
}
async function set(updates) {
const segments = path.split("/")
const lfData = await localforage.getItem(LF_KEY)
const id = segments[segments.length - 1]
const collectionSegments = segments.slice(0, segments.length - 1)
const collectionPath = collectionSegments.join("")
const collection = getObjValue(collectionPath, lfData)
const record = collection[id]
collection[id] = { ...record, ...updates }
await localforage.setItem(LF_KEY, lfData)
await fakeLatency()
notify("collection", collectionPath, {
type: "UPDATE",
lfData,
record
})
}
async function _delete() {
const segments = path.split("/")
const lfData = await localforage.getItem(LF_KEY)
const id = segments[segments.length - 1]
const collectionSegments = segments.slice(0, segments.length - 1)
const collectionPath = collectionSegments.join("")
const collection = getObjValue(collectionPath, lfData)
const record = collection[id]
delete collection[id]
await localforage.setItem(LF_KEY, lfData)
await fakeLatency()
notify("collection", collectionPath, {
type: "DELETE",
lfData,
record
})
}
const getRecordAsWeirdDoc = async () => {
const lfData = await localforage.getItem(LF_KEY)
const record = getObjValue(path, lfData)
const id = getPathId(path)
return makeWeirdDoc(record, id)
}
return { get, set, onSnapshot, delete: _delete }
}
const makeWeirdDoc = (record, id) => {
const data = () => record
return { id, data, exists: !!record }
}
const noop = () => {}
let onAuthChangeHandler = noop
export function auth() {
function onAuthStateChanged(handler) {
onAuthChangeHandler = handler
localforage.getItem("auth").then(auth => {
if (auth) {
handler(auth)
} else {
localforage.removeItem("auth")
handler(null)
}
})
return () => (onAuthChangeHandler = noop)
}
async function createUserWithEmailAndPassword(email, password) {
const auth = { uid: "attendee" }
await populateLocalForage(auth)
await localforage.setItem("auth", auth)
await localforage.setItem("server:auth", auth)
onAuthChangeHandler(auth)
const user = { ...auth }
user.updateProfile = async updates => {
const auth = await localforage.getItem("auth")
const newAuth = { ...auth, ...updates }
await localforage.setItem("auth", newAuth)
await localforage.setItem("server:auth", auth)
return newAuth
}
return { user: user }
}
async function signInWithEmailAndPassword() {
const auth = await localforage.getItem("server:auth")
await localforage.setItem("auth", auth)
onAuthChangeHandler(auth)
}
async function signOut() {
await localforage.removeItem("auth")
onAuthChangeHandler(null)
}
return {
onAuthStateChanged,
signInWithEmailAndPassword,
createUserWithEmailAndPassword,
signOut
}
}
////////////////////////////////////////////////////////////////////////////////
async function populateLocalForage(user) {
const now = Date.now()
const hour = 3600000
const day = hour * 24
// users
const users = {
[user.uid]: {
uid: user.uid,
displayName: user.displayName,
photoURL: "/flex.jpg",
goal: 8000,
started: "2019-01-01"
},
ryan: {
uid: "ryan",
displayName: "Ryan Florence",
photoURL: "/ryan.jpg",
goal: 8000,
started: "2019-01-01"
},
michael: {
uid: "michael",
displayName: "Michael Jackson",
photoURL: "/michael.jpg",
goal: 8000,
started: "2019-01-01"
}
}
const userIds = Object.keys(users)
const posts = userIds
.map(uid => {
return Array.from({ length: 90 })
.map((_, index) => {
const timestamp = now - day * index
return {
createdAt: timestamp,
uid,
date: format(new Date(timestamp), "YYYY-MM-DD"),
minutes: Math.floor(Math.random() * 25) + 20,
message: `X3 Incinerator. Upped my weights on most things, finally made it through the burnout at the end!`
}
})
.reduce((obj, post) => {
if (Math.random() < 0.25) return obj
const id = genId()
obj[id] = post
return obj
}, {})
})
.reduce((table, posts) => ({ ...table, ...posts }), {})
await localforage.setItem(LF_KEY, { posts, users })
}
let count = 0
function fakeStreamedData() {
const userIds = ["ryan", "michael"]
Array.from({ length: 1000 }).forEach((_, index) => {
setTimeout(async () => {
const lfData = await localforage.getItem(LF_KEY)
if (!lfData) return
const record = {
createdAt: Date.now(),
uid: userIds[Math.floor(Math.random() * userIds.length)],
date: format(Date.now(), "YYYY-MM-DD"),
minutes: Math.floor(Math.random() * 25) + 20,
message: `FAKE DATA! YEAH! ` + ++count
}
lfData.posts[genId()] = record
localforage.setItem(LF_KEY, lfData)
notify("collection", "posts", {
type: "ADD",
lfData,
record
})
}, 10000 * index)
})
}
const genId = () =>
Math.random()
.toString(32)
.substr(2)
const getObjValue = (path, obj) =>
path.split("/").reduce((o, segment) => o[segment], obj)
const getPathId = path => path.split("/").reverse()[0]
let nextLatency
const fakeLatency = () => {
if (FAKE_LATENCY) {
return (
nextLatency ||
(nextLatency = new Promise(resolve => {
setTimeout(() => {
nextLatency = null
resolve()
}, Math.random() * 1000)
}))
)
} else {
return Promise.resolve()
}
}
export const db = { collection, doc }