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

249 lines
6.7 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";
import Paper from "@material-ui/core/Paper";
import { Theme } from "@material-ui/core/styles";
import Typography from "@material-ui/core/Typography";
import { makeStyles } from "@material-ui/styles";
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;
}
2019-10-14 14:17:03 +00:00
export interface SingleAutocompleteSelectFieldContentProps
extends Partial<FetchMoreProps> {
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(
(theme: Theme) => ({
2019-10-15 10:33:14 +00:00
arrowContainer: {
position: "relative"
},
arrowInnerContainer: {
alignItems: "center",
background: theme.palette.grey[50],
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: {
maxHeight: menuItemHeight * maxMenuItems + theme.spacing.unit * 2,
overflow: "scroll",
padding: 8
},
2019-10-15 10:33:14 +00:00
hide: {
opacity: 0
},
2019-10-14 11:57:08 +00:00
hr: {
margin: `${theme.spacing.unit}px 0`
},
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,
marginTop: theme.spacing.unit,
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;
}
const SingleAutocompleteSelectFieldContent: React.FC<
SingleAutocompleteSelectFieldContentProps
> = props => {
const {
choices,
displayCustomValue,
emptyOption,
getItemProps,
2019-10-14 14:17:03 +00:00
hasMore,
2019-10-14 11:57:08 +00:00
highlightedIndex,
2019-10-14 14:17:03 +00:00
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;
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 10:33:14 +00:00
const scrolledToBottom = isScrolledToBottom(anchor, scrollPosition, 50);
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>
)}
{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>
)}
{choices.length > 0 && displayCustomValue && (
<Hr className={classes.hr} />
)}
{choices.map((suggestion, index) => {
const choiceIndex = getChoiceIndex(
index,
emptyOption,
displayCustomValue
);
return (
<MenuItem
className={classes.menuItem}
key={JSON.stringify(suggestion)}
selected={
highlightedIndex === choiceIndex ||
selectedItem === suggestion.value
}
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-10-15 10:33:14 +00:00
<div className={classes.arrowContainer}>
<div
className={classNames(classes.arrowInnerContainer, {
[classes.hide]: scrolledToBottom && choices.length > 0
})}
>
<SVG src={chevronDown} />
</div>
</div>
2019-10-14 11:57:08 +00:00
</Paper>
);
};
SingleAutocompleteSelectFieldContent.displayName =
"SingleAutocompleteSelectFieldContent";
export default SingleAutocompleteSelectFieldContent;