While on week view in React Big Calendar, the label in the toolbar shows the range of dates, for example "January 10 - 16". How can I get the year? Below is the modified toolbar.
export default class CalendarToolbar extends Toolbar {
componentDidMount() {
const { view } = this.props;
console.log(this.props);
}
render() {
return (
<div>
<div className="rbc-btn-group">
<button type="button" onClick={() => this.navigate('PREV')}>back</button>
<button type="button" onClick={() => this.navigate('NEXT')}>next</button>
</div>
<div className="rbc-toolbar-label">{this.props.label}, </div>
<div className="rbc-btn-group">
<button type="button" onClick={this.view.bind(null, 'month')}>Month</button>
<button type="button" onClick={this.view.bind(null, 'week')}>Week</button>
<button type="button" onClick={this.view.bind(null, 'day')}>Day</button>
<button type="button" onClick={this.view.bind(null, 'agenda')}>Agenda</button>
</div>
</div>
);
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…