summaryrefslogtreecommitdiff
path: root/src/sagas/simulations.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/sagas/simulations.js')
-rw-r--r--src/sagas/simulations.js71
1 files changed, 40 insertions, 31 deletions
diff --git a/src/sagas/simulations.js b/src/sagas/simulations.js
index cf0358f9..9df4e4b5 100644
--- a/src/sagas/simulations.js
+++ b/src/sagas/simulations.js
@@ -1,42 +1,51 @@
-import {call, put} from "redux-saga/effects";
-import {addToStore} from "../actions/objects";
-import {addSimulationSucceeded, deleteSimulationSucceeded} from "../actions/simulations";
-import {addSimulation, deleteSimulation, getSimulation} from "../api/routes/simulations";
-import {fetchLatestDatacenter} from "./topology";
+import { call, put } from "redux-saga/effects";
+import { addToStore } from "../actions/objects";
+import {
+ addSimulationSucceeded,
+ deleteSimulationSucceeded
+} from "../actions/simulations";
+import {
+ addSimulation,
+ deleteSimulation,
+ getSimulation
+} from "../api/routes/simulations";
+import { fetchLatestDatacenter } from "./topology";
export function* onOpenSimulationSucceeded(action) {
- try {
- const simulation = yield call(getSimulation, action.id);
- yield put(addToStore("simulation", simulation));
+ try {
+ const simulation = yield call(getSimulation, action.id);
+ yield put(addToStore("simulation", simulation));
- yield fetchLatestDatacenter(action.id);
- } catch (error) {
- console.error(error);
- }
+ yield fetchLatestDatacenter(action.id);
+ } catch (error) {
+ console.error(error);
+ }
}
export function* onSimulationAdd(action) {
- try {
- const simulation = yield call(addSimulation, {name: action.name});
- yield put(addToStore("simulation", simulation));
+ try {
+ const simulation = yield call(addSimulation, { name: action.name });
+ yield put(addToStore("simulation", simulation));
- const authorization = {
- simulationId: simulation.id,
- userId: action.userId,
- authorizationLevel: "OWN"
- };
- yield put(addToStore("authorization", authorization));
- yield put(addSimulationSucceeded([authorization.userId, authorization.simulationId]));
- } catch (error) {
- console.error(error);
- }
+ const authorization = {
+ simulationId: simulation.id,
+ userId: action.userId,
+ authorizationLevel: "OWN"
+ };
+ yield put(addToStore("authorization", authorization));
+ yield put(
+ addSimulationSucceeded([authorization.userId, authorization.simulationId])
+ );
+ } catch (error) {
+ console.error(error);
+ }
}
export function* onSimulationDelete(action) {
- try {
- yield call(deleteSimulation, action.id);
- yield put(deleteSimulationSucceeded(action.id));
- } catch (error) {
- console.error(error);
- }
+ try {
+ yield call(deleteSimulation, action.id);
+ yield put(deleteSimulationSucceeded(action.id));
+ } catch (error) {
+ console.error(error);
+ }
}