This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { connect } from 'react-redux' | |
import TileView from './TileView' | |
import { selectTile } from '../reducers/actions'; | |
import PropTypes from 'prop-types'; | |
const Puzzle = (props) => { | |
const width = Math.min(window.innerWidth, window.innerHeight); | |
const tileWidth = width / props.size; | |
const tileWrapperStyle = { | |
width: `${props.size * tileWidth}px` | |
} | |
const tileContainerStyle = { | |
gridTemplateColumns: `repeat(${props.size},${tileWidth}px)` | |
} | |
return ( | |
<div> | |
<div className='tile-wrapper' style={tileWrapperStyle}> | |
<div className='tile-container' style={tileContainerStyle}> | |
{ | |
props.tiles.map((t, idx) => | |
<TileView key={idx} | |
id={t.id} | |
correctPos={t.id === idx} | |
imageNumber={props.imageNumber} | |
onClick={props.onTileClicked} | |
tileWidth={tileWidth} | |
size={props.size} | |
selected={props.selectedId === t.id} | |
width={width} | |
/>) | |
} | |
</div> | |
</div> | |
</div> | |
); | |
} | |
Puzzle.propTypes = { | |
onTileClicked: PropTypes.func, | |
size: PropTypes.number, | |
tiles: PropTypes.array, | |
imageNumber: PropTypes.number, | |
selectedId: PropTypes.number | |
}; | |
const mapStateToProps = state => { | |
return { | |
size: state.size, | |
tiles: state.tiles, | |
imageNumber: state.imageNumber, | |
selectedId: state.selectedId | |
} | |
} | |
const mapDispatchToProps = dispatch => { | |
return { | |
onTileClicked: id => { | |
dispatch(selectTile(id)); | |
} | |
} | |
} | |
const PuzzleView = connect( | |
mapStateToProps, | |
mapDispatchToProps | |
)(Puzzle) | |
export default PuzzleView; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment