Co-authored-by: vicky-primathon.in <vicky.bansal@primathon.in> Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com> Co-authored-by: Abhinav Jha <abhinav@appsmith.com>
238 lines
6.9 KiB
TypeScript
238 lines
6.9 KiB
TypeScript
import React from "react";
|
|
import styled from "styled-components";
|
|
import {
|
|
getBorderCSSShorthand,
|
|
labelStyle,
|
|
IntentColors,
|
|
} from "constants/DefaultTheme";
|
|
import { ControlGroup, Classes, Label } from "@blueprintjs/core";
|
|
import { ComponentProps } from "components/designSystems/appsmith/BaseComponent";
|
|
import { DateInput } from "@blueprintjs/datetime";
|
|
import moment from "moment-timezone";
|
|
import "../../../../node_modules/@blueprintjs/datetime/lib/css/blueprint-datetime.css";
|
|
import { DatePickerType } from "widgets/DatePickerWidget";
|
|
import { WIDGET_PADDING } from "constants/WidgetConstants";
|
|
import { TimePrecision } from "@blueprintjs/datetime";
|
|
import { Colors } from "constants/Colors";
|
|
import { ISO_DATE_FORMAT } from "constants/WidgetValidation";
|
|
import ErrorTooltip from "components/editorComponents/ErrorTooltip";
|
|
import { DATE_WIDGET_DEFAULT_VALIDATION_ERROR } from "constants/messages";
|
|
|
|
const StyledControlGroup = styled(ControlGroup)<{ isValid: boolean }>`
|
|
&&& {
|
|
.${Classes.INPUT} {
|
|
box-shadow: none;
|
|
color: ${Colors.OXFORD_BLUE};
|
|
font-size: ${(props) => props.theme.fontSizes[3]}px;
|
|
border: ${(props) => getBorderCSSShorthand(props.theme.borders[2])};
|
|
border-color: ${(props) =>
|
|
!props.isValid ? IntentColors.danger : Colors.GEYSER_LIGHT};
|
|
border-radius: 0;
|
|
width: 100%;
|
|
height: inherit;
|
|
align-items: center;
|
|
&:active {
|
|
border-color: ${(props) =>
|
|
!props.isValid ? IntentColors.danger : Colors.HIT_GRAY};
|
|
}
|
|
&:focus {
|
|
border: ${(props) => getBorderCSSShorthand(props.theme.borders[2])};
|
|
border-color: ${(props) =>
|
|
!props.isValid ? IntentColors.danger : "#80bdff"};
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
|
|
}
|
|
}
|
|
.${Classes.INPUT_GROUP} {
|
|
display: block;
|
|
margin: 0;
|
|
}
|
|
.${Classes.CONTROL_GROUP} {
|
|
justify-content: flex-start;
|
|
}
|
|
label {
|
|
${labelStyle}
|
|
flex: 0 1 30%;
|
|
margin: 7px ${WIDGET_PADDING * 2}px 0 0;
|
|
text-align: right;
|
|
align-self: flex-start;
|
|
max-width: calc(30% - ${WIDGET_PADDING}px);
|
|
}
|
|
}
|
|
`;
|
|
|
|
class DatePickerComponent extends React.Component<
|
|
DatePickerComponentProps,
|
|
DatePickerComponentState
|
|
> {
|
|
constructor(props: DatePickerComponentProps) {
|
|
super(props);
|
|
this.state = {
|
|
selectedDate: props.selectedDate,
|
|
};
|
|
}
|
|
|
|
componentDidUpdate(prevProps: DatePickerComponentProps) {
|
|
const dateFormat = this.props.dateFormat || ISO_DATE_FORMAT;
|
|
if (
|
|
this.props.selectedDate !== this.state.selectedDate &&
|
|
!moment(this.props.selectedDate, dateFormat).isSame(
|
|
moment(prevProps.selectedDate, dateFormat),
|
|
"seconds",
|
|
)
|
|
) {
|
|
this.setState({ selectedDate: this.props.selectedDate });
|
|
}
|
|
}
|
|
getValidDate = (date: string, format: string) => {
|
|
const _date = moment(date, format);
|
|
return _date.isValid() ? _date.toDate() : undefined;
|
|
};
|
|
|
|
render() {
|
|
const now = moment();
|
|
const year = now.get("year");
|
|
const dateFormat = this.props.dateFormat || ISO_DATE_FORMAT;
|
|
const minDate = this.props.minDate
|
|
? this.getValidDate(this.props.minDate, dateFormat)
|
|
: now
|
|
.clone()
|
|
.set({ month: 0, date: 1, year: year - 100 })
|
|
.toDate();
|
|
const maxDate = this.props.maxDate
|
|
? this.getValidDate(this.props.maxDate, dateFormat)
|
|
: now
|
|
.clone()
|
|
.set({ month: 11, date: 31, year: year + 20 })
|
|
.toDate();
|
|
const isValid = this.state.selectedDate
|
|
? this.isValidDate(this.parseDate(this.state.selectedDate))
|
|
: true;
|
|
const value =
|
|
isValid && this.state.selectedDate
|
|
? this.parseDate(this.state.selectedDate)
|
|
: null;
|
|
return (
|
|
<StyledControlGroup
|
|
fill
|
|
isValid={isValid}
|
|
onClick={(e: any) => {
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
{this.props.label && (
|
|
<Label
|
|
className={
|
|
this.props.isLoading
|
|
? Classes.SKELETON
|
|
: Classes.TEXT_OVERFLOW_ELLIPSIS
|
|
}
|
|
>
|
|
{this.props.label}
|
|
</Label>
|
|
)}
|
|
{
|
|
<ErrorTooltip
|
|
isOpen={!isValid}
|
|
message={DATE_WIDGET_DEFAULT_VALIDATION_ERROR}
|
|
>
|
|
<DateInput
|
|
className={this.props.isLoading ? "bp3-skeleton" : ""}
|
|
formatDate={this.formatDate}
|
|
parseDate={this.parseDate}
|
|
placeholder={"Select Date"}
|
|
disabled={this.props.isDisabled}
|
|
showActionsBar={true}
|
|
timePrecision={TimePrecision.MINUTE}
|
|
closeOnSelection
|
|
onChange={this.onDateSelected}
|
|
value={value}
|
|
minDate={minDate}
|
|
maxDate={maxDate}
|
|
/>
|
|
</ErrorTooltip>
|
|
}
|
|
</StyledControlGroup>
|
|
);
|
|
}
|
|
|
|
isValidDate = (date: Date): boolean => {
|
|
let isValid = true;
|
|
const dateFormat = this.props.dateFormat || ISO_DATE_FORMAT;
|
|
const parsedCurrentDate = moment(date);
|
|
if (this.props.minDate) {
|
|
const parsedMinDate = moment(this.props.minDate, dateFormat);
|
|
if (
|
|
this.props.minDate &&
|
|
parsedMinDate.isValid() &&
|
|
parsedCurrentDate.isBefore(parsedMinDate)
|
|
) {
|
|
isValid = false;
|
|
}
|
|
}
|
|
if (this.props.maxDate) {
|
|
const parsedMaxDate = moment(this.props.maxDate, dateFormat);
|
|
if (
|
|
isValid &&
|
|
this.props.maxDate &&
|
|
parsedMaxDate.isValid() &&
|
|
parsedCurrentDate.isAfter(parsedMaxDate)
|
|
) {
|
|
isValid = false;
|
|
}
|
|
}
|
|
return isValid;
|
|
};
|
|
|
|
formatDate = (date: Date): string => {
|
|
const dateFormat = this.props.dateFormat || ISO_DATE_FORMAT;
|
|
return moment(date).format(dateFormat);
|
|
};
|
|
|
|
parseDate = (dateStr: string): Date => {
|
|
const dateFormat = this.props.dateFormat || ISO_DATE_FORMAT;
|
|
const date = moment(dateStr, dateFormat);
|
|
|
|
if (date.isValid()) return moment(dateStr, dateFormat).toDate();
|
|
else return moment().toDate();
|
|
};
|
|
|
|
/**
|
|
* checks if selelectedDate is null or not,
|
|
* sets state and calls props onDateSelected
|
|
* if its null, don't call onDateSelected
|
|
*
|
|
* @param selectedDate
|
|
*/
|
|
onDateSelected = (selectedDate: Date, isUserChange: boolean) => {
|
|
if (isUserChange) {
|
|
const { onDateSelected } = this.props;
|
|
|
|
const date = selectedDate ? this.formatDate(selectedDate) : "";
|
|
this.setState({ selectedDate: date });
|
|
|
|
onDateSelected(date);
|
|
}
|
|
};
|
|
}
|
|
|
|
interface DatePickerComponentProps extends ComponentProps {
|
|
label: string;
|
|
dateFormat: string;
|
|
enableTimePicker?: boolean;
|
|
selectedDate?: string;
|
|
minDate?: string;
|
|
maxDate?: string;
|
|
timezone?: string;
|
|
datePickerType: DatePickerType;
|
|
isDisabled: boolean;
|
|
onDateSelected: (selectedDate: string) => void;
|
|
isLoading: boolean;
|
|
}
|
|
|
|
interface DatePickerComponentState {
|
|
selectedDate?: string;
|
|
}
|
|
|
|
export default DatePickerComponent;
|