Skip to content

Instantly share code, notes, and snippets.

@LarsBergqvist
Created July 23, 2021 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LarsBergqvist/e2192949ea9e465ea699ceb910fcc033 to your computer and use it in GitHub Desktop.
Save LarsBergqvist/e2192949ea9e465ea699ceb910fcc033 to your computer and use it in GitHub Desktop.
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