mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 04:00:09 -04:00
55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import DatePicker from 'antd/lib/date-picker';
|
|
import { clientConfig } from '@/services/auth';
|
|
import { Moment } from '@/components/proptypes';
|
|
|
|
const DateTimeInput = React.forwardRef(({
|
|
defaultValue,
|
|
value,
|
|
withSeconds,
|
|
onSelect,
|
|
className,
|
|
...props
|
|
}, ref) => {
|
|
const format = (clientConfig.dateFormat || 'YYYY-MM-DD') +
|
|
(withSeconds ? ' HH:mm:ss' : ' HH:mm');
|
|
const additionalAttributes = {};
|
|
if (defaultValue && defaultValue.isValid()) {
|
|
additionalAttributes.defaultValue = defaultValue;
|
|
}
|
|
if (value === null || (value && value.isValid())) {
|
|
additionalAttributes.value = value;
|
|
}
|
|
return (
|
|
<DatePicker
|
|
ref={ref}
|
|
className={className}
|
|
showTime
|
|
{...additionalAttributes}
|
|
format={format}
|
|
placeholder="Select Date and Time"
|
|
onChange={onSelect}
|
|
{...props}
|
|
/>
|
|
);
|
|
});
|
|
|
|
DateTimeInput.propTypes = {
|
|
defaultValue: Moment,
|
|
value: Moment,
|
|
withSeconds: PropTypes.bool,
|
|
onSelect: PropTypes.func,
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
DateTimeInput.defaultProps = {
|
|
defaultValue: null,
|
|
value: undefined,
|
|
withSeconds: false,
|
|
onSelect: () => {},
|
|
className: '',
|
|
};
|
|
|
|
export default DateTimeInput;
|