更改“材质UI自动完成”选项的颜色

时间:2020-10-02 12:44:03

标签: css reactjs material-ui

我正在使用Material UI的Autocomplete,并且有一个带有颜色属性的列表。我必须使用选项背景中的相应颜色逐个选项进行渲染。

以下是一个示例:

import React from "react";
import TextField from "@material-ui/core/TextField";
import Autocomplete from "@material-ui/lab/Autocomplete";

export default function ComboBox() {
  return (
    <Autocomplete
      id="combo-box-demo"
      options={top100Films}
      getOptionLabel={option => option.title}
      style={{ width: 300 }}
      renderInput={params => {
        return (
          <TextField
            {...params}
            label="Combo box"
            variant="outlined"
            fullWidth
          />
        );
      }}
    />
  );
}

const top100Films = [
  { title: "The Shawshank Redemption", year: 1994, color: '#FF0000' },
  { title: "The Godfather", year: 1972, color: '#FF5555' },
  { title: "Avatar", year: 2010, color: '#FFFFFF' },
  // Plus a bunch more
];

1 个答案:

答案 0 :(得分:1)

您可以使用renderOption来有条件地渲染MaterialUI最新版本中每个选项的样式。

<Autocomplete
  renderOption={(props, option) => {
    const { title, color } = option;
    return (
      <span {...props} style={{ backgroundColor: color }}>
        {title}
      </span>
    );
  }}
  {...}
/>

实时演示

Edit 64171767/change-the-color-of-material-ui-autocomplete-option