Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3499835
D6457.id22174.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
D6457.id22174.diff
View Options
diff --git a/lib/types/filter-types.js b/lib/types/filter-types.js
--- a/lib/types/filter-types.js
+++ b/lib/types/filter-types.js
@@ -10,6 +10,9 @@
typeof calendarThreadFilterTypes,
>;
+export type CalendarCommunityFilter = {
+ +threadIDs: $ReadOnlyArray<string>,
+};
export type CalendarThreadFilter = {
+type: 'threads',
+threadIDs: $ReadOnlyArray<string>,
@@ -23,6 +26,8 @@
export const updateCalendarThreadFilter = 'UPDATE_CALENDAR_THREAD_FILTER';
export const clearCalendarThreadFilter = 'CLEAR_CALENDAR_THREAD_FILTER';
export const setCalendarDeletedFilter = 'SET_CALENDAR_DELETED_FILTER';
+export const updateCalendarCommunityFilter = 'UPDATE_CALENDAR_COMMUNITY_FILTER';
+export const clearCalendarCommunityFilter = 'CLEAR_CALENDAR_COMMUNITY_FILTER';
export type SetCalendarDeletedFilterPayload = {
+includeDeleted: boolean,
diff --git a/lib/types/redux-types.js b/lib/types/redux-types.js
--- a/lib/types/redux-types.js
+++ b/lib/types/redux-types.js
@@ -30,6 +30,7 @@
CalendarFilter,
CalendarThreadFilter,
SetCalendarDeletedFilterPayload,
+ CalendarCommunityFilter,
} from './filter-types';
import type { LifecycleState } from './lifecycle-state-types';
import type { LoadingStatus, LoadingInfo } from './loading-types';
@@ -679,6 +680,14 @@
+type: 'SET_CALENDAR_DELETED_FILTER',
+payload: SetCalendarDeletedFilterPayload,
}
+ | {
+ +type: 'UPDATE_CALENDAR_COMMUNITY_FILTER',
+ +payload: CalendarCommunityFilter,
+ }
+ | {
+ +type: 'CLEAR_CALENDAR_COMMUNITY_FILTER',
+ +payload: void,
+ }
| {
+type: 'UPDATE_SUBSCRIPTION_STARTED',
+payload?: void,
diff --git a/web/redux/redux-setup.js b/web/redux/redux-setup.js
--- a/web/redux/redux-setup.js
+++ b/web/redux/redux-setup.js
@@ -15,7 +15,10 @@
import type { DraftStore } from 'lib/types/draft-types';
import type { EnabledApps } from 'lib/types/enabled-apps';
import type { EntryStore } from 'lib/types/entry-types';
-import type { CalendarFilter } from 'lib/types/filter-types';
+import type {
+ CalendarFilter,
+ CalendarCommunityFilter,
+} from 'lib/types/filter-types';
import type { LifecycleState } from 'lib/types/lifecycle-state-types';
import type { LoadingStatus } from 'lib/types/loading-types';
import type { MessageStore } from 'lib/types/message-types';
@@ -57,6 +60,7 @@
updatesCurrentAsOf: number,
loadingStatuses: { [key: string]: { [idx: number]: LoadingStatus } },
calendarFilters: $ReadOnlyArray<CalendarFilter>,
+ communityFilter: ?CalendarCommunityFilter,
urlPrefix: string,
windowDimensions: WindowDimensions,
cookie?: void,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 12:17 AM (17 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2684105
Default Alt Text
D6457.id22174.diff (2 KB)
Attached To
Mode
D6457: [web] Add calendar filter type for displaying only one community
Attached
Detach File
Event Timeline
Log In to Comment