Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3391159
D11578.id39314.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D11578.id39314.diff
View Options
diff --git a/lib/reducers/thread-activity-reducer.js b/lib/reducers/thread-activity-reducer.js
--- a/lib/reducers/thread-activity-reducer.js
+++ b/lib/reducers/thread-activity-reducer.js
@@ -17,6 +17,7 @@
import { deleteKeyserverAccountActionTypes } from '../actions/user-actions.js';
import { extractKeyserverIDFromID } from '../keyserver-conn/keyserver-call-utils.js';
import { setNewSessionActionType } from '../keyserver-conn/keyserver-conn-types.js';
+import { threadActivityStoreOpsHandlers } from '../ops/thread-activity-store-ops.js';
import type { BaseAction } from '../types/redux-types.js';
import { incrementalStateSyncActionType } from '../types/socket-types.js';
import type { ThreadActivityStore } from '../types/thread-activity-types.js';
@@ -25,33 +26,43 @@
import type { ClientUpdateInfo } from '../types/update-types.js';
import { processUpdatesActionType } from '../types/update-types.js';
+const { processStoreOperations: processStoreOps } =
+ threadActivityStoreOpsHandlers;
+
function reduceThreadActivity(
state: ThreadActivityStore,
action: BaseAction,
): ThreadActivityStore {
if (action.type === updateThreadLastNavigatedActionType) {
const { threadID, time } = action.payload;
- const updatedThreadActivityStore = {
- ...state,
- [threadID]: {
- ...state[threadID],
- lastNavigatedTo: time,
+ const replaceOperation = {
+ type: 'replace_thread_activity_entry',
+ payload: {
+ id: threadID,
+ threadActivityStoreEntry: {
+ ...state[threadID],
+ lastNavigatedTo: time,
+ },
},
};
- return updatedThreadActivityStore;
+ return processStoreOps(state, [replaceOperation]);
} else if (action.type === messageStorePruneActionType) {
const now = Date.now();
- let updatedThreadActivityStore = { ...state };
+ const replaceOperations = [];
for (const threadID: string of action.payload.threadIDs) {
- updatedThreadActivityStore = {
- ...updatedThreadActivityStore,
- [threadID]: {
- ...updatedThreadActivityStore[threadID],
- lastPruned: now,
+ const replaceOperation = {
+ type: 'replace_thread_activity_entry',
+ payload: {
+ id: threadID,
+ threadActivityStoreEntry: {
+ ...state[threadID],
+ lastPruned: now,
+ },
},
};
+ replaceOperations.push(replaceOperation);
}
- return updatedThreadActivityStore;
+ return processStoreOps(state, replaceOperations);
} else if (
action.type === joinThreadActionTypes.success ||
action.type === leaveThreadActionTypes.success ||
@@ -77,45 +88,62 @@
return state;
}
- let updatedState = { ...state };
+ const threadIDsToRemove = [];
for (const update: ClientUpdateInfo of deleteThreadUpdates) {
invariant(
update.type === updateTypes.DELETE_THREAD,
'update must be of type DELETE_THREAD',
);
- const { [update.threadID]: _, ...stateSansRemovedThread } = updatedState;
- updatedState = stateSansRemovedThread;
+ threadIDsToRemove.push(update.threadID);
}
- return updatedState;
+ const removeOperation = {
+ type: 'remove_thread_activity_entries',
+ payload: {
+ ids: threadIDsToRemove,
+ },
+ };
+ return processStoreOps(state, [removeOperation]);
} else if (action.type === deleteKeyserverAccountActionTypes.success) {
- let updatedState = { ...state };
+ const threadIDsToRemove = [];
const keyserverIDsSet = new Set<string>(action.payload.keyserverIDs);
for (const threadID in state) {
if (!keyserverIDsSet.has(extractKeyserverIDFromID(threadID))) {
continue;
}
- const { [threadID]: _, ...stateSansRemovedThread } = updatedState;
- updatedState = stateSansRemovedThread;
+ threadIDsToRemove.push(threadID);
}
- return updatedState;
+ const removeOperation = {
+ type: 'remove_thread_activity_entries',
+ payload: {
+ ids: threadIDsToRemove,
+ },
+ };
+
+ return processStoreOps(state, [removeOperation]);
} else if (
action.type === setNewSessionActionType &&
action.payload.sessionChange.cookieInvalidated
) {
+ const threadIDsToRemove = [];
const { keyserverID } = action.payload;
- let updatedState = { ...state };
for (const threadID in state) {
if (extractKeyserverIDFromID(threadID) !== keyserverID) {
continue;
}
- const { [threadID]: _, ...stateSansRemovedThread } = updatedState;
- updatedState = stateSansRemovedThread;
+ threadIDsToRemove.push(threadID);
}
- return updatedState;
+ const removeOperation = {
+ type: 'remove_thread_activity_entries',
+ payload: {
+ ids: threadIDsToRemove,
+ },
+ };
+
+ return processStoreOps(state, [removeOperation]);
}
return state;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 1, 2:34 AM (21 h, 47 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2603367
Default Alt Text
D11578.id39314.diff (4 KB)
Attached To
Mode
D11578: [lib] refactor thread activity reducer to use sqlite operations
Attached
Detach File
Event Timeline
Log In to Comment