saleor-dashboard/src/components/SingleAutocompleteSelectField/SingleAutocompleteSelectFieldContent.tsx

283 lines
7.8 KiB
TypeScript
Raw Normal View History

2019-10-14 14:17:03 +00:00
import CircularProgress from "@material-ui/core/CircularProgress";
2019-10-14 11:57:08 +00:00
import MenuItem from "@material-ui/core/MenuItem";
2020-02-10 16:07:17 +00:00
import Add from "@material-ui/icons/Add";
2019-10-14 11:57:08 +00:00
import Paper from "@material-ui/core/Paper";
2019-10-28 16:16:49 +00:00
import { makeStyles } from "@material-ui/core/styles";
2019-10-14 11:57:08 +00:00
import Typography from "@material-ui/core/Typography";
import classNames from "classnames";
import { GetItemPropsOptions } from "downshift";
import React from "react";
2019-10-15 10:33:14 +00:00
import SVG from "react-inlinesvg";
2019-10-14 11:57:08 +00:00
import { FormattedMessage } from "react-intl";
2019-10-15 10:33:14 +00:00
import chevronDown from "@assets/images/ChevronDown.svg";
import useElementScroll, {
isScrolledToBottom
} from "@saleor/hooks/useElementScroll";
2019-10-14 14:17:03 +00:00
import { FetchMoreProps } from "@saleor/types";
2019-10-14 11:57:08 +00:00
import Hr from "../Hr";
const menuItemHeight = 46;
const maxMenuItems = 5;
2019-10-14 14:17:03 +00:00
const offset = 24;
2019-10-14 11:57:08 +00:00
export interface SingleAutocompleteChoiceType {
label: string;
value: any;
}
2020-02-10 16:07:17 +00:00
export interface SingleAutocompleteActionType {
label: string;
onClick: () => void;
}
2019-10-14 14:17:03 +00:00
export interface SingleAutocompleteSelectFieldContentProps
extends Partial<FetchMoreProps> {
2020-03-18 17:24:55 +00:00
add?: SingleAutocompleteActionType;
2019-10-14 11:57:08 +00:00
choices: SingleAutocompleteChoiceType[];
displayCustomValue: boolean;
emptyOption: boolean;
getItemProps: (options: GetItemPropsOptions) => void;
highlightedIndex: number;
inputValue: string;
isCustomValueSelected: boolean;
selectedItem: any;
}
const useStyles = makeStyles(
2019-10-28 16:16:49 +00:00
theme => ({
2020-02-10 16:07:17 +00:00
add: {
background: theme.palette.background.default,
border: `1px solid ${theme.palette.divider}`,
borderRadius: "100%",
height: 24,
marginRight: theme.spacing(),
width: 24
},
2019-10-15 10:33:14 +00:00
arrowContainer: {
position: "relative"
},
arrowInnerContainer: {
alignItems: "center",
2019-10-28 16:16:49 +00:00
background:
theme.palette.type === "light"
? theme.palette.grey[50]
: theme.palette.grey[900],
2019-10-15 10:33:14 +00:00
bottom: 0,
display: "flex",
height: 30,
justifyContent: "center",
opacity: 1,
position: "absolute",
transition: theme.transitions.duration.short + "ms",
width: "100%"
},
2019-10-14 11:57:08 +00:00
content: {
2019-10-28 16:16:49 +00:00
maxHeight: menuItemHeight * maxMenuItems + theme.spacing(2),
2019-10-14 11:57:08 +00:00
overflow: "scroll",
padding: 8
},
2019-10-15 10:33:14 +00:00
hide: {
2019-12-02 15:48:19 +00:00
opacity: 0,
zIndex: -1
2019-10-15 10:33:14 +00:00
},
2019-10-14 11:57:08 +00:00
hr: {
2019-10-28 16:16:49 +00:00
margin: theme.spacing(1, 0)
2019-10-14 11:57:08 +00:00
},
menuItem: {
height: "auto",
whiteSpace: "normal"
},
2019-10-14 14:17:03 +00:00
progress: {},
progressContainer: {
display: "flex",
justifyContent: "center"
},
2019-10-14 11:57:08 +00:00
root: {
2019-10-15 10:33:14 +00:00
borderBottomLeftRadius: 8,
borderBottomRightRadius: 8,
2019-10-14 11:57:08 +00:00
left: 0,
2019-10-28 16:16:49 +00:00
marginTop: theme.spacing(),
2019-10-15 10:33:14 +00:00
overflow: "hidden",
2019-10-14 11:57:08 +00:00
position: "absolute",
right: 0,
zIndex: 22
}
}),
{
name: "SingleAutocompleteSelectFieldContent"
}
);
function getChoiceIndex(
index: number,
emptyValue: boolean,
customValue: boolean
) {
let choiceIndex = index;
if (emptyValue) {
choiceIndex += 1;
}
if (customValue) {
choiceIndex += 2;
}
return choiceIndex;
}
2020-02-10 16:07:17 +00:00
const SingleAutocompleteSelectFieldContent: React.FC<SingleAutocompleteSelectFieldContentProps> = props => {
2019-10-14 11:57:08 +00:00
const {
2020-02-10 16:07:17 +00:00
add,
2019-10-14 11:57:08 +00:00
choices,
displayCustomValue,
emptyOption,
getItemProps,
2019-10-14 14:17:03 +00:00
hasMore,
loading,
2019-10-14 11:57:08 +00:00
inputValue,
isCustomValueSelected,
2019-10-14 14:17:03 +00:00
selectedItem,
onFetchMore
2019-10-14 11:57:08 +00:00
} = props;
2020-02-10 16:07:17 +00:00
if (!!add && !!displayCustomValue) {
throw new Error("Add and custom value cannot be displayed simultaneously");
}
2019-10-14 11:57:08 +00:00
const classes = useStyles(props);
const anchor = React.useRef<HTMLDivElement>();
const scrollPosition = useElementScroll(anchor);
2019-10-14 14:17:03 +00:00
const [calledForMore, setCalledForMore] = React.useState(false);
2019-10-14 11:57:08 +00:00
2019-10-15 12:12:38 +00:00
const scrolledToBottom = isScrolledToBottom(anchor, scrollPosition, offset);
2019-10-14 11:57:08 +00:00
2019-10-14 14:17:03 +00:00
React.useEffect(() => {
if (!calledForMore && onFetchMore && scrolledToBottom) {
onFetchMore();
setCalledForMore(true);
}
}, [scrolledToBottom]);
React.useEffect(() => {
if (calledForMore && !loading) {
setCalledForMore(false);
}
}, [loading]);
2019-10-14 11:57:08 +00:00
return (
2019-10-15 10:33:14 +00:00
<Paper className={classes.root}>
2019-10-14 11:57:08 +00:00
<div className={classes.content} ref={anchor}>
{choices.length > 0 || displayCustomValue ? (
<>
{emptyOption && (
<MenuItem
className={classes.menuItem}
component="div"
{...getItemProps({
item: ""
})}
data-tc="singleautocomplete-select-option"
>
<Typography color="textSecondary">
<FormattedMessage defaultMessage="None" />
</Typography>
</MenuItem>
)}
2020-02-10 16:07:17 +00:00
{add && (
<MenuItem
className={classes.menuItem}
component="div"
{...getItemProps({
item: inputValue
})}
data-tc="singleautocomplete-select-option-add"
onClick={add.onClick}
>
<Add color="primary" className={classes.add} />
<Typography color="primary">{add.label}</Typography>
</MenuItem>
)}
2019-10-14 11:57:08 +00:00
{displayCustomValue && (
<MenuItem
className={classes.menuItem}
key={"customValue"}
selected={isCustomValueSelected}
component="div"
{...getItemProps({
item: inputValue
})}
data-tc="singleautocomplete-select-option"
>
<FormattedMessage
defaultMessage="Add new value: {value}"
description="add custom select input option"
values={{
value: inputValue
}}
/>
</MenuItem>
)}
2020-02-10 16:07:17 +00:00
{choices.length > 0 && (!!add || displayCustomValue) && (
2019-10-14 11:57:08 +00:00
<Hr className={classes.hr} />
)}
{choices.map((suggestion, index) => {
const choiceIndex = getChoiceIndex(
index,
emptyOption,
2020-02-10 16:07:17 +00:00
!!add || displayCustomValue
2019-10-14 11:57:08 +00:00
);
return (
<MenuItem
className={classes.menuItem}
key={JSON.stringify(suggestion)}
2019-10-28 16:16:49 +00:00
selected={selectedItem === suggestion.value}
2019-10-14 11:57:08 +00:00
component="div"
{...getItemProps({
index: choiceIndex,
item: suggestion.value
})}
data-tc="singleautocomplete-select-option"
>
{suggestion.label}
</MenuItem>
);
})}
2019-10-14 14:17:03 +00:00
{hasMore && (
<>
<Hr className={classes.hr} />
<div className={classes.progressContainer}>
<CircularProgress className={classes.progress} size={24} />
</div>
</>
)}
2019-10-14 11:57:08 +00:00
</>
) : (
<MenuItem
disabled={true}
component="div"
data-tc="singleautocomplete-select-no-options"
>
<FormattedMessage defaultMessage="No results found" />
</MenuItem>
)}
</div>
2019-11-29 12:19:18 +00:00
{choices.length > maxMenuItems && (
<div className={classes.arrowContainer}>
<div
className={classNames(classes.arrowInnerContainer, {
// Needs to be explicitely compared to false because
// scrolledToBottom can be either true, false or undefined
[classes.hide]: scrolledToBottom !== false
})}
>
<SVG src={chevronDown} />
</div>
2019-10-15 10:33:14 +00:00
</div>
2019-11-29 12:19:18 +00:00
)}
2019-10-14 11:57:08 +00:00
</Paper>
);
};
SingleAutocompleteSelectFieldContent.displayName =
"SingleAutocompleteSelectFieldContent";
export default SingleAutocompleteSelectFieldContent;