reactjs / reactjs/react.dev

useState of the Tuple type is not safe

未關閉
#5,940 1 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視

還沒有人認領這個 Issue。

主要語言
JavaScript
星號
11.8k
分支
7.9k
平均合併
1 天 11 小時
30 天內合併 PR
11

描述

I'm reading TS and noticed a vulnerability like UseState, as described in the documentation, we get a tuple of two elements.

The tuple in TS has a vulnerability because you can use array methods like pop, push on them. Which isn't safe because TS doesn't compute the type after that, it stays.

I suggest adding a readonly modifier to avoid these situations

  const state = useState();

  state.pop();

  const [value, setValue] = state;
  
  // setValue is undefined, but ts shows that the value is of type React.Dispatch<React.SetStateAction<undefined>

貢獻指南

開啟貢獻指南

從這裡開始

  1. 先讀完整個 Issue,再讀專案的貢獻指南。
  2. 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
  3. Fork 儲存庫,在一個分支上完成修改。
  4. 送出 Pull Request,並在描述裡引用這個 Issue 編號。

研究方向

該 issue 沒有指出 react.dev 中的檔案、測試或進入點。首先確定所要求的 readonly useState tuple 應屬於文件還是 React 的 TypeScript 型別定義,然後檢查現有的 useState 範例和型別行為。當該 tuple 無法被不安全地變異,且文件記載的 TypeScript 行為得到驗證時,即視為完成。

由索引模型根據 Issue 內容生成。

評估

技術堆疊
react, typescript
領域
documentation
Issue 類型
功能
難度
5/5
預估耗時
一週以上
活躍度
停滯
描述清晰度
需要釐清
新手友好度
25/100

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。