summaryrefslogtreecommitdiff
path: root/src/reducers
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-11 11:53:06 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:06:00 +0200
commitaa448cb5c3e2e372dad1c79ffc32ff32144b4140 (patch)
tree19f6cff07ca75f541d543ca5e0eb65c50b8e93b8 /src/reducers
parent8bd2bc91cc7e97f233031a42ccfda92af5e8bb96 (diff)
Move zoom level and map position info to store
Diffstat (limited to 'src/reducers')
-rw-r--r--src/reducers/index.js2
-rw-r--r--src/reducers/map.js35
2 files changed, 37 insertions, 0 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js
index f1f51337..1f3aa8f2 100644
--- a/src/reducers/index.js
+++ b/src/reducers/index.js
@@ -2,6 +2,7 @@ import {combineReducers} from "redux";
import {auth} from "./auth";
import {construction} from "./construction";
import {interactionLevel} from "./interaction-level";
+import {map} from "./map";
import {modals} from "./modals";
import {objects} from "./objects";
import {simulationList} from "./simulation-list";
@@ -17,6 +18,7 @@ const rootReducer = combineReducers({
currentDatacenterId,
interactionLevel,
construction,
+ map,
});
export default rootReducer;
diff --git a/src/reducers/map.js b/src/reducers/map.js
new file mode 100644
index 00000000..c36916b6
--- /dev/null
+++ b/src/reducers/map.js
@@ -0,0 +1,35 @@
+import {combineReducers} from "redux";
+import {SET_MAP_DIMENSIONS, SET_MAP_POSITION, SET_MAP_SCALE} from "../actions/map";
+
+export function position(state = {x: 0, y: 0}, action) {
+ switch (action.type) {
+ case SET_MAP_POSITION:
+ return {x: action.x, y: action.y};
+ default:
+ return state;
+ }
+}
+
+export function dimensions(state = {width: 600, height: 400}, action) {
+ switch (action.type) {
+ case SET_MAP_DIMENSIONS:
+ return {width: action.width, height: action.height};
+ default:
+ return state;
+ }
+}
+
+export function scale(state = 1, action) {
+ switch (action.type) {
+ case SET_MAP_SCALE:
+ return action.scale;
+ default:
+ return state;
+ }
+}
+
+export const map = combineReducers({
+ position,
+ dimensions,
+ scale
+});