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

vuexのstoreの呼び出しをリテラル引数からDot記法へ: components/Talk/AudioInfo.vue #2326

Merged
merged 4 commits into from
Oct 28, 2024

Conversation

Segu-g
Copy link
Member

@Segu-g Segu-g commented Oct 26, 2024

内容

components内における関数の呼び出しにおいて、dispatch("ACTION1", payloads) のような引数におけるリテラル指定から actions.ACTION(payload) のようにdot記法によるアクセスに変更します。

関連 Issue

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

その他

Comment on lines 344 to 356
// FIXME: slider.onChangeとhandleParameterChangeでstate変更が2経路になっているので統一する
type ParameterConfig = {
label: string;
sliderProps: Omit<PreviewSliderHelperProps, "onChange">;
onChange: PreviewSliderHelperProps["onChange"];
key: Parameter["key"];
};
type Parameter = {
label: string;
slider: PreviewSliderHelper;
action: Parameters<typeof store.dispatch>[0]["type"];
onChange: PreviewSliderHelperProps["onChange"];
key: keyof Omit<Preset, "name" | "morphingInfo">;
};
Copy link
Member

@Hiroshiba Hiroshiba Oct 28, 2024

Choose a reason for hiding this comment

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

この2つ(ParameterConfigとParameter)を分離させた理由はなんでしょうか? 👀
雰囲気とりあえず型をあわせたって感じかなという印象を受けたので、もし認識合ってそうでしたらそれがわかるようFIXMEコメント足しときたいなーと!

Comment on lines +476 to +486
const parameters = computed<Parameter[]>(() =>
parameterConfigs.value.map((parameterConfig) => ({
label: parameterConfig.label,
slider: previewSliderHelper({
...parameterConfig.sliderProps,
onChange: parameterConfig.onChange,
}),
onChange: parameterConfig.onChange,
key: parameterConfig.key,
})),
);
Copy link
Member

Choose a reason for hiding this comment

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

雰囲気これなくせそうな気がしますね!!
でparameterConfigsをparametersに改名して、あとは型を適当に合わせればきれいになりそう。

お忙しければ、なんか合図くれたらよしなにこっちでやっちゃおうと思います!

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.

ちょっと一段階ややこしくなってると感じたのでコメントしました!
PRの目的的にややこしくなっても良いと思うので、合図いただければこっちでややこしさ改善しちゃおうと思います!!

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.

いやーーーーーーなんとか切り崩せないかなと色々見てみたんですが、これ難しいですね!!!!!!!!!

ちょっと説明用にドキュメントコメントだけ書いたのでpushさせていただきます!!!
早めにマージしたほうがコンフリクトが少なくなって進めやすいと思うので、マージさせていただこうと思います。
もし変更中だったらすみません 🙇 🙇 🙇

(その際は別でプルリクエストいただければ!!!!!)

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 2950073 into VOICEVOX:main Oct 28, 2024
8 checks passed
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.

2 participants