前提・実現したいこと
TypeScriptとReactでウェブアプリを作っています。
Index Signatureで取得したオブジェクトの値の型がundefinedかどうかをチェックしたいです。
発生している問題・エラーメッセージ
コード中の prevState[contentKey] の型をifでチェックしているのに、IDEから警告を受けてしまいます。
TS2461: Type 'string[] | undefined' is not an array type.
該当のソースコード
質問に無関係なコードは // ... で省略しています。
TypeScript
1// prevState[contentKey] !== undefined としているのに prevState[contentKey] の型が array<string> | undefined と判定される 2 const [content, setContent] = useState<ContentData>(defaultContent); 3 // ... 4 const uploadFiles = (files: ExtendedFile[], contentKey: contentArrayKey, // ... 5 // ... 6 setContent((prevState: ContentData) => { 7 if (prevState[contentKey] !== undefined) { 8 // ここの prevState[contentKey] でエラーが発生しています 9 return ({...prevState, [contentKey]: [...prevState[contentKey], path]}) 10 } 11 return prevState 12 }) 13 // ... 14 15 16// 以下は上で使用したInterfaceです 17export type contentArrayKey = "thumbnailsPath" | "trialBookPath" | "bookPath" | "thumbnailsUrl" | "trialBookUrl"; 18 19export interface ContentData { 20 [key: string]: undefined | (string | number | Array<string> | firebase.firestore.DocumentReference | firebase.firestore.Timestamp), 21 // ... 22 thumbnailsPath: Array<string>; 23 // ... 24 thumbnailsUrl?: Array<string>; 25 trialBookUrl?: Array<string>; 26 // ... 27 trialBookPath?: Array<string>; 28 bookPath?: Array<string>; 29 // ... 30 31 32// 以下は上で使用した定数です。 33export const defaultContent : ContentData = { 34 ref: undefined, authorRef: undefined, bookUrl: undefined, contentId: getRandomId(10), createdAt: timeStamp, updatedAt: timeStamp, 35 appStoreUrl: "", 36 bookPath: new Array<string>(), 37 category: "", 38 description: "", 39 macInstallerPath: "", 40 playStoreUrl: "", 41 price: 0, 42 thumbnailsPath: new Array<string>(), 43 thumbnailsUrl: new Array<string>(), 44 trialBookPath: new Array<string>(), 45 trialBookUrl: new Array<string>(), 46 windowsInstallerPath: "", 47 browserUrl: "", 48 title: "", 49 visibility: "private", 50}
試したこと
ContentDataインターフェースのシグネチャから undefined を除くと、シグネチャ自身に型不一致(undefinedが存在しない)のエラーが発生する代わりに該当のエラーは消えました。
contentArrayKeyからContentDataインターフェースでオプションになっているキーを除くと該当のエラーは消えました。
補足情報(FW/ツールのバージョンなど)
IDEはWebStorm 2021.2です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/26 11:39 編集
2021/08/28 09:32