Page MenuHomePhabricator

D9664.id32598.diff
No OneTemporary

D9664.id32598.diff

diff --git a/lib/reducers/keyserver-reducer.js b/lib/reducers/keyserver-reducer.js
--- a/lib/reducers/keyserver-reducer.js
+++ b/lib/reducers/keyserver-reducer.js
@@ -3,10 +3,13 @@
import reduceConnectionInfo from './connection-reducer.js';
import reduceLastCommunicatedPlatformDetails from './last-communicated-platform-details-reducer.js';
import reduceUpdatesCurrentAsOf from './updates-reducer.js';
+import { addKeyserverActionType } from '../actions/keyserver-actions.js';
import { siweAuthActionTypes } from '../actions/siwe-actions.js';
import {
logInActionTypes,
resetUserStateActionType,
+ logOutActionTypes,
+ deleteAccountActionTypes,
} from '../actions/user-actions.js';
import type { KeyserverStore } from '../types/keyserver-types';
import type { BaseAction } from '../types/redux-types.js';
@@ -23,6 +26,27 @@
state: KeyserverStore,
action: BaseAction,
): KeyserverStore {
+ if (
+ action.type === logOutActionTypes.success ||
+ action.type === deleteAccountActionTypes.success ||
+ (action.type === setNewSessionActionType &&
+ action.payload.sessionChange.cookieInvalidated)
+ ) {
+ return {
+ keyserverInfos: {},
+ };
+ } else if (action.type === addKeyserverActionType) {
+ return {
+ ...state,
+ keyserverInfos: {
+ ...state.keyserverInfos,
+ [action.payload.keyserverAdminUserID]: {
+ ...action.payload.newKeyserverInfo,
+ },
+ },
+ };
+ }
+
// this action is only dispatched on native
if (action.type === resetUserStateActionType) {
const stateCookie = state.keyserverInfos[ashoatKeyserverID]?.cookie;

File Metadata

Mime Type
text/plain
Expires
Mon, Dec 2, 5:22 PM (21 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2608344
Default Alt Text
D9664.id32598.diff (1 KB)

Event Timeline