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

[project-sequencer-statemachine] ファイルを分けて整理 #2504

Open
wants to merge 1 commit into
base: project-sequencer-statemachine
Choose a base branch
from

Conversation

sigprogramming
Copy link
Contributor

@sigprogramming sigprogramming commented Jan 24, 2025

内容

ファイルを分けて整理します。

StateFactoriesのみ少し変更しています。(処理の変更はここのみで、あとは移動のみ行っています)

関連 Issue

その他

@sigprogramming sigprogramming requested a review from a team as a code owner January 24, 2025 13:14
@sigprogramming sigprogramming requested review from Hiroshiba and removed request for a team January 24, 2025 13:14
Comment on lines +88 to 92
type StateFactories<T extends StateDefinition[], Input, Context> = {
[U in StateId<T>]: (
args: FactoryArgs<T, U>,
) => State<T, Input, Context> & { readonly id: U };
};
Copy link
Contributor Author

@sigprogramming sigprogramming Jan 24, 2025

Choose a reason for hiding this comment

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

型引数U extends StateId<T>は無くても良さそうだったので無くしました。
(変更はこのファイルのみです)

@voicevox-preview-pages
Copy link

🚀 プレビュー用ページを作成しました 🚀

更新時点でのコミットハッシュ:ca7c076

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.

ファイル分けすごく良いと思いました!!
ちょっとファイルを配置するディレクトリだけ相談させてください! 🙇

@@ -0,0 +1,71 @@
import { computed, ref } from "vue";
Copy link
Member

@Hiroshiba Hiroshiba Jan 24, 2025

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";
Copy link
Member

@Hiroshiba Hiroshiba Jan 24, 2025

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.tsstateMachine/states/がある感じとかを想像してます。

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