summaryrefslogtreecommitdiff
path: root/src/actions/topology/room.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <G.Andreadis@student.tudelft.nl>2017-10-04 23:23:09 +0200
committerGitHub <noreply@github.com>2017-10-04 23:23:09 +0200
commitfcaaae65d34003874c76e0c01134dedf94248e09 (patch)
tree2aae1422168651e832a1904623f6f5b100fc17ec /src/actions/topology/room.js
parent0a62dfb55c5700013d42a589b930c7448e5bff71 (diff)
parent606d1de0be09f3597165248f65d54e158a13860c (diff)
Merge pull request #42 from atlarge-research/auto-reformat
Standardize code format
Diffstat (limited to 'src/actions/topology/room.js')
-rw-r--r--src/actions/topology/room.js52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/actions/topology/room.js b/src/actions/topology/room.js
index 884c7e84..4e0fc3a2 100644
--- a/src/actions/topology/room.js
+++ b/src/actions/topology/room.js
@@ -1,4 +1,4 @@
-import {findTileWithPosition} from "../../util/tile-calculations";
+import { findTileWithPosition } from "../../util/tile-calculations";
export const EDIT_ROOM_NAME = "EDIT_ROOM_NAME";
export const DELETE_ROOM = "DELETE_ROOM";
@@ -7,42 +7,42 @@ export const STOP_RACK_CONSTRUCTION = "STOP_RACK_CONSTRUCTION";
export const ADD_RACK_TO_TILE = "ADD_RACK_TO_TILE";
export function editRoomName(name) {
- return {
- type: EDIT_ROOM_NAME,
- name
- };
+ return {
+ type: EDIT_ROOM_NAME,
+ name
+ };
}
export function startRackConstruction() {
- return {
- type: START_RACK_CONSTRUCTION
- };
+ return {
+ type: START_RACK_CONSTRUCTION
+ };
}
export function stopRackConstruction() {
- return {
- type: STOP_RACK_CONSTRUCTION
- };
+ return {
+ type: STOP_RACK_CONSTRUCTION
+ };
}
export function addRackToTile(positionX, positionY) {
- return (dispatch, getState) => {
- const {objects, interactionLevel} = getState();
- const currentRoom = objects.room[interactionLevel.roomId];
- const tiles = currentRoom.tileIds.map(tileId => objects.tile[tileId]);
- const tile = findTileWithPosition(tiles, positionX, positionY);
+ return (dispatch, getState) => {
+ const { objects, interactionLevel } = getState();
+ const currentRoom = objects.room[interactionLevel.roomId];
+ const tiles = currentRoom.tileIds.map(tileId => objects.tile[tileId]);
+ const tile = findTileWithPosition(tiles, positionX, positionY);
- if (tile !== null) {
- dispatch({
- type: ADD_RACK_TO_TILE,
- tileId: tile.id
- });
- }
- };
+ if (tile !== null) {
+ dispatch({
+ type: ADD_RACK_TO_TILE,
+ tileId: tile.id
+ });
+ }
+ };
}
export function deleteRoom() {
- return {
- type: DELETE_ROOM
- };
+ return {
+ type: DELETE_ROOM
+ };
}