Make sure month params don't run if invalid
This commit is contained in:
parent
47c2efacfb
commit
5a616633c6
1 changed files with 40 additions and 6 deletions
|
@ -319,7 +319,8 @@ function AccountStatuses() {
|
||||||
min={MIN_YEAR_MONTH}
|
min={MIN_YEAR_MONTH}
|
||||||
max={new Date().toISOString().slice(0, 7)}
|
max={new Date().toISOString().slice(0, 7)}
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
const { value } = e.currentTarget;
|
const { value, validity } = e.currentTarget;
|
||||||
|
if (!validity.valid) return;
|
||||||
setSearchParams(
|
setSearchParams(
|
||||||
value
|
value
|
||||||
? {
|
? {
|
||||||
|
@ -339,7 +340,8 @@ function AccountStatuses() {
|
||||||
min={MIN_YEAR_MONTH}
|
min={MIN_YEAR_MONTH}
|
||||||
max={new Date().toISOString().slice(0, 7)}
|
max={new Date().toISOString().slice(0, 7)}
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
const { value } = e;
|
const { value, validity } = e;
|
||||||
|
if (!validity.valid) return;
|
||||||
setSearchParams(
|
setSearchParams(
|
||||||
value
|
value
|
||||||
? {
|
? {
|
||||||
|
@ -478,6 +480,16 @@ function MonthPicker(props) {
|
||||||
const monthFieldRef = useRef();
|
const monthFieldRef = useRef();
|
||||||
const yearFieldRef = useRef();
|
const yearFieldRef = useRef();
|
||||||
|
|
||||||
|
const checkValidity = (month, year) => {
|
||||||
|
const [minYear, minMonth] = min?.split('-') || [];
|
||||||
|
const [maxYear, maxMonth] = max?.split('-') || [];
|
||||||
|
if (year < minYear) return false;
|
||||||
|
if (year > maxYear) return false;
|
||||||
|
if (year === minYear && month < minMonth) return false;
|
||||||
|
if (year === maxYear && month > maxMonth) return false;
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class={className}>
|
<div class={className}>
|
||||||
<Icon icon="month" size="l" />
|
<Icon icon="month" size="l" />
|
||||||
|
@ -486,9 +498,20 @@ function MonthPicker(props) {
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
value={_month || ''}
|
value={_month || ''}
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
const { value } = e.currentTarget;
|
const { value: month } = e.currentTarget;
|
||||||
|
const year = yearFieldRef.current.value;
|
||||||
|
if (!checkValidity(month, year))
|
||||||
|
return {
|
||||||
|
value: '',
|
||||||
|
validity: {
|
||||||
|
valid: false,
|
||||||
|
},
|
||||||
|
};
|
||||||
onInput({
|
onInput({
|
||||||
value: value ? `${yearFieldRef.current.value}-${value}` : '',
|
value: month ? `${year}-${month}` : '',
|
||||||
|
validity: {
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
@ -516,9 +539,20 @@ function MonthPicker(props) {
|
||||||
min={min?.slice(0, 4) || MIN_YEAR}
|
min={min?.slice(0, 4) || MIN_YEAR}
|
||||||
max={max?.slice(0, 4) || new Date().getFullYear()}
|
max={max?.slice(0, 4) || new Date().getFullYear()}
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
const { value } = e.currentTarget;
|
const { value: year, validity } = e.currentTarget;
|
||||||
|
const month = monthFieldRef.current.value;
|
||||||
|
if (!validity.valid || !checkValidity(month, year))
|
||||||
|
return {
|
||||||
|
value: '',
|
||||||
|
validity: {
|
||||||
|
valid: false,
|
||||||
|
},
|
||||||
|
};
|
||||||
onInput({
|
onInput({
|
||||||
value: value ? `${value}-${monthFieldRef.current.value}` : '',
|
value: year ? `${year}-${month}` : '',
|
||||||
|
validity: {
|
||||||
|
valid: true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
style={{
|
style={{
|
||||||
|
|
Loading…
Add table
Reference in a new issue