penguinmod-editor-2 / src /containers /direction-picker.jsx
soiz1's picture
Upload 2891 files
6bcb42f verified
import bindAll from 'lodash.bindall';
import PropTypes from 'prop-types';
import React from 'react';
import DirectionComponent, {RotationStyles} from '../components/direction-picker/direction-picker.jsx';
class DirectionPicker extends React.Component {
constructor (props) {
super(props);
bindAll(this, [
'handleOpenPopover',
'handleClosePopover',
'handleClickLeftRight',
'handleClickDontRotate',
'handleClickAllAround',
'handleClickUpDown',
'handleClickLookAt'
]);
this.state = {
popoverOpen: false
};
}
handleOpenPopover () {
this.setState({popoverOpen: true});
}
handleClosePopover () {
this.setState({popoverOpen: false});
}
handleClickAllAround () {
this.props.onChangeRotationStyle(RotationStyles.ALL_AROUND);
}
handleClickLookAt () {
this.props.onChangeRotationStyle(RotationStyles.LOOK_AT);
}
handleClickLeftRight () {
this.props.onChangeRotationStyle(RotationStyles.LEFT_RIGHT);
}
handleClickUpDown () {
this.props.onChangeRotationStyle(RotationStyles.UP_DOWN);
}
handleClickDontRotate () {
this.props.onChangeRotationStyle(RotationStyles.DONT_ROTATE);
}
render () {
return (
<DirectionComponent
direction={this.props.direction}
disabled={this.props.disabled}
labelAbove={this.props.labelAbove}
popoverOpen={this.state.popoverOpen && !this.props.disabled}
rotationStyle={this.props.rotationStyle}
onChangeDirection={this.props.onChangeDirection}
onClickAllAround={this.handleClickAllAround}
onClickDontRotate={this.handleClickDontRotate}
onClickLeftRight={this.handleClickLeftRight}
onClickLookAt={this.handleClickLookAt}
onClickUpDown={this.handleClickUpDown}
onClosePopover={this.handleClosePopover}
onOpenPopover={this.handleOpenPopover}
/>
);
}
}
DirectionPicker.propTypes = {
direction: PropTypes.number,
disabled: PropTypes.bool,
labelAbove: PropTypes.bool,
onChangeDirection: PropTypes.func,
onChangeRotationStyle: PropTypes.func,
rotationStyle: PropTypes.string
};
export default DirectionPicker;