Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3502701
D6461.id22584.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D6461.id22584.diff
View Options
diff --git a/web/selectors/calendar-selectors.js b/web/selectors/calendar-selectors.js
--- a/web/selectors/calendar-selectors.js
+++ b/web/selectors/calendar-selectors.js
@@ -1,12 +1,19 @@
// @flow
+import { createSelector } from 'reselect';
+
import {
useFilterThreadInfos as baseUseFilterThreadInfos,
useFilterThreadSearchIndex as baseUseFilterThreadSearchIndex,
} from 'lib/selectors/calendar-selectors.js';
+import { threadInfoSelector } from 'lib/selectors/thread-selectors.js';
import type SearchIndex from 'lib/shared/search-index.js';
+import { threadInFilterList } from 'lib/shared/thread-utils.js';
import type { FilterThreadInfo } from 'lib/types/filter-types.js';
+import type { ThreadInfo, RawThreadInfo } from 'lib/types/thread-types.js';
+import { values } from 'lib/utils/objects.js';
+import type { AppState } from '../redux/redux-setup.js';
import { useSelector } from '../redux/redux-utils.js';
function useFilterThreadInfos(): $ReadOnlyArray<FilterThreadInfo> {
@@ -19,4 +26,37 @@
return baseUseFilterThreadSearchIndex(calendarActive);
}
-export { useFilterThreadInfos, useFilterThreadSearchIndex };
+function filterThreadIDsBelongingToCommunity(
+ communityID: string,
+ threadInfosObj: { +[id: string]: ThreadInfo | RawThreadInfo },
+): $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);
+}
+
+const filterThreadIDsBelongingToCommunitySelector: (
+ state: AppState,
+) => ?$ReadOnlySet<string> = createSelector(
+ (state: AppState) => state.communityIDFilter,
+ threadInfoSelector,
+ (communityIDFilter: ?string, threadInfos: { +[id: string]: ThreadInfo }) => {
+ if (!communityIDFilter) {
+ return null;
+ }
+ return filterThreadIDsBelongingToCommunity(communityIDFilter, threadInfos);
+ },
+);
+
+export {
+ useFilterThreadInfos,
+ useFilterThreadSearchIndex,
+ filterThreadIDsBelongingToCommunitySelector,
+ filterThreadIDsBelongingToCommunity,
+};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 4:53 AM (18 h, 52 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2683623
Default Alt Text
D6461.id22584.diff (2 KB)
Attached To
Mode
D6461: [web] Add a selector fetching thread IDs according to COMMUNITIES calendar filter
Attached
Detach File
Event Timeline
Log In to Comment