
* Upgrade ESLint * Add eslint-nibble * Move typescript to dev deps * Update ESLint config * Turn off semi, comma-dangle & quotes rules * Enable simple sort * Fix errors in ESLint (#3788) * Disable rules requiring heavy changes * Autofix new ESLint rules * Autofix more-rules * Fix jsx/generics ambiguity * Add warnings for broken rules requiring manual fixes * Remove redundant expected-error * Add simple-sort * Add prettier config * Lint config * Fix sort plugin * Fix simple sort plugin * Fix sort order * Update src/orders/components/OrderTransaction/components/TransactionEvents/components/PspReferenceLink.tsx Co-authored-by: Paweł Chyła <chyla1988@gmail.com> * Remove redundant comment * Remove chai friendly * Update package.json Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com> * Remove to-be-checked comment * Update formatjs plugin * Lint staged only in src * Add changeset * Add tracking issue for new rules * Resolve auto-fixable warning after merge * Change sorts to warnings * Run lint on new files * Fix errors --------- Co-authored-by: Paweł Chyła <chyla1988@gmail.com> Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com>
349 lines
9.5 KiB
TypeScript
349 lines
9.5 KiB
TypeScript
// @ts-strict-ignore
|
|
import chevronDown from "@assets/images/ChevronDown.svg";
|
|
import useElementScroll, {
|
|
isScrolledToBottom,
|
|
} from "@dashboard/hooks/useElementScroll";
|
|
import { FetchMoreProps } from "@dashboard/types";
|
|
import {
|
|
CircularProgress,
|
|
MenuItem,
|
|
Paper,
|
|
Typography,
|
|
} from "@material-ui/core";
|
|
import Add from "@material-ui/icons/Add";
|
|
import { makeStyles } from "@saleor/macaw-ui";
|
|
import clsx from "clsx";
|
|
import { GetItemPropsOptions } from "downshift";
|
|
import React, { ReactElement } from "react";
|
|
import SVG from "react-inlinesvg";
|
|
import { FormattedMessage } from "react-intl";
|
|
|
|
import Hr from "../Hr";
|
|
|
|
const menuItemHeight = 46;
|
|
const maxMenuItems = 5;
|
|
const offset = 24;
|
|
|
|
export type ChoiceValue = string;
|
|
export interface SingleAutocompleteChoiceType<
|
|
V extends ChoiceValue = ChoiceValue,
|
|
L = string,
|
|
> {
|
|
label: L;
|
|
value: V;
|
|
}
|
|
export interface SingleAutocompleteActionType {
|
|
label: string;
|
|
onClick: () => void;
|
|
}
|
|
export interface SingleAutocompleteSelectFieldContentProps
|
|
extends Partial<FetchMoreProps> {
|
|
add?: SingleAutocompleteActionType;
|
|
choices: Array<SingleAutocompleteChoiceType<string, string | JSX.Element>>;
|
|
displayCustomValue: boolean;
|
|
emptyOption: boolean;
|
|
getItemProps: (options: GetItemPropsOptions<string>) => any;
|
|
highlightedIndex: number;
|
|
inputValue: string;
|
|
isCustomValueSelected: boolean;
|
|
selectedItem: any;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
const useStyles = makeStyles(
|
|
theme => ({
|
|
add: {
|
|
background: theme.palette.background.default,
|
|
border: `1px solid ${theme.palette.divider}`,
|
|
borderRadius: "100%",
|
|
height: 24,
|
|
marginRight: theme.spacing(),
|
|
width: 24,
|
|
},
|
|
arrowContainer: {
|
|
position: "relative",
|
|
},
|
|
arrowInnerContainer: {
|
|
alignItems: "center",
|
|
background:
|
|
theme.palette.type === "light"
|
|
? theme.palette.grey[50]
|
|
: theme.palette.grey[900],
|
|
bottom: 0,
|
|
color: theme.palette.grey[500],
|
|
display: "flex",
|
|
height: 30,
|
|
justifyContent: "center",
|
|
opacity: 1,
|
|
position: "absolute",
|
|
transition: theme.transitions.duration.short + "ms",
|
|
width: "100%",
|
|
},
|
|
content: {
|
|
maxHeight: `calc(${menuItemHeight * maxMenuItems}px + ${theme.spacing(
|
|
2,
|
|
)})`,
|
|
overflow: "scroll",
|
|
padding: 8,
|
|
},
|
|
hide: {
|
|
opacity: 0,
|
|
zIndex: -1,
|
|
},
|
|
hr: {
|
|
margin: theme.spacing(1, 0),
|
|
},
|
|
menuItem: {
|
|
height: "auto",
|
|
whiteSpace: "normal",
|
|
'&[aria-selected="true"]': {
|
|
backgroundColor: theme.palette.background.default,
|
|
},
|
|
},
|
|
progress: {},
|
|
progressContainer: {
|
|
display: "flex",
|
|
justifyContent: "center",
|
|
padding: theme.spacing(1, 0),
|
|
},
|
|
root: {
|
|
borderBottomLeftRadius: 8,
|
|
borderBottomRightRadius: 8,
|
|
margin: theme.spacing(1, 0),
|
|
overflow: "hidden",
|
|
zIndex: 22,
|
|
},
|
|
}),
|
|
{
|
|
name: "SingleAutocompleteSelectFieldContent",
|
|
},
|
|
);
|
|
|
|
function getChoiceIndex(
|
|
index: number,
|
|
emptyValue: boolean,
|
|
customValue: boolean,
|
|
add: boolean,
|
|
) {
|
|
let choiceIndex = index;
|
|
if (emptyValue) {
|
|
choiceIndex += 1;
|
|
}
|
|
if (customValue || add) {
|
|
choiceIndex += 2;
|
|
}
|
|
|
|
return choiceIndex;
|
|
}
|
|
|
|
const sliceSize = 20;
|
|
|
|
const SingleAutocompleteSelectFieldContent: React.FC<
|
|
SingleAutocompleteSelectFieldContentProps
|
|
> = props => {
|
|
const {
|
|
add,
|
|
choices,
|
|
displayCustomValue,
|
|
emptyOption,
|
|
getItemProps,
|
|
hasMore,
|
|
loading,
|
|
inputValue,
|
|
isCustomValueSelected,
|
|
selectedItem,
|
|
onFetchMore,
|
|
style,
|
|
} = props;
|
|
|
|
if (!!add && !!displayCustomValue) {
|
|
throw new Error("Add and custom value cannot be displayed simultaneously");
|
|
}
|
|
|
|
const classes = useStyles(props);
|
|
const anchor = React.useRef<HTMLDivElement>();
|
|
const scrollPosition = useElementScroll(anchor);
|
|
const [calledForMore, setCalledForMore] = React.useState(false);
|
|
const [slice, setSlice] = React.useState(onFetchMore ? 10000 : sliceSize);
|
|
const [initialized, setInitialized] = React.useState(false);
|
|
|
|
const scrolledToBottom = isScrolledToBottom(anchor, scrollPosition, offset);
|
|
|
|
React.useEffect(() => {
|
|
if (!calledForMore && onFetchMore && scrolledToBottom && hasMore) {
|
|
onFetchMore();
|
|
setCalledForMore(true);
|
|
} else if (scrolledToBottom && !onFetchMore) {
|
|
setSlice(slice => slice + sliceSize);
|
|
}
|
|
}, [scrolledToBottom]);
|
|
|
|
React.useEffect(() => {
|
|
if (!onFetchMore) {
|
|
setSlice(sliceSize);
|
|
}
|
|
}, [choices?.length]);
|
|
|
|
React.useEffect(() => {
|
|
if (anchor.current?.scrollTo && !initialized) {
|
|
anchor.current.scrollTo({
|
|
top: 0,
|
|
});
|
|
setInitialized(true);
|
|
}
|
|
}, [initialized]);
|
|
|
|
React.useEffect(() => {
|
|
setInitialized(false);
|
|
}, [inputValue]);
|
|
|
|
React.useEffect(() => {
|
|
if (calledForMore && !loading) {
|
|
setCalledForMore(false);
|
|
}
|
|
}, [loading]);
|
|
|
|
const emptyOptionProps = getItemProps({
|
|
item: "",
|
|
});
|
|
|
|
const choicesToDisplay = choices.slice(0, slice);
|
|
|
|
return (
|
|
<Paper
|
|
// click-outside-ignore is used by glide-datagrid
|
|
className={clsx("click-outside-ignore", classes.root)}
|
|
elevation={8}
|
|
style={style}
|
|
>
|
|
<div
|
|
className={classes.content}
|
|
ref={anchor}
|
|
data-test-id="autocomplete-dropdown"
|
|
aria-label="autocomplete-dropdown"
|
|
>
|
|
{choices.length > 0 || displayCustomValue ? (
|
|
<>
|
|
{emptyOption && (
|
|
<MenuItem
|
|
className={classes.menuItem}
|
|
component="div"
|
|
data-test-id="single-autocomplete-select-option"
|
|
data-test-type="empty"
|
|
{...emptyOptionProps}
|
|
>
|
|
<Typography color="textSecondary">
|
|
<FormattedMessage id="450Fty" defaultMessage="None" />
|
|
</Typography>
|
|
</MenuItem>
|
|
)}
|
|
{add && (
|
|
<MenuItem
|
|
className={classes.menuItem}
|
|
component="div"
|
|
{...getItemProps({
|
|
item: inputValue,
|
|
})}
|
|
data-test-id="single-autocomplete-select-option-add"
|
|
data-test-type="add"
|
|
onClick={add.onClick}
|
|
>
|
|
<Add color="primary" className={classes.add} />
|
|
<Typography color="primary">{add.label}</Typography>
|
|
</MenuItem>
|
|
)}
|
|
{displayCustomValue && (
|
|
<MenuItem
|
|
className={classes.menuItem}
|
|
key={"customValue"}
|
|
selected={isCustomValueSelected}
|
|
component="div"
|
|
{...getItemProps({
|
|
item: inputValue,
|
|
})}
|
|
data-test-id="single-autocomplete-select-option"
|
|
data-test-type="custom"
|
|
>
|
|
<FormattedMessage
|
|
id="U2WgwW"
|
|
defaultMessage="Add new value: {value}"
|
|
description="add custom select input option"
|
|
values={{
|
|
value: inputValue,
|
|
}}
|
|
/>
|
|
</MenuItem>
|
|
)}
|
|
{choices.length > 0 && (!!add || displayCustomValue) && (
|
|
<Hr className={classes.hr} />
|
|
)}
|
|
{choicesToDisplay.map((suggestion, index) => {
|
|
const choiceIndex = getChoiceIndex(
|
|
index,
|
|
emptyOption,
|
|
displayCustomValue,
|
|
!!add,
|
|
);
|
|
const key = React.isValidElement(suggestion.label)
|
|
? `${index}${suggestion.value}${
|
|
(suggestion as unknown as ReactElement).props
|
|
}`
|
|
: JSON.stringify(suggestion);
|
|
|
|
return (
|
|
<MenuItem
|
|
className={classes.menuItem}
|
|
key={key}
|
|
selected={selectedItem === suggestion.value}
|
|
component="div"
|
|
{...getItemProps({
|
|
index: choiceIndex,
|
|
item: suggestion.value,
|
|
})}
|
|
data-test-id="single-autocomplete-select-option"
|
|
data-test-value={suggestion.value}
|
|
data-test-type="option"
|
|
>
|
|
{suggestion.label}
|
|
</MenuItem>
|
|
);
|
|
})}
|
|
{hasMore && (
|
|
<>
|
|
<Hr className={classes.hr} />
|
|
<div className={classes.progressContainer}>
|
|
<CircularProgress className={classes.progress} size={24} />
|
|
</div>
|
|
</>
|
|
)}
|
|
</>
|
|
) : (
|
|
<MenuItem
|
|
disabled={true}
|
|
component="div"
|
|
data-test-id="single-autocomplete-select-no-options"
|
|
>
|
|
<FormattedMessage id="hX5PAb" defaultMessage="No results found" />
|
|
</MenuItem>
|
|
)}
|
|
</div>
|
|
{choices.length > maxMenuItems && (
|
|
<div className={classes.arrowContainer}>
|
|
<div
|
|
className={clsx(classes.arrowInnerContainer, {
|
|
// Needs to be explicitly compared to false because
|
|
// scrolledToBottom can be either true, false or undefined
|
|
[classes.hide]: scrolledToBottom,
|
|
})}
|
|
>
|
|
<SVG src={chevronDown} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
</Paper>
|
|
);
|
|
};
|
|
|
|
SingleAutocompleteSelectFieldContent.displayName =
|
|
"SingleAutocompleteSelectFieldContent";
|
|
export default SingleAutocompleteSelectFieldContent;
|