-
Notifications
You must be signed in to change notification settings - Fork 374
Expand file tree
/
Copy pathuseCreateThreadContext.ts
More file actions
55 lines (50 loc) · 1.38 KB
/
useCreateThreadContext.ts
File metadata and controls
55 lines (50 loc) · 1.38 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
import { ThreadState } from 'stream-chat';
import type { ThreadContextValue } from '../../../contexts/threadContext/ThreadContext';
import { useStateStore } from '../../../hooks';
const selector = (nextValue: ThreadState) =>
({
isLoadingNext: nextValue.pagination.isLoadingNext,
isLoadingPrev: nextValue.pagination.isLoadingPrev,
latestReplies: nextValue.replies,
}) as const;
export const useCreateThreadContext = ({
allowThreadMessagesInChannel,
onBackPressThread,
closeThread,
loadMoreThread,
openThread,
reloadThread,
setThreadLoadingMore,
thread,
threadHasMore,
threadInstance,
threadLoadingMore,
threadMessages,
}: ThreadContextValue) => {
const { isLoadingNext, isLoadingPrev, latestReplies } =
useStateStore(threadInstance?.state, selector) ?? {};
const contextAdapter = threadInstance
? {
loadMoreRecentThread: threadInstance.loadNextPage,
loadMoreThread: threadInstance.loadPrevPage,
threadInstance,
threadLoadingMore: isLoadingPrev,
threadLoadingMoreRecent: isLoadingNext,
threadMessages: latestReplies ?? [],
}
: {};
return {
allowThreadMessagesInChannel,
onBackPressThread,
closeThread,
loadMoreThread,
openThread,
reloadThread,
setThreadLoadingMore,
thread,
threadHasMore,
threadLoadingMore,
threadMessages,
...contextAdapter,
};
};