mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
34 lines
611 B
JavaScript
34 lines
611 B
JavaScript
import {combineReducers} from 'redux';
|
|
import {MODAL_WORKSPACE_RENAME} from '../../lib/constants';
|
|
import {show} from './modals';
|
|
|
|
export const WORKSPACE_ACTIVATE = 'workspaces/activate';
|
|
|
|
// ~~~~~~~~ //
|
|
// REDUCERS //
|
|
// ~~~~~~~~ //
|
|
|
|
function activeReducer (state = null, action) {
|
|
switch (action.type) {
|
|
|
|
case WORKSPACE_ACTIVATE:
|
|
return action.workspace._id;
|
|
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export default combineReducers({
|
|
activeId: activeReducer
|
|
});
|
|
|
|
|
|
// ~~~~~~~ //
|
|
// ACTIONS //
|
|
// ~~~~~~~ //
|
|
|
|
export function activate (workspace) {
|
|
return {type: WORKSPACE_ACTIVATE, workspace};
|
|
}
|