-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
933 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
* @konveyor/migration-engineering-ui-committers | ||
/pkg/qe-tests/ @konveyor/migration-engineering-qe-committers | ||
# | ||
# Until an organization group (for example `@konveyor/tackle/ui-reviewers`) is created | ||
# and maintained to hold the set of people to auto-assign PRs for review, individually | ||
# name each person. | ||
# | ||
# The list (or group membership) should match up with the `OWNERS.md` file. | ||
# | ||
* @ibolton336 @sjd78 @rszwajko |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 135 additions & 0 deletions
135
client/src/app/components/FilterToolbar/DateRangeFilter.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
import React, { FormEvent, useState } from "react"; | ||
|
||
import { | ||
DatePicker, | ||
InputGroup, | ||
isValidDate as isValidJSDate, | ||
ToolbarChip, | ||
ToolbarChipGroup, | ||
ToolbarFilter, | ||
Tooltip, | ||
} from "@patternfly/react-core"; | ||
|
||
import { IFilterControlProps } from "./FilterControl"; | ||
import { | ||
localizeInterval, | ||
americanDateFormat, | ||
isValidAmericanShortDate, | ||
isValidInterval, | ||
parseAmericanDate, | ||
parseInterval, | ||
toISODateInterval, | ||
} from "./dateUtils"; | ||
|
||
/** | ||
* This Filter type enables selecting an closed date range. | ||
* Precisely given range [A,B] a date X in the range if A <= X <= B. | ||
* | ||
* **Props are interpreted as follows**:<br> | ||
* 1) filterValue - date range encoded as ISO 8601 time interval string ("dateFrom/dateTo"). Only date part is used (no time).<br> | ||
* 2) setFilterValue - accepts the list of ranges.<br> | ||
* | ||
*/ | ||
|
||
export const DateRangeFilter = <TItem,>({ | ||
category, | ||
filterValue, | ||
setFilterValue, | ||
showToolbarItem, | ||
isDisabled = false, | ||
}: React.PropsWithChildren< | ||
IFilterControlProps<TItem, string> | ||
>): JSX.Element | null => { | ||
const selectedFilters = filterValue ?? []; | ||
|
||
const validFilters = | ||
selectedFilters?.filter((interval) => | ||
isValidInterval(parseInterval(interval)) | ||
) ?? []; | ||
const [from, setFrom] = useState<Date>(); | ||
const [to, setTo] = useState<Date>(); | ||
|
||
const rangeToOption = (range: string) => { | ||
const [abbrRange, fullRange] = localizeInterval(range); | ||
return { | ||
key: range, | ||
node: ( | ||
<Tooltip content={fullRange ?? range}> | ||
<span>{abbrRange ?? ""}</span> | ||
</Tooltip> | ||
), | ||
}; | ||
}; | ||
|
||
const clearSingleRange = ( | ||
category: string | ToolbarChipGroup, | ||
option: string | ToolbarChip | ||
) => { | ||
const target = (option as ToolbarChip)?.key; | ||
setFilterValue([...validFilters.filter((range) => range !== target)]); | ||
}; | ||
|
||
const onFromDateChange = ( | ||
event: FormEvent<HTMLInputElement>, | ||
value: string | ||
) => { | ||
if (isValidAmericanShortDate(value)) { | ||
setFrom(parseAmericanDate(value)); | ||
setTo(undefined); | ||
} | ||
}; | ||
|
||
const onToDateChange = (even: FormEvent<HTMLInputElement>, value: string) => { | ||
if (isValidAmericanShortDate(value)) { | ||
const newTo = parseAmericanDate(value); | ||
setTo(newTo); | ||
const target = toISODateInterval(from, newTo); | ||
if (target) { | ||
setFilterValue([ | ||
...validFilters.filter((range) => range !== target), | ||
target, | ||
]); | ||
} | ||
} | ||
}; | ||
|
||
return ( | ||
<ToolbarFilter | ||
key={category.categoryKey} | ||
chips={validFilters.map(rangeToOption)} | ||
deleteChip={clearSingleRange} | ||
deleteChipGroup={() => setFilterValue([])} | ||
categoryName={category.title} | ||
showToolbarItem={showToolbarItem} | ||
> | ||
<InputGroup> | ||
<DatePicker | ||
value={from ? americanDateFormat(from) : ""} | ||
dateFormat={americanDateFormat} | ||
dateParse={parseAmericanDate} | ||
onChange={onFromDateChange} | ||
aria-label="Interval start" | ||
placeholder="MM/DD/YYYY" | ||
// disable error text (no space in toolbar scenario) | ||
invalidFormatText={""} | ||
// default value ("parent") creates collision with sticky table header | ||
appendTo={document.body} | ||
isDisabled={isDisabled} | ||
/> | ||
<DatePicker | ||
value={to ? americanDateFormat(to) : ""} | ||
onChange={onToDateChange} | ||
isDisabled={isDisabled || !isValidJSDate(from)} | ||
dateFormat={americanDateFormat} | ||
dateParse={parseAmericanDate} | ||
// disable error text (no space in toolbar scenario) | ||
invalidFormatText={""} | ||
rangeStart={from} | ||
aria-label="Interval end" | ||
placeholder="MM/DD/YYYY" | ||
appendTo={document.body} | ||
/> | ||
</InputGroup> | ||
</ToolbarFilter> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.