-
Notifications
You must be signed in to change notification settings - Fork 304
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
vuexのstoreの呼び出しをリテラル引数からDot記法へ: components/Talk/AudioInfo.vue #2326
Conversation
src/components/Talk/AudioInfo.vue
Outdated
// 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">; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この2つ(ParameterConfigとParameter)を分離させた理由はなんでしょうか? 👀
雰囲気とりあえず型をあわせたって感じかなという印象を受けたので、もし認識合ってそうでしたらそれがわかるようFIXMEコメント足しときたいなーと!
const parameters = computed<Parameter[]>(() => | ||
parameterConfigs.value.map((parameterConfig) => ({ | ||
label: parameterConfig.label, | ||
slider: previewSliderHelper({ | ||
...parameterConfig.sliderProps, | ||
onChange: parameterConfig.onChange, | ||
}), | ||
onChange: parameterConfig.onChange, | ||
key: parameterConfig.key, | ||
})), | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
雰囲気これなくせそうな気がしますね!!
でparameterConfigsをparametersに改名して、あとは型を適当に合わせればきれいになりそう。
お忙しければ、なんか合図くれたらよしなにこっちでやっちゃおうと思います!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ちょっと一段階ややこしくなってると感じたのでコメントしました!
PRの目的的にややこしくなっても良いと思うので、合図いただければこっちでややこしさ改善しちゃおうと思います!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
いやーーーーーーなんとか切り崩せないかなと色々見てみたんですが、これ難しいですね!!!!!!!!!
ちょっと説明用にドキュメントコメントだけ書いたのでpushさせていただきます!!!
早めにマージしたほうがコンフリクトが少なくなって進めやすいと思うので、マージさせていただこうと思います。
もし変更中だったらすみません 🙇 🙇 🙇
(その際は別でプルリクエストいただければ!!!!!)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!!
変更ありがとうございます!!!
内容
の続きです。
components内における関数の呼び出しにおいて、dispatch("ACTION1", payloads) のような引数におけるリテラル指定から actions.ACTION(payload) のようにdot記法によるアクセスに変更します。
で後回しにしていた
を対応しています。
その都合上、sliderとそれ以外でのonChangeを共通化する変更を行っています。
関連 Issue
スクリーンショット・動画など
その他