Material-UI-TypeScript-Generic Autocomplete

Aug 25 2020

TypeScriptを使用AutoCompleteして、オブジェクトのプロパティ名に基づいて入力値を取得するMaterial-UIコンポーネントを作成しようとしています->obj[key]

ただし、小道具にgetOptionLabelは次のエラーが表示されます。

タイプ '(オプション:T)=> T [keyof T] | "" 'はタイプ'(オプション:T)=>文字列 'に割り当てることはできません。

小道具は文字列を想定していますが、オブジェクトのプロパティの値が文字列ではない可能性があることを理解しています。

質問:以下のコードに基づいてこのエラーが発生するのはなぜですか?どうすれば解決できますか?

コードサンドボックスリンク: https://codesandbox.io/s/mui-ts-generic-autocomplete-o0elk?fontsize=14&hidenavigation=1&theme=dark

また、codesandboxリンクがある時点で元の問題を反映していない場合の元のコード:

import * as React from "react";
import { Autocomplete } from "@material-ui/lab";
import { TextField } from "@material-ui/core";

export const isString = (item: any): item is string => {
  return typeof item === "string";
};

type AutoCompleteFieldProps<T> = {
  selectValue: keyof T;
  options: T[];
};

// Top films as rated by IMDb users. http://www.imdb.com/chart/top
const topFilms = [
  { title: "The Shawshank Redemption", year: 1994 },
  { title: "The Godfather", year: 1972 },
  { title: "The Godfather: Part II", year: 1974 },
  { title: "The Dark Knight", year: 2008 },
  { title: "12 Angry Men", year: 1957 },
  { title: "Schindler's List", year: 1993 },
  { title: "Pulp Fiction", year: 1994 }
];

const AutoCompleteField = <T extends {}>({
  selectValue,
  options
}: AutoCompleteFieldProps<T>): React.ReactElement => {
  return (
    <Autocomplete<T>
      id={name}
      options={options}
      fullWidth
      // Error here
      getOptionLabel={(option) =>
        isString(option[selectValue]) ? option[selectValue] : ""
      }
      renderInput={(params) => (
        <TextField {...params} label="demo autocomplete" />
      )}
    />
  );
};

// error:
// Type '(option: T) => T[keyof T] | ""' is not assignable to type '(option: T) => string'.

export default function App() {
  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <AutoCompleteField<{ title: string; year: number }>
        options={topFilms}
        selectValue="title"
      />
    </div>
  );
}

前もって感謝します!

回答

1 MacD Aug 28 2020 at 18:37

私はあなたのコードを動作させました

getOptionLabel={(option) =>{
    const val = option[selectValue];
    return isString(val) ? val : ""
  }

変数を直接使用しないと、タイプガードがうまく機能しなかったようです。

1 hgb123 Aug 26 2020 at 04:05

()のoptionタイプを作るトリックをしましたanyoption: any

getOptionLabel={(option: any) =>
  isString(option[selectValue]) ? option[selectValue] : ""
}