X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f4012790be2404ce2f5b2594338fac43b1b9c59b..43a384e98b698de75f66dcc5a0241a1246ddd447:/src/store/auth/auth-reducer.ts diff --git a/src/store/auth/auth-reducer.ts b/src/store/auth/auth-reducer.ts index 1edcedee..03357526 100644 --- a/src/store/auth/auth-reducer.ts +++ b/src/store/auth/auth-reducer.ts @@ -13,40 +13,57 @@ export interface AuthState { apiToken?: string; sshKeys: SshKeyResource[]; sessions: Session[]; + localCluster: string; + homeCluster: string; + remoteHosts: { [key: string]: string }; } const initialState: AuthState = { user: undefined, apiToken: undefined, sshKeys: [], - sessions: [] + sessions: [], + localCluster: "", + homeCluster: "", + remoteHosts: {} }; export const authReducer = (services: ServiceRepository) => (state = initialState, action: AuthAction) => { return authActions.match(action, { SAVE_API_TOKEN: (token: string) => { - return {...state, apiToken: token}; + return { ...state, apiToken: token }; + }, + CONFIG: ({ config }) => { + return { + ...state, + localCluster: config.uuidPrefix, + remoteHosts: { ...config.remoteHosts, [config.uuidPrefix]: new URL(config.rootUrl).host }, + homeCluster: config.uuidPrefix + }; }, INIT: ({ user, token }) => { - return { ...state, user, apiToken: token }; + return { ...state, user, apiToken: token, homeCluster: user.uuid.substr(0, 5) }; }, LOGIN: () => { return state; }, LOGOUT: () => { - return {...state, apiToken: undefined}; + return { ...state, apiToken: undefined }; }, USER_DETAILS_SUCCESS: (user: User) => { - return {...state, user}; + return { ...state, user }; }, SET_SSH_KEYS: (sshKeys: SshKeyResource[]) => { - return {...state, sshKeys}; + return { ...state, sshKeys }; }, ADD_SSH_KEY: (sshKey: SshKeyResource) => { return { ...state, sshKeys: state.sshKeys.concat(sshKey) }; }, REMOVE_SSH_KEY: (uuid: string) => { - return { ...state, sshKeys: state.sshKeys.filter((sshKey) => sshKey.uuid !== uuid )}; + return { ...state, sshKeys: state.sshKeys.filter((sshKey) => sshKey.uuid !== uuid) }; + }, + SET_HOME_CLUSTER: (homeCluster: string) => { + return { ...state, homeCluster }; }, SET_SESSIONS: (sessions: Session[]) => { return { ...state, sessions }; @@ -59,7 +76,16 @@ export const authReducer = (services: ServiceRepository) => (state = initialStat ...state, sessions: state.sessions.filter( session => session.clusterId !== clusterId - )}; + ) + }; + }, + UPDATE_SESSION: (session: Session) => { + return { + ...state, + sessions: state.sessions.map( + s => s.clusterId === session.clusterId ? session : s + ) + }; }, default: () => state });