summaryrefslogtreecommitdiff
path: root/src/containers/map/TileContainer.js
blob: 9e98636a97d9f44e38ad32ab1fb80636cb64d270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import {connect} from "react-redux";
import {goFromRoomToRack} from "../../actions/interaction-level";
import TileGroup from "../../components/map/groups/TileGroup";

const mapStateToProps = (state, ownProps) => {
    return {
        interactionLevel: state.interactionLevel,
        tile: state.objects.tile[ownProps.tileId],
    };
};

const mapDispatchToProps = dispatch => {
    return {
        onClick: tile => {
            if (tile.objectType) {
                dispatch(goFromRoomToRack(tile.id))
            }
        }
    };
};

const TileContainer = connect(
    mapStateToProps,
    mapDispatchToProps
)(TileGroup);

export default TileContainer;