防止Material-UI InputLabel移至“选择”组件的左上方

时间:2019-08-30 00:02:53

标签: reactjs material-ui styled-components

无论我尝试什么,我似乎都无法获得Material-UI Select组件的真正占位符功能。在<Select />上使用占位符prop无效,并且看起来好像没有将prop传递给输入,还是没有以某种方式显示它。

通读Select组件的Material-UI演示代码,似乎它们通过使用<InputLabel />实现了占位符功能。他们有这个厚脸皮的小动画,可以将其移动到输入的左上方。好的,很不错。但这与我们网站的设计不符,我想禁用它。不幸的是,disableAnimation道具只会使标签跳到左上角,而不会完全消失。

我想让我的下拉组件说“选择项目”作为占位符文本,然后在打开菜单时,该文本应消失。仅当用户单击下拉菜单但未选择任何内容时,它才会返回。如果他们选择一个值,则该值应替换占位符,并且“选择项”不应出现在任何地方。

(注意:我在使用react-select时可以正常工作,但是我需要使用Material-UI的波纹效果,因此我尝试使用Material UI覆盖它们的MenuList和MenuItem组件,但是它将所有道具传递给了DOM元素并引发了很多错误。因此,我回到了绘图板上,决定使用整个Material UI Select组件。)

当前代码:

const Dropdown = ({options, ...props}) => {
  const [selected, setSelected] = useState('');

  const testOptions = [
  { value: 'chocolate', label: 'Chocolate' },
  { value: 'strawberry', label: 'Strawberry' },
  { value: 'vanilla', label: 'Vanilla' },
];

  const handleChange = (selected) => {
    setSelected(selected);
    console.log('is anything happening')
  }

  options = options || testOptions;

  const menuItems = options.map((option, index) => (
      <StyledMenuItem
        key={index}
        value={option.value}
        label={option.label}
      />
    ));

  return (
    <FormControl hiddenLabel>
      <InputLabel disableAnimation>Select Item</InputLabel>
      <StyledSelect
        value={selected}
        onChange={handleChange}

        variant="outlined"
        disableUnderline={true}
      >
        <MenuItem value="">
          <em>Select Item</em>
        </MenuItem>
        {menuItems}
      </StyledSelect>
    </FormControl>
  )
};


const StyledMenuItem = styled(MenuItem)`
  min-height: 32px;
  height: 32px;
  padding: 0 12px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: ${colors.primary800};
  outline: none;

  &:hover {
    background-color: ${colors.primary100};
  }

  & .MuiTouchRipple-root {
    color: ${colors.primary050};
  }
`

const StyledSelect = styled(Select)`

  input::-webkit-contacts-auto-fill-button,
    input::-webkit-credentials-auto-fill-button {
        display: none !important;
}
    border: 1px solid ${colors.primary400};
    border-radius: 2px;
    height: 40px;
    box-shadow: none;
    outline: none;

  & .MuiSelect-icon {
    fill: ${colors.primary300};
    width: 36px;
    height: 36px;
    top: inherit;
  }
`

1 个答案:

答案 0 :(得分:1)

我找不到真正干净的方法,但是以下方法似乎可以解决问题:

<InputLabel shrink={false}>
    {selected !== '' && 'Select item'}
</InputLabel>

添加shrink={false}可以确保标签在聚焦时不会向上移动。使用默认的Material-UI样式,这些选项将位于InputLabel上,因此在选择时不会看到它。然后,当选择一个值时,将设置selected变量,并且文本将从标签中隐藏。

如果由于您的自定义样式而使选择项没有出现在InputLabel上,则您可以使用onFocusonBlur跟踪焦点,以在选择项聚焦时隐藏标签内容。