import React, { useState, useEffect, useCallback, ReactElement } from "react"; import Icon, { IconName, IconSize } from "./Icon"; import { CommonComponentProps, Classes } from "./common"; import Text, { TextType } from "./Text"; import { Popover, PopperBoundary, Position } from "@blueprintjs/core"; import { getTypographyByKey } from "constants/DefaultTheme"; import styled from "constants/DefaultTheme"; import SearchComponent from "components/designSystems/appsmith/SearchComponent"; import { Colors } from "constants/Colors"; import Spinner from "./Spinner"; export type DropdownOnSelect = (value?: string, dropdownOption?: any) => void; export type DropdownOption = { label?: string; value?: string; id?: string; icon?: IconName; leftElement?: string; searchText?: string; subText?: string; iconSize?: IconSize; iconColor?: string; onSelect?: DropdownOnSelect; data?: any; }; export interface DropdownSearchProps { enableSearch?: boolean; searchPlaceholder?: string; onSearch?: (value: any) => void; } export interface RenderDropdownOptionType { index?: number; option: DropdownOption; optionClickHandler?: (dropdownOption: DropdownOption) => void; isSelectedNode?: boolean; extraProps?: any; errorMsg?: string; optionWidth: string; } type RenderOption = ({ errorMsg, index, option, optionClickHandler, optionWidth, }: RenderDropdownOptionType) => ReactElement; export type DropdownProps = CommonComponentProps & DropdownSearchProps & { options: DropdownOption[]; selected: DropdownOption; onSelect?: DropdownOnSelect; width?: string; height?: string; showLabelOnly?: boolean; optionWidth?: string; dropdownHeight?: string; dropdownMaxHeight?: string; showDropIcon?: boolean; dropdownTriggerIcon?: React.ReactNode; containerClassName?: string; headerLabel?: string; SelectedValueNode?: typeof DefaultDropDownValueNode; bgColor?: string; renderOption?: RenderOption; isLoading?: boolean; errorMsg?: string; // If errorMsg is defined, we show dropDown's error state with the message. placeholder?: string; helperText?: string; /** * if fillOptions is true, * dropdown popover width will be same as dropdown width * @type {boolean} */ fillOptions?: boolean; dontUsePortal?: boolean; hideSubText?: boolean; boundary?: PopperBoundary; }; export interface DefaultDropDownValueNodeProps { selected: DropdownOption; showLabelOnly?: boolean; isOpen?: boolean; errorMsg?: string; renderNode?: RenderOption; placeholder?: string; showDropIcon?: boolean; optionWidth: string; hideSubText?: boolean; } export interface RenderDropdownOptionType { option: DropdownOption; optionClickHandler?: (dropdownOption: DropdownOption) => void; } export const DropdownContainer = styled.div<{ width: string; height?: string }>` width: ${(props) => props.width}; height: ${(props) => props.height || `38px`}; position: relative; `; const DropdownTriggerWrapper = styled.div<{ isOpen: boolean; disabled?: boolean; }>` height: 100%; display: flex; align-items: center; justify-content: space-between; cursor: pointer; ${(props) => props.isOpen && !props.disabled ? ` box-sizing: border-box; border: 1px solid #80bdff; ` : null}; .${Classes.TEXT} { ${(props) => props.disabled ? `color: ${props.theme.colors.dropdown.header.disabledText}` : `color: ${props.theme.colors.dropdown.header.text}`}; } `; const Selected = styled.div<{ isOpen: boolean; disabled?: boolean; height: string; bgColor?: string; hasError?: boolean; selected?: boolean; isLoading?: boolean; }>` padding: ${(props) => props.theme.spaces[2]}px ${(props) => props.theme.spaces[3]}px; background: ${(props) => { if (props.disabled) { return props.theme.colors.dropdown.header.disabledBg; } else if (props.hasError) { return Colors.FAIR_PINK; } return props.bgColor || Colors.WHITE; }}; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; width: 100%; height: ${(props) => props.height}; cursor: ${(props) => props.disabled || props.isLoading ? "not-allowed" : "pointer"}; ${(props) => props.hasError ? `.sub-text { color: ${props.theme.colors.danger.main} !important; }` : ""} ${(props) => props.hasError ? `border: 1px solid ${props.theme.colors.danger.main}` : props.isOpen ? `border: 1px solid ${ !!props.bgColor ? props.bgColor : props.theme.colors.info.main }` : props.disabled ? `border: 1px solid ${props.theme.colors.dropdown.header.disabledBg}` : `border: 1px solid ${!!props.bgColor ? props.bgColor : Colors.ALTO2}`}; .${Classes.TEXT} { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; width: calc(100% - 10px); ${(props) => props.disabled ? `color: ${props.theme.colors.dropdown.header.disabledText}` : `color: ${ !!props.bgColor ? Colors.WHITE : props.selected ? props.theme.colors.dropdown.selected.text : props.theme.colors.dropdown.header.text }`}; } &:hover { background: ${(props) => props.hasError ? Colors.FAIR_PINK : props.theme.colors.dropdown.hovered.bg}; } `; const DropdownSelect = styled.div``; export const DropdownWrapper = styled.div<{ width: string; }>` width: ${(props) => props.width}; height: fit-content; z-index: 1; background-color: ${(props) => props.theme.colors.dropdown.menuBg}; box-shadow: ${(props) => props.theme.colors.dropdown.menuShadow}; margin-top: ${(props) => -props.theme.spaces[3]}px; padding: ${(props) => props.theme.spaces[3]}px 0; .dropdown-search { margin: 4px 12px 8px; width: calc(100% - 24px); } `; const DropdownOptionsWrapper = styled.div<{ maxHeight?: string; height: string; }>` display: flex; flex-direction: column; height: ${(props) => props.height}; max-height: ${(props) => props.maxHeight}; overflow-y: auto; overflow-x: hidden; `; const OptionWrapper = styled.div<{ selected: boolean; }>` padding: ${(props) => props.theme.spaces[2] + 1}px ${(props) => props.theme.spaces[5]}px; cursor: pointer; display: flex; align-items: center; background-color: ${(props) => props.selected ? props.theme.colors.propertyPane.dropdownSelectBg : null}; &&& svg { rect { fill: ${(props) => props.theme.colors.dropdownIconBg}; } } .${Classes.TEXT} { color: ${(props) => props.selected ? props.theme.colors.dropdown.menu.hoverText : props.theme.colors.dropdown.menu.text}; } .${Classes.ICON} { margin-right: ${(props) => props.theme.spaces[5]}px; svg { path { ${(props) => props.selected ? `fill: ${props.theme.colors.dropdown.selected.icon}` : `fill: ${props.theme.colors.dropdown.icon}`}; } } } &:hover { background-color: ${(props) => props.theme.colors.dropdown.menu.hover}; &&& svg { rect { fill: ${(props) => props.theme.colors.textOnDarkBG}; } } .${Classes.TEXT} { color: ${(props) => props.theme.colors.dropdown.menu.hoverText}; } .${Classes.ICON} { svg { path { fill: ${(props) => props.theme.colors.dropdown.hovered.icon}; } } } } `; const LabelWrapper = styled.div<{ label?: string }>` display: flex; flex-direction: column; align-items: flex-start; span:last-child { margin-top: ${(props) => props.theme.spaces[2] - 1}px; } &:hover { .${Classes.TEXT} { color: ${(props) => props.theme.colors.dropdown.selected.text}; } } `; const StyledSubText = styled(Text)<{ showDropIcon?: boolean; }>` margin-left: auto; && { color: ${(props) => props.theme.colors.dropdown.menu.subText}; } &.sub-text { color: ${(props) => props.theme.colors.dropdown.selected.subtext}; position: absolute; right: ${(props) => (props.showDropIcon ? "39px" : "12px")}; } `; const LeftIconWrapper = styled.span` margin-right: 15px; height: 100%; position: relative; top: 1px; `; const HeaderWrapper = styled.div` color: ${Colors.DOVE_GRAY}; font-size: 10px; padding: 0px 7px 7px 7px; `; const SelectedDropDownHolder = styled.div` display: flex; align-items: center; min-width: 0; width: 100%; overflow: hidden; & ${Text} { max-width: 100%; overflow: hidden; text-overflow: ellipsis; } `; const SelectedIcon = styled(Icon)` margin-right: 6px; & > div:first-child { height: 18px; width: 18px; svg { height: 18px; width: 18px; rect { fill: ${(props) => props.theme.colors.dropdownIconBg}; rx: 0; } path { fill: ${(props) => props.theme.colors.propertyPane.label}; } } } svg { path { fill: ${(props) => props.fillColor ? props.fillColor : props.theme.colors.dropdown.selected.icon}; } } `; const DropdownIcon = styled(Icon)` margin-right: 7px; svg { fill: ${(props) => props.fillColor ? props.fillColor : props.theme.colors.dropdown.icon}; } `; const ErrorMsg = styled.span` ${(props) => getTypographyByKey(props, "p3")}; color: ${Colors.POMEGRANATE2}; margin-top: ${(props) => props.theme.spaces[3]}px; `; const HelperMsg = styled.span` ${(props) => getTypographyByKey(props, "p3")}; color: ${(props) => props.theme.colors.dropdown.menu.subText}; margin: 6px 0px 10px; `; const ErrorLabel = styled.span` ${(props) => getTypographyByKey(props, "p1")}; color: ${Colors.POMEGRANATE2}; `; function DefaultDropDownValueNode({ errorMsg, hideSubText, optionWidth, placeholder, renderNode, selected, showDropIcon, showLabelOnly, }: DefaultDropDownValueNodeProps) { const LabelText = selected ? showLabelOnly ? selected.label : selected.value : placeholder ? placeholder : "Please select a option."; function Label() { return errorMsg ? ( {LabelText} ) : ( {LabelText} ); } return ( {renderNode ? ( renderNode({ isSelectedNode: true, option: selected, errorMsg, optionWidth, }) ) : ( <> {selected?.icon ? ( ) : null} ); } interface DropdownOptionsProps extends DropdownProps, DropdownSearchProps { optionClickHandler: (option: DropdownOption) => void; renderOption?: RenderOption; headerLabel?: string; selected: DropdownOption; optionWidth: string; } export function RenderDropdownOptions(props: DropdownOptionsProps) { const { onSearch, optionClickHandler, optionWidth, renderOption } = props; const [options, setOptions] = useState>(props.options); const [searchValue, setSearchValue] = useState(""); const onOptionSearch = (searchStr: string) => { const search = searchStr.toLocaleUpperCase(); const filteredOptions: Array = props.options.filter( (option: DropdownOption) => { return ( option.label?.toLocaleUpperCase().includes(search) || option.searchText?.toLocaleUpperCase().includes(search) ); }, ); setSearchValue(searchStr); setOptions(filteredOptions); onSearch && onSearch(searchStr); }; return options.length > 0 ? ( {props.enableSearch && ( )} {props.headerLabel && {props.headerLabel}} {options.map((option: DropdownOption, index: number) => { if (renderOption) { return renderOption({ option, index, optionClickHandler, optionWidth, }); } return ( props.optionClickHandler(option)} selected={props.selected.value === option.value} > {option.leftElement && ( {option.leftElement} )} {option.icon ? ( ) : null} {props.showLabelOnly ? ( {option.label} ) : option.label && option.value ? ( {option.value} {option.label} ) : ( {option.value} )} {option.subText ? ( {option.subText} ) : null} ); })} ) : null; } export default function Dropdown(props: DropdownProps) { const { onSelect, showDropIcon = true, isLoading = false, SelectedValueNode = DefaultDropDownValueNode, renderOption, errorMsg = "", placeholder, helperText, } = { ...props }; const [isOpen, setIsOpen] = useState(false); const [selected, setSelected] = useState(props.selected); const closeIfOpen = () => { if (isOpen) { setIsOpen(false); } }; useEffect(() => { setSelected(props.selected); closeIfOpen(); }, [props.selected]); const optionClickHandler = useCallback( (option: DropdownOption) => { setSelected(option); setIsOpen(false); onSelect && onSelect(option.value, option); option.onSelect && option.onSelect(option.value, option); }, [onSelect], ); const disabled = props.disabled || isLoading; const downIconColor = errorMsg ? Colors.POMEGRANATE2 : Colors.DARK_GRAY; const onClickHandler = () => { if (!props.disabled) { setIsOpen(!isOpen); } }; const [dropdownWrapperWidth, setDropdownWrapperWidth] = useState( "100%", ); const dropdownWrapperRef = useCallback( (ref: HTMLDivElement) => { if (ref) { const { width } = ref.getBoundingClientRect(); setDropdownWrapperWidth(`${width}px`); } }, [setDropdownWrapperWidth], ); const dropdownOptionWidth = props.fillOptions ? dropdownWrapperWidth : props.optionWidth || "260px"; const dropdownTrigger = props.dropdownTriggerIcon ? ( {props.dropdownTriggerIcon} ) : ( setIsOpen(!isOpen)} selected={!!selected} > {} {isLoading ? ( ) : ( showDropIcon && ( ) )} {errorMsg && {errorMsg}} {helperText && !isOpen && !errorMsg && ( {helperText} )} ); const dropdownWidth = props.width || "260px"; return ( !disabled && setIsOpen(state)} popoverClassName={props.className} position={Position.BOTTOM_LEFT} usePortal={!props.dontUsePortal} > {dropdownTrigger} ); }