import React from 'react'; import PropTypes from 'prop-types'; import dayjs from 'dayjs'; import Calendar from '@seafile/seafile-calendar'; import DatePicker from '@seafile/seafile-calendar/lib/Picker'; import { translateCalendar } from '../../../utils/date-format-utils'; import 'dayjs/locale/zh-cn'; import 'dayjs/locale/en-gb'; import '@seafile/seafile-calendar/assets/index.css'; const FORMAT = 'YYYY-MM-DD'; class Picker extends React.Component { constructor(props) { super(props); let lang = window.app.config.lang; let now = dayjs(); const isZhcn = lang === 'zh-cn'; if (isZhcn) { now = now.locale('zh-cn'); } else { now = now.locale('en-gb'); } this.defaultCalendarValue = now.clone(); } render() { const props = this.props; const calendar = (); return ( { ({ value }) => { return ( ); } } ); } } Picker.propTypes = { disabledDate: PropTypes.func.isRequired, value: PropTypes.object, onChange: PropTypes.func.isRequired, }; export default Picker;