d2-ui
Version:
158 lines (133 loc) • 3.96 kB
JSX
import React from 'react';
import StylePropable from '../mixins/style-propable';
import Transition from '../styles/transitions';
import DateTime from '../utils/date-time';
import EnhancedButton from '../enhanced-button';
import getMuiTheme from '../styles/getMuiTheme';
const DayButton = React.createClass({
propTypes: {
date: React.PropTypes.object,
disabled: React.PropTypes.bool,
onKeyboardFocus: React.PropTypes.func,
onTouchTap: React.PropTypes.func,
selected: React.PropTypes.bool,
},
contextTypes: {
muiTheme: React.PropTypes.object,
},
//for passing default theme context to children
childContextTypes: {
muiTheme: React.PropTypes.object,
},
mixins: [
StylePropable,
],
getDefaultProps() {
return {
selected: false,
disabled: false,
};
},
getInitialState() {
return {
hover: false,
muiTheme: this.context.muiTheme || getMuiTheme(),
};
},
getChildContext() {
return {
muiTheme: this.state.muiTheme,
};
},
//to update theme inside state whenever a new theme is passed down
//from the parent / owner using context
componentWillReceiveProps(nextProps, nextContext) {
let newMuiTheme = nextContext.muiTheme ? nextContext.muiTheme : this.state.muiTheme;
this.setState({muiTheme: newMuiTheme});
},
getTheme() {
return this.state.muiTheme.datePicker;
},
_handleMouseEnter() {
if (!this.props.disabled) this.setState({hover: true});
},
_handleMouseLeave() {
if (!this.props.disabled) this.setState({hover: false});
},
_handleTouchTap(e) {
if (!this.props.disabled && this.props.onTouchTap) this.props.onTouchTap(e, this.props.date);
},
_handleKeyboardFocus(e, keyboardFocused) {
if (!this.props.disabled && this.props.onKeyboardFocus) {
this.props.onKeyboardFocus(e, keyboardFocused, this.props.date);
}
},
render() {
let {
date,
onTouchTap,
selected,
...other,
} = this.props;
let styles = {
root: {
boxSizing: 'border-box',
WebkitTapHighlightColor: 'rgba(0,0,0,0)',
position: 'relative',
float: 'left',
width: 41,
padding: '4px 2px',
},
label: {
position: 'relative',
color: this.state.muiTheme.rawTheme.palette.textColor,
},
buttonState: {
position: 'absolute',
height: 36,
width: 36,
top: 2,
opacity: 0,
borderRadius: '50%',
transform: 'scale(0)',
transition: Transition.easeOut(),
backgroundColor: this.getTheme().selectColor,
},
};
if (this.state.hover) {
styles.label.color = this.getTheme().selectTextColor;
styles.buttonState.opacity = '0.6';
styles.buttonState.transform = 'scale(1)';
}
if (this.props.selected) {
styles.label.color = this.getTheme().selectTextColor;
styles.buttonState.opacity = 1;
styles.buttonState.transform = 'scale(1)';
} else if (this.props.disabled) {
styles.root.opacity = '0.6';
}
if (DateTime.isEqualDate(this.props.date, new Date()) && !this.props.selected) {
styles.label.color = this.getTheme().color;
}
return this.props.date ? (
<EnhancedButton
{...other}
style={styles.root}
hoverStyle={styles.hover}
disabled={this.props.disabled}
disableFocusRipple={true}
disableTouchRipple={true}
onMouseEnter={this._handleMouseEnter}
onMouseLeave={this._handleMouseLeave}
onTouchTap={this._handleTouchTap}
onKeyboardFocus={this._handleKeyboardFocus}
>
<div style={this.prepareStyles(styles.buttonState)} />
<span style={this.prepareStyles(styles.label)}>{this.props.date.getDate()}</span>
</EnhancedButton>
) : (
<span style={this.prepareStyles(styles.root)} />
);
},
});
export default DayButton;