我正在尝试制作简单的日历。在我的日历中,我有日、日名、月和月名组件,我在主日历上访问它。初始加载时,它将显示当前月历。
现在,当我从月份名称组件中选择月份时,想要传递给月份组件,然后传递给日期组件以呈现日期。
我尝试使用回调功能,但它没有帮助我
整个react组件在这里https://stackblitz.com/edit/react-ts-z2278r
Day component
import * as moment from 'moment'
import * as React from 'react'
import { showComponent } from '../../../../models'
import { MonthNames } from './'
import styles from './Calendar.module.scss'
interface IDatePickerMonthsProps {
changeMonthComponent: (showComponent: showComponent, monthNo: number) => void
}
interface IDatePickerMonthsState {
dateObject: moment.Moment,
monthNo?: number
}
export class DatePickerMonths extends React.Component<IDatePickerMonthsProps, IDatePickerMonthsState> {
constructor(props: IDatePickerMonthsProps) {
super(props)
this.state = {
dateObject: moment()
}
}
public render() {
const monthPicker =
<div className="datepicker-days">
<table className={styles.table}>
<thead>
<tr>
<th><span className="ms-Icon ms-Icon--ChevronLeft" title="Previous Month" onClick={this.onPrev}></span></th>
<th className={styles["picker-switch"]} data-action="pickerSwitch" colSpan={5} title="Select Month">
{this.year()}
</th>
<th><span className="ms-Icon ms-Icon--ChevronRight" title="Next Month" onClick={this.onNext}></span></th>
</tr>
</thead>
<tbody>
<tr>
<td colSpan={7}>
<MonthNames changeMonthComponent={() => this.showDays(this.state.monthNo)} />
</td>
</tr>
</tbody>
</table>
</div>
return (monthPicker)
}
private year = () => {
return this.state.dateObject.format("Y");
};
private onPrev = () => {
this.setState({
dateObject: this.state.dateObject.subtract(1, "year")
});
};
private onNext = () => {
this.setState({
dateObject: this.state.dateObject.add(1, "year")
});
};
private showDays = (monthNo: number) => {
console.log(monthNo)
this.setState({ monthNo: monthNo })
this.props.changeMonthComponent(showComponent.Days, monthNo)
}
}
Month name component
import * as moment from 'moment'
import * as React from 'react'
import { showComponent } from '../../../../models'
interface IMonthNamesProps {
changeMonthComponent: (showComponent: showComponent, monthNo: number) => void
}
export class MonthNames extends React.Component<IMonthNamesProps, {}> {
private monthshort: string[] = moment.monthsShort();
constructor(props: IMonthNamesProps) {
super(props)
}
public render() {
let monthshortname = this.monthshort.map((month, monthNo) => {
return <span key={monthNo} onClick={() => this.showDays(monthNo)}>{month}</span>;
});
return monthshortname
}
private showDays = (monthNo: number) => {
this.props.changeMonthComponent(showComponent.Days, monthNo)
}
}
Month component
import * as moment from 'moment'
import * as React from 'react'
import { showComponent } from '../../../../models'
import { MonthNames } from './'
import styles from './Calendar.module.scss'
interface IDatePickerMonthsProps {
changeMonthComponent: (showComponent: showComponent, monthNo: number) => void
}
interface IDatePickerMonthsState {
dateObject: moment.Moment,
monthNo?: number
}
export class DatePickerMonths extends React.Component<IDatePickerMonthsProps, IDatePickerMonthsState> {
constructor(props: IDatePickerMonthsProps) {
super(props)
this.state = {
dateObject: moment()
}
}
public render() {
const monthPicker =
<div className="datepicker-days">
<table className={styles.table}>
<thead>
<tr>
<th><span className="ms-Icon ms-Icon--ChevronLeft" title="Previous Month" onClick={this.onPrev}></span></th>
<th className={styles["picker-switch"]} data-action="pickerSwitch" colSpan={5} title="Select Month">
{this.year()}
</th>
<th><span className="ms-Icon ms-Icon--ChevronRight" title="Next Month" onClick={this.onNext}></span></th>
</tr>
</thead>
<tbody>
<tr>
<td colSpan={7}>
<MonthNames changeMonthComponent={() => this.showDays(this.state.monthNo)} />
</td>
</tr>
</tbody>
</table>
</div>
return (monthPicker)
}
private year = () => {
return this.state.dateObject.format("Y");
};
private onPrev = () => {
this.setState({
dateObject: this.state.dateObject.subtract(1, "year")
});
};
private onNext = () => {
this.setState({
dateObject: this.state.dateObject.add(1, "year")
});
};
private showDays = (monthNo: number) => {
console.log(monthNo)
this.setState({ monthNo: monthNo })
this.props.changeMonthComponent(showComponent.Days, monthNo)
}
}