import React from 'react';
import PropTypes from 'prop-types';
import dayjs from 'dayjs';
import localeData from 'dayjs/plugin/localeData';
import utc from 'dayjs/plugin/utc';
import weekOfYear from 'dayjs/plugin/weekOfYear';
import Calendar from '@seafile/seafile-calendar';
import DatePicker from '@seafile/seafile-calendar/lib/Picker';
import { translateCalendar } from '../utils/date-format-utils';
import '@seafile/seafile-calendar/assets/index.css';
import '../css/date-and-time-picker.css';
dayjs.extend(utc);
dayjs.extend(localeData);
dayjs.extend(weekOfYear);
class Picker extends React.Component {
constructor(props) {
super(props);
this.calendarContainerRef = React.createRef();
this.inputRef = React.createRef();
let now = dayjs();
let lang = window.app.config.lang;
const isZhcn = lang === 'zh-cn';
if (isZhcn) {
now = now.locale('zh-cn');
} else {
now = now.locale('en-gb');
}
this.defaultCalendarValue = now.clone();
}
getCalendarContainer = () => {
return this.calendarContainerRef.current;
};
render() {
let showHourAndMinute = true; // default: true
if (this.props.showHourAndMinute != undefined) {
showHourAndMinute = this.props.showHourAndMinute;
}
const format = showHourAndMinute ? 'YYYY-MM-DD HH:mm' : 'YYYY-MM-DD';
return (