-
Notifications
You must be signed in to change notification settings - Fork 309
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
[project-sequencer-statemachine] ファイルを分けて整理 #2504
base: project-sequencer-statemachine
Are you sure you want to change the base?
[project-sequencer-statemachine] ファイルを分けて整理 #2504
Conversation
type StateFactories<T extends StateDefinition[], Input, Context> = { | ||
[U in StateId<T>]: ( | ||
args: FactoryArgs<T, U>, | ||
) => State<T, Input, Context> & { readonly id: U }; | ||
}; |
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.
型引数U extends StateId<T>
は無くても良さそうだったので無くしました。
(変更はこのファイルのみです)
🚀 プレビュー用ページを作成しました 🚀 更新時点でのコミットハッシュ: |
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.
ファイル分けすごく良いと思いました!!
ちょっとファイルを配置するディレクトリだけ相談させてください! 🙇
@@ -0,0 +1,71 @@ | |||
import { computed, ref } from "vue"; |
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.
このファイルはコンポーザブルなので、一旦composablesの下に置いていただけると・・・!!
(すでにsing関連のコンポーザブルのuseSequencerGridPattern.ts
が配置されているので)
useSequencerStateMachine.ts
みたいなコンポーザブルと分かりやすい名前にしておくと見た目が揃いそう!
将来的にはsrc/sing/composable
を作ってその下に置いてもいいかも・・・?
いやそうするとコンポーネントもここに置く必要があったりとややこしくなりそう。。。うーーーーん!!!!
@@ -0,0 +1,152 @@ | |||
import { SetNextState, State } from "@/sing/stateMachine"; |
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.
状態管理はコンポーネントではないので、コンポーネントの下にあると混乱するかもです!
(Vuexもコンポーネントの下になってしまう)
ステートマシンは重要な要素だと思うので、専用のディレクトリを切るとかどうでしょう?
src/sing/stateMachine
あたりに・・・!
stateMachine/stateMachine.ts
とstateMachine/states/
がある感じとかを想像してます。
内容
ファイルを分けて整理します。
StateFactories
のみ少し変更しています。(処理の変更はここのみで、あとは移動のみ行っています)関連 Issue
その他