Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vueファイル内の型エラーを減らす #1295

Merged
merged 9 commits into from
May 17, 2023

Conversation

yamachu
Copy link
Member

@yamachu yamachu commented Apr 21, 2023

ref: #1293

の続きをやってみました
vue-tsc を上げればそもそも対応しなくて良いコードも出るのではという仮説のもと上げてみた所、MenuItemonClick が対応不要になったため、エラーを減らす文脈として vue-tsc のバージョンアップも併せて行っています

内容

npm run typecheck:vue-tsc

で出力されるエラーをより減らします

関連 Issue

スクリーンショット・動画など

# ~/Projects/github.com/yamachu/voicevox $ [type-strict]
 npm run typecheck:vue-tsc

> [email protected] typecheck:vue-tsc
> vue-tsc --noEmit

src/components/MenuBar.vue:11:8 - error TS2322: Type '{ type: "separator"; label?: string | undefined; } | { type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { ...; } | { ...; })[]; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; } ...' is not assignable to type 'MenuItemData'.
  Type '{ type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { type: "button"; label?: string | undefined; onClick: () => void; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; } | { ...; }...' is not assignable to type 'MenuItemData'.
    Type '{ type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { type: "button"; label?: string | undefined; onClick: () => void; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; } | { ...; }...' is not assignable to type 'MenuItemRoot'.
      Type '{ type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { type: "button"; label?: string | undefined; onClick: () => void; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; } | { ...; }...' is not assignable to type '{ onClick?: (() => void) | undefined; subMenu: MenuItemData[]; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; }'.
        Types of property 'subMenu' are incompatible.
          Type '({ type: "separator"; label?: string | undefined; } | { type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { ...; } | { ...; })[]; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; }...' is not assignable to type 'MenuItemData[]'.
            Type '{ type: "separator"; label?: string | undefined; } | { type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { ...; } | { ...; })[]; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; } ...' is not assignable to type 'MenuItemData'.
              Type '{ type: "root"; label?: string | undefined; onClick?: (() => void) | undefined; subMenu: ({ type: "separator"; label?: string | undefined; } | ... | { type: "button"; label?: string | undefined; onClick: () => void; icon?: string | undefined; disabled?: boolean | undefined; disableWhenUiLocked: boolean; } | { ...; }...' is not assignable to type 'MenuItemData'.

11       :menudata="root"
          ~~~~~~~~



Found 1 error in src/components/MenuBar.vue:11

14a4f76

の対応で上記のエラーも解決

その他

satisfies を使ってみようかなと TS 4.9 を入れてみたら更にエラーが増えました…
メモ: FIXMEがついているMenuItem.vueのgetMenuBarHotkeyの箇所

@yamachu
Copy link
Member Author

yamachu commented Apr 26, 2023

ちょこっと調査してみたところ、

export type MenuItemCheckbox = MenuItemBase<"checkbox"> & {
-  checked: ComputedRef<boolean>;
+  checked: boolean;
  onClick: () => void;
  disabled?: boolean;
  disableWhenUiLocked: boolean;
};

にすると解決するっぽい感じでした(Vue詳しくないんだけど、これなんでなんですかね…)

で、現時点 MenuBar component では checkbox を使用していないようです
一旦この型を消し飛ばすだとかすれば型のエラーは全て解消しそうですが、どういう方針にしましょうか

@yamachu yamachu marked this pull request as ready for review April 26, 2023 12:48
@yamachu yamachu requested a review from a team as a code owner April 26, 2023 12:48
@yamachu yamachu requested review from y-chan and removed request for a team April 26, 2023 12:48
@Hiroshiba
Copy link
Member

未使用であれば一旦消してしまっても良いのかなと思いました!

再度実装する際computedじゃない値でも出来ないか試してみると良さそう
@yamachu
Copy link
Member Author

yamachu commented May 1, 2023

# ~/Projects/github.com/yamachu/voicevox $ [type-strict]
 npm run typecheck:vue-tsc

> [email protected] typecheck:vue-tsc
> vue-tsc --noEmit

現時点の状態だと型エラー排除完了 🚀

GitHub Actionsのtest workflowに追加すると project-s ブランチのテスト周りが通らなくなるんじゃないかなと思い、追加するのを躊躇しています…

Copy link
Member

@y-chan y-chan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
helperのテストもしっかり整備していただいてありがとうございます...!:pray:

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ほぼLGTMです!!

VOICEVOXのコードはわりとnullとundefinedが混じってしまっているので、undefinedだけでなくnullableを想定したほうが良いかも?とちょっと思いました。どうでしょう。。
(undefinedToDefault → nullableToDefault みたいな)

tests/unit/lib/map.spec.ts Outdated Show resolved Hide resolved
src/helpers/map.ts Show resolved Hide resolved
@yamachu
Copy link
Member Author

yamachu commented May 16, 2023

VOICEVOXのコードはわりとnullとundefinedが混じってしまっているので、undefinedだけでなくnullableを想定したほうが良いかも?とちょっと思いました。どうでしょう。。

うーん、これに関しては分けた方がいい気がします

というのもundefinedはたとえばMapから引っ張ってきてなかった、とか、そもそも定義されてなかったみたいなケースで使って、nullって明示的にこの状態をnullにしている、っていう時を想定して使う…と思うんですね(このprojectだとどういう扱いにする、みたいの明示していたか記憶にないので、実体験から書いています

そうやって表現したい状態が違うものを同じ関数で扱うようにすると、例えば途中でnullを返す処理が入った時にdefault値が返ったりするわけですが、それはnullの時に表現したいものだったのか?と考えなくてはならなそうなので…
であれば最初っから扱えないようにする、みたいな方が良かったりしそうだなと思いました

yamachu and others added 2 commits May 16, 2023 21:53
@yamachu
Copy link
Member Author

yamachu commented May 16, 2023

#1035

undefinedやnullについての扱いどうしようか悩んでいるIssueがあったのでメモがてらはっておこう

@Hiroshiba
Copy link
Member

なるほどです。プロジェクトとしてどちらも許容されているのが良くないなと思いました!
とりあえず===undefinedで!

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!

@Hiroshiba Hiroshiba merged commit 32940ea into VOICEVOX:main May 17, 2023
@yamachu yamachu deleted the type-strict branch June 21, 2023 13:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants