mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-12 13:24:52 +00:00
* fix repo history is less than 0 * fix setting button icon is green * fix admin statistic time lang * fix statistics traffic list when change page
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
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 = (<Calendar
|
|
defaultValue={this.defaultCalendarValue}
|
|
disabledDate={props.disabledDate}
|
|
format={FORMAT}
|
|
locale={translateCalendar()}
|
|
/>);
|
|
return (
|
|
<DatePicker
|
|
calendar={calendar}
|
|
value={props.value}
|
|
onChange={props.onChange}
|
|
>
|
|
{
|
|
({ value }) => {
|
|
return (
|
|
<span>
|
|
<input
|
|
placeholder="yyyy-mm-dd"
|
|
tabIndex="-1"
|
|
readOnly
|
|
value={value && value.format(FORMAT) || ''}
|
|
className="form-control system-statistic-input"
|
|
/>
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
</DatePicker>
|
|
);
|
|
}
|
|
}
|
|
|
|
Picker.propTypes = {
|
|
disabledDate: PropTypes.func.isRequired,
|
|
value: PropTypes.object,
|
|
onChange: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default Picker;
|