-
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.
ファイル分けすごく良いと思いました!!
ちょっとファイルを配置するディレクトリだけ相談させてください! 🙇
src/components/Sing/sequencerStateMachine/states/addNoteState.ts
Outdated
Show resolved
Hide resolved
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!!
ちょっとこちら都合なのですが、sequencerStateMachine/useSequencerStateMachine.ts
をuseSequencerStateMachine/index.ts
に変えさせていただこうと思います 🙇
こうするとこのコンポーザブルをインポートする時に
import { useSequencerStateMachine } from "@/composables/useSequencerStateMachine"
で行けるようになって、ディレクトリが透過?されて見た目は普通の関数ファイルと一緒になるから、使い手側に便利かなと・・・!
あとファイル整理して気づいたんですが、useSequencerStateMachine
から使われるstates
とかはsrc/sing/SequencerStateMachine
とかに配置しても良いかもと思いました。
コンポーザブルはそのステートマシンのVue用のインターフェースを提供するだけみたいな!
一旦今のままでも大丈夫ですし、そちらに変更もありだと思います!
コメントお待ちして、今のままでも大丈夫そうならマージさせていただこうと思います!
内容
ファイルを分けて整理します。
StateFactories
のみ少し変更しています。(処理の変更はここのみで、あとは移動のみ行っています)関連 Issue
その他