blob: c94d786117f58c46fb9ed07d87c4902c20f62de0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import {OPEN_SIMULATION_SUCCEEDED} from "../actions/simulations";
import {FETCH_LATEST_DATACENTER_SUCCEEDED, RESET_CURRENT_DATACENTER} from "../actions/topology/building";
export function currentDatacenterId(state = -1, action) {
switch (action.type) {
case FETCH_LATEST_DATACENTER_SUCCEEDED:
return action.datacenterId;
case RESET_CURRENT_DATACENTER:
return -1;
default:
return state;
}
}
export function currentSimulationId(state = -1, action) {
switch (action.type) {
case OPEN_SIMULATION_SUCCEEDED:
return action.id;
default:
return state;
}
}
|