forked from berty/berty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhooks.ts
368 lines (318 loc) · 9.68 KB
/
hooks.ts
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
import { useContext, useMemo, useEffect, useCallback, EffectCallback } from 'react'
import { useNavigation } from '@react-navigation/native'
import beapi from '@berty-tech/api'
import { pbDateToNum } from '@berty-tech/components/helpers'
import { MessengerActions } from '@berty-tech/store/context'
import { MsgrContext, useMsgrContext, NotificationsInhibitor } from './context'
import { fakeContacts, fakeMultiMemberConversations, fakeMessages } from './faker'
import { ParsedInteraction } from './types.gen'
export { useMsgrContext }
export type Maybe<T> = T | null | undefined
export const useGetMessage = (id: Maybe<string>, convId: Maybe<string>) => {
const ctx = useContext(MsgrContext)
const intes = ctx.interactions[convId as string]
if (!intes) {
return undefined
}
return intes[id as string]
}
export const useFirstConversationWithContact = (contactPk: Maybe<string>) => {
const ctx = useContext(MsgrContext)
const conversations = ctx.conversations
const contact = ctx.contacts[contactPk as string]
if (!contact) {
return undefined
}
return conversations[contact.conversationPublicKey as string]
}
export const useAccount = () => {
const ctx = useMsgrContext()
return ctx.account
}
export const useClient = () => {
const ctx = useMsgrContext()
return ctx.client
}
export const useOneToOneContact = (convPk: Maybe<string>) => {
const conv = useConversation(convPk)
return useContact(conv?.contactPublicKey)
}
export const useContact = (contactPk: Maybe<string>) => {
const ctx = useMsgrContext()
if (!contactPk) {
return undefined
}
return ctx.contacts[contactPk]
}
export const useContacts = () => {
const ctx = useMsgrContext()
return ctx.contacts
}
export const useContactList = () => {
const contacts = useContacts()
return Object.values(contacts) as beapi.messenger.IContact[]
}
const ContactState = beapi.messenger.Contact.State
export const useIncomingContactRequests = () => {
const contacts = useContactList()
return useMemo(() => contacts.filter((c) => c.state === ContactState.IncomingRequest), [contacts])
}
export const useOutgoingContactRequests = () => {
const contacts = useContactList()
return useMemo(
() =>
contacts.filter(
(c) =>
c.state &&
[ContactState.OutgoingRequestEnqueued, ContactState.OutgoingRequestSent].includes(
c.state,
),
),
[contacts],
)
}
export const useAccountContactSearchResults = (searchText: Maybe<string>) => {
const contacts = useContactList()
if (!searchText) {
return []
}
return contacts.filter((contact) =>
contact.displayName?.toLowerCase().includes(searchText.toLowerCase()),
)
}
export const useConversationList = () => {
const ctx = useMsgrContext()
return Object.values(ctx.conversations) as beapi.messenger.IConversation[]
}
export const useSortedConversationList = () => {
const convs = useConversationList()
return useMemo(
() =>
convs.sort(
(a, b) =>
pbDateToNum(b.lastUpdate || b.createdDate) - pbDateToNum(a.lastUpdate || a.createdDate),
),
[convs],
)
}
export const useConversation = (publicKey: Maybe<string>) => {
const ctx = useMsgrContext()
if (!publicKey) {
return undefined
}
return ctx.conversations[publicKey]
}
export const useConvInteractions = (publicKey: Maybe<string>) => {
const ctx = useMsgrContext()
return ctx.interactions[publicKey as string] || {}
}
export const useConvInteractionsList = (publicKey: Maybe<string>) => {
const intes = useConvInteractions(publicKey)
return Object.values(intes) as ParsedInteraction[]
}
export const useSortedConvInteractions = (publicKey: Maybe<string>) => {
const intes = useConvInteractionsList(publicKey)
return intes.sort((a, b) => pbDateToNum(a.sentDate) - pbDateToNum(b.sentDate))
}
export const useInteraction = (cid: Maybe<string>, convPk: Maybe<string>) => {
const intes = useConvInteractions(convPk)
return intes[cid as string]
}
export const useConversationsCount = () => {
return useConversationList().length
}
export const useConvMembers = (publicKey: Maybe<string>) => {
const ctx = useMsgrContext()
return ctx.members[publicKey as string] || {}
}
export const useMember = <
T extends { publicKey: Maybe<string>; conversationPublicKey: Maybe<string> }
>(
props: T,
) => {
const { publicKey, conversationPublicKey } = props
const members = useConvMembers(conversationPublicKey)
return members[publicKey as string]
}
export const useConvMemberList = (publicKey: Maybe<string>) => {
const members = useConvMembers(publicKey)
return Object.values(members) as beapi.messenger.IMember[]
}
export const usePersistentOptions = () => {
const ctx = useMsgrContext()
return ctx.persistentOptions || {}
}
export const useRestart = () => {
const ctx = useMsgrContext()
return useCallback(() => ctx.dispatch({ type: MessengerActions.Restart }), [ctx])
}
export const useDeleteAccount = () => {
const ctx = useMsgrContext()
return useCallback(() => ctx.dispatch({ type: MessengerActions.SetStateDeleting }), [ctx])
}
export const useSwitchToAccount = () => {
const ctx = useMsgrContext()
return useCallback(
(accountID) => ctx.dispatch({ type: MessengerActions.SetNextAccount, payload: accountID }),
[ctx],
)
}
//
// Fake data generation
//
// Generate n fake conversations with n fake contacts, one UserMessage per conv
export const useGenerateFakeContacts = () => {
const ctx = useMsgrContext()
const prevFakeCount: number = Object.values(ctx.contacts).reduce(
(r, c) => ((c as any).fake ? r + 1 : r),
0,
)
return (length = 10) => {
const payload = fakeContacts(length, prevFakeCount)
ctx.dispatch({
type: MessengerActions.AddFakeData,
payload,
})
}
}
export const useGenerateFakeMultiMembers = () => {
const ctx = useMsgrContext()
const prevFakeCount = Object.values(ctx.conversations).reduce(
(r, c) =>
(c as any).fake && c?.type === beapi.messenger.Conversation.Type.MultiMemberType ? r + 1 : r,
0,
)
return (length = 10) => {
const payload = fakeMultiMemberConversations(length, prevFakeCount)
ctx.dispatch({
type: MessengerActions.AddFakeData,
payload,
})
}
}
// Generate n fake messages for all fake conversations
export const useGenerateFakeMessages = () => {
const ctx = useMsgrContext()
const fakeConversationList = useConversationList().filter((c) => (c as any).fake === true)
const fakeMembersListList = fakeConversationList.map((conv) =>
Object.values(ctx.members[conv.publicKey || ''] || {}).filter((member: any) => member.fake),
)
console.log('fakeConvCount', fakeConversationList.length)
const prevFakeCount: number = fakeConversationList.reduce(
(r, fakeConv) =>
Object.values(ctx.interactions[fakeConv.publicKey || ''] || {}).reduce(
(r2, inte) => ((inte as any).fake ? r2 + 1 : r2),
r,
),
0,
)
console.log('prevFakeCount', prevFakeCount)
return (length = 10) => {
ctx.dispatch({
type: MessengerActions.AddFakeData,
payload: {
interactions: fakeMessages(
length,
fakeConversationList,
fakeMembersListList,
prevFakeCount,
),
},
})
}
}
// Delete all fake data
export const useDeleteFakeData = () => {
const ctx = useMsgrContext()
return () =>
ctx.dispatch({
type: MessengerActions.DeleteFakeData,
})
}
export type SortedConvsFilter = Parameters<
ReturnType<typeof useSortedConvInteractions>['filter']
>[0]
export const useLastConvInteraction = (
convPublicKey: Maybe<string>,
filterFunc?: Maybe<SortedConvsFilter>,
) => {
let intes = useSortedConvInteractions(convPublicKey)
if (filterFunc) {
intes = intes.filter(filterFunc)
}
if (intes.length <= 0) {
return null
}
return intes[intes.length - 1]
}
const useDispatch = () => {
const ctx = useMsgrContext()
return ctx.dispatch
}
export const useNotificationsInhibitor = (inhibitor: Maybe<NotificationsInhibitor>) => {
const dispatch = useDispatch()
const navigation = useNavigation()
useMountEffect(() => {
if (!inhibitor) {
return
}
const inhibit = () =>
dispatch({ type: MessengerActions.AddNotificationInhibitor, payload: { inhibitor } })
const revert = () =>
dispatch({ type: MessengerActions.RemoveNotificationInhibitor, payload: { inhibitor } })
const unsubscribeBlur = navigation.addListener('blur', revert)
const unsubscribeFocus = navigation.addListener('focus', inhibit)
inhibit()
return () => {
unsubscribeFocus()
unsubscribeBlur()
revert()
}
})
}
export const useReadEffect = (publicKey: Maybe<string>, timeout: Maybe<number>) => {
// timeout is the duration (in ms) that the user must stay on the page to set messages as read
const navigation = useNavigation()
const ctx = useMsgrContext()
const conv = useConversation(publicKey)
const fake = (conv && (conv as any).fake) || false
useEffect(() => {
if (fake) {
return
}
let timeoutID: ReturnType<typeof setTimeout> | null = null
const handleStart = () => {
if (timeoutID === null) {
let t = timeout
if (typeof t !== 'number') {
t = 1000
}
timeoutID = setTimeout(() => {
timeoutID = null
ctx.client?.conversationOpen({ groupPk: publicKey }).catch((err: unknown) => {
console.warn('failed to open conversation,', err)
})
}, t)
}
}
handleStart()
const unsubscribeFocus = navigation.addListener('focus', handleStart)
const handleStop = () => {
if (timeoutID !== null) {
clearTimeout(timeoutID)
timeoutID = null
}
ctx.client?.conversationClose({ groupPk: publicKey }).catch((err: unknown) => {
console.warn('failed to close conversation,', err)
})
}
const unsubscribeBlur = navigation.addListener('blur', handleStop)
return () => {
unsubscribeFocus()
unsubscribeBlur()
handleStop()
}
}, [ctx.client, fake, navigation, publicKey, timeout])
}
// eslint-disable-next-line react-hooks/exhaustive-deps
export const useMountEffect = (effect: EffectCallback) => useEffect(effect, [])