Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: closeOnchange rangePicker #33

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/components/rangeInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ const InputRangePicker = forwardRef<HTMLInputElement, InputRangePickerProps>(
placeholder,
presets = true,
onClear: inputOnClear,
closeOnChange,

...rest
} = inputRangePickerProps;
const isRtl = (locale || "fa") === "fa";
Expand Down Expand Up @@ -85,6 +87,7 @@ const InputRangePicker = forwardRef<HTMLInputElement, InputRangePickerProps>(
locale,
onDayChange,
defaultValue,
onClose: closeOnChange ? onClose : undefined,
}}
>
{({
Expand Down
1 change: 1 addition & 0 deletions src/core/context/range/rangeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const RangeProvider = ({ children, props }: RangeProviderProps) => {
formatProp: propsState.format,
valueProp: props.value,
defaultValueProp: props.defaultValue,
onClose: props.onClose,
});

useEffect(() => {
Expand Down
12 changes: 11 additions & 1 deletion src/core/context/range/useRangeReducer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ interface RangeDateReducerType {
onMonthChangeProp?: RangePickerProps["onMonthChange"];
onYearChangeProp?: RangePickerProps["onYearChange"];
locale: Locale;
onClose?: () => void;
}

type Offsets = [number, number];
Expand Down Expand Up @@ -70,6 +71,7 @@ export const useRangeReducer = ({
onMonthChangeProp,
onYearChangeProp,
locale,
onClose,
}: RangeDateReducerType) => {
const isJalaali = locale === "fa";
const [offsets, setOffset] = useState<Offsets>([0, 0]);
Expand Down Expand Up @@ -272,6 +274,7 @@ export const useRangeReducer = ({

if (payload.startDate.day !== 0 && payload.endDate.day !== 0) {
onChangeProp?.(dates, formattedDates(dates));
onClose?.();
}

setRangeInputValue([
Expand All @@ -280,7 +283,14 @@ export const useRangeReducer = ({
]);
}
},
[formatProp, formattedDates, isJalaali, onChangeProp, rangeState.startDate],
[
formatProp,
formattedDates,
isJalaali,
onChangeProp,
rangeState.startDate,
onClose,
],
);

/** Callback function that updates the selected day range and dispatches an action. */
Expand Down
5 changes: 5 additions & 0 deletions src/core/interfaces/range.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ export interface RangePickerProps {
style?: React.CSSProperties;

className?: string;
closeOnChange?: boolean;
/** Callback to close popup */
onClose?: () => void;
}

interface RangePanelProps
Expand Down Expand Up @@ -269,4 +272,6 @@ export interface InputRangePickerProps extends InputRangePickerPickable {
wrapperClassName?: string;

wrapperStyle?: CSSProperties;
/** Whether close the popup after value change */
closeOnChange?: boolean;
}
Loading