javascript - Downshift:菜单应关闭,直到未找到结果

标签 javascript reactjs downshift

我遇到了 Reactjs 的问题前端代码库。我们使用了库名 react-autoauggest实现自动完成功能,但领导决定从 react-autoauggest 转移至downshift .我通读了这个文档并使用 useCombobox 实现了这个。钩,但他提出了一些问题,并告诉我在没有任何指导的情况下解决这些问题。我创建了这些问题的干净版本。
Downshift issues
首先我要解决issue-4 清除按钮应清除输入字段并关闭菜单 .但是当我单击清除按钮时,输入字段为空,但菜单仍处于打开状态。您能否在 downshift 中给我一些关于如何做这些事情的指导? ?
这是我从对象数组中过滤数据的代码和框链接:
View the Code sandbox here
应用.js :

const App = () => {

    // Array of objects
    const [inputItems, setInputItems] = useState(data);

    // State for all primitive types
    const [value, setValue] = useState('');


    /**
     * It will returns the new filtered array.
     * @param data Array<Object> - The array to iterate over
     * @param inputValue {string} - Your input value
     * @return Array<Object> - Returns the new filtered array
     */
    const filterByName = (data, inputValue) => {
        return data.filter(item => {
            return item.name.toLowerCase().indexOf(inputValue.toLowerCase()) !== -1;
        });
    };

    // props for the combobox
    const comboboxProps = {
        className: 'search has-icons-left has-buttons-right'
    };

    // props for the input
    const inputProps = {
        type: 'text',
        className: 'form-control',
        placeholder: 'Enter the state'
    };

    // props for the menu
    const menuProps = {
        className: 'menu'
    };


    // useComboBox
    const {
        isOpen,
        getComboboxProps,
        getInputProps,
        getMenuProps,
        getItemProps,
        highlightedIndex,
        selectItem,
    } = useCombobox({
        items: inputItems,
        onInputValueChange: ({inputValue}) => {
            setValue(inputValue);
            setInputItems(filterByName(data, inputValue));
        },
        itemToString: (item) => item ? item.name : '',
    });



    return (
        <div className="app">
            <div {...getComboboxProps(comboboxProps)}>
                <input {...getInputProps(inputProps)} />
                <span className="icon is-left"><MarkerIcon/></span>
                {(typeof value === 'string' && value.length > 0) ?
                    (<span className="button is-right">
                        <button className="btn btn-clear" onClick={() => selectItem(null)}>Clear</button>
                    </span>) : null}
                {/* Suggestions */}
                <ul {...getMenuProps(menuProps)}>
                    {isOpen && inputItems.map((item, index) => (
                        <li key={index} {...getItemProps({item, index})}
                            style={highlightedIndex === index ? {backgroundColor: "#f5f5f5"} : null}>
                            {item.name}
                        </li>
                    ))}
                </ul>
            </div>
        </div>
    );
};

export default App;

最佳答案

#1,如果没有输入值,防止打开:

<input {
  ...getInputProps({
    ...inputProps,
    onKeyDown: e => {
      if(!value) {
        return e.nativeEvent.preventDownshiftDefault = true 
      }
    }
  })
} />
#2 可能很棘手,因为如果你想修改状态,过滤器
将被激活。我建议对他们的输入进行一些布局,什么
显示 inputItems[highlightedIndex]如果 highlightedIndex > -1
  const completeValue =
    highlightedIndex > -1 ? inputItems[highlightedIndex].name : null;

 return (
   <div className="app">
     ...
{
  completeValue
  ? <input {...getInputProps(inputProps)} value={completeValue} />
    : (
      <input
        {...getInputProps({
          ...inputProps,
          onKeyDown: e => {
            if (!value) {
              return (e.nativeEvent.preventDownshiftDefault = true);
            }
          }
        })}
      />
    )
}
     ...
   </div>
 )
#3,关闭推荐框:
  const {
    isOpen,
    getComboboxProps,
    getInputProps,
    getMenuProps,
    getItemProps,
    highlightedIndex,
    closeMenu, // <= use this inbuilt functionality
    selectItem
  } = useCombobox({

And at the button click just call it by manually:

    <button
      className="btn btn-clear"
      onClick={() => {
        selectItem(null);
        setValue("");
        closeMenu();
      }}
    >
      Clear
    </button>

关于javascript - Downshift:菜单应关闭,直到未找到结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62910311/

相关文章:

javascript - 替代 li 元素的(不推荐使用的)value 属性

javascript - 即使条件不成立,map 函数也会返回项目

reactjs - 如何在 React 中使用 svg 填充 url

javascript - OnClick函数无法获取一个 block 的 'value'属性的值,但它可以获取另一个 block 的值

reactjs - 降档中的 getInputProps

javascript - 围绕 Paypal Downshift 创建一个 Kotlin React Wrapper

javascript - Ajax 请求 : Refused to set unsafe header

javascript - 如何使用 Meteor Slideout 包

javascript - 编译好的脚本应该放在 React 中的什么位置?

javascript - react | Items.map 不是一个函数