-
Notifications
You must be signed in to change notification settings - Fork 30
/
drawer-utils.react.js
129 lines (117 loc) · 3.8 KB
/
drawer-utils.react.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
// @flow
import * as React from 'react';
import { values } from './objects.js';
import { threadInFilterList, threadIsChannel } from '../shared/thread-utils.js';
import type {
ResolvedThreadInfo,
ThreadInfo,
RawThreadInfo,
} from '../types/minimally-encoded-thread-permissions-types.js';
import { communitySubthreads } from '../types/thread-types-enum.js';
type WritableCommunityDrawerItemData<T> = {
threadInfo: ResolvedThreadInfo,
itemChildren: Array<WritableCommunityDrawerItemData<T>>,
hasSubchannelsButton: boolean,
labelStyle: T,
};
export type CommunityDrawerItemData<T> = $ReadOnly<{
...WritableCommunityDrawerItemData<T>,
+itemChildren: $ReadOnlyArray<CommunityDrawerItemData<T>>,
}>;
function compareCommunityDrawerItemData<T>(
a: CommunityDrawerItemData<T>,
b: CommunityDrawerItemData<T>,
): number {
return a.threadInfo.uiName.localeCompare(b.threadInfo.uiName);
}
function createRecursiveDrawerItemsData<LabelStyleType>(
childThreadInfosMap: {
+[id: string]: $ReadOnlyArray<ResolvedThreadInfo>,
},
communities: $ReadOnlyArray<ResolvedThreadInfo>,
labelStyles: $ReadOnlyArray<LabelStyleType>,
maxDepth: number,
): $ReadOnlyArray<CommunityDrawerItemData<LabelStyleType>> {
const result: Array<WritableCommunityDrawerItemData<LabelStyleType>> =
communities.map(community => ({
threadInfo: community,
itemChildren: [],
labelStyle: labelStyles[0],
hasSubchannelsButton: false,
}));
result.sort(compareCommunityDrawerItemData);
let queue = result.map(item => [item, 0]);
for (let i = 0; i < queue.length; i++) {
const [item, lvl] = queue[i];
const itemChildThreadInfos = childThreadInfosMap[item.threadInfo.id] ?? [];
if (lvl < maxDepth) {
item.itemChildren = itemChildThreadInfos
.filter(childItem => communitySubthreads.includes(childItem.type))
.map(childItem => ({
threadInfo: childItem,
itemChildren: [],
labelStyle: labelStyles[Math.min(lvl + 1, labelStyles.length - 1)],
hasSubchannelsButton:
lvl + 1 === maxDepth &&
threadHasSubchannels(childItem, childThreadInfosMap),
}));
item.itemChildren.sort(compareCommunityDrawerItemData);
queue = queue.concat(
item.itemChildren.map(childItem => [childItem, lvl + 1]),
);
}
}
return result;
}
function threadHasSubchannels(
threadInfo: ResolvedThreadInfo,
childThreadInfosMap: {
+[id: string]: $ReadOnlyArray<ResolvedThreadInfo>,
},
): boolean {
if (!childThreadInfosMap[threadInfo.id]?.length) {
return false;
}
return childThreadInfosMap[threadInfo.id].some(thread =>
threadIsChannel(thread),
);
}
function useAppendCommunitySuffix(
communities: $ReadOnlyArray<ResolvedThreadInfo>,
): $ReadOnlyArray<ResolvedThreadInfo> {
return React.useMemo(() => {
const result: ResolvedThreadInfo[] = [];
const names = new Map<string, number>();
for (const chat of communities) {
let name = chat.uiName;
const numberOfOccurrences = names.get(name);
names.set(name, (numberOfOccurrences ?? 0) + 1);
if (numberOfOccurrences) {
name = `${name} (${numberOfOccurrences.toString()})`;
}
result.push({ ...chat, uiName: name });
}
return result;
}, [communities]);
}
function filterThreadIDsBelongingToCommunity(
communityID: string,
threadInfosObj: {
+[id: string]: RawThreadInfo | ThreadInfo,
},
): $ReadOnlySet<string> {
const threadInfos = values(threadInfosObj);
const threadIDs = threadInfos
.filter(
thread =>
(thread.community === communityID || thread.id === communityID) &&
threadInFilterList(thread),
)
.map(item => item.id);
return new Set(threadIDs);
}
export {
createRecursiveDrawerItemsData,
useAppendCommunitySuffix,
filterThreadIDsBelongingToCommunity,
};