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

お気に入りユーザー一覧画面実装 #49

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

Yoshida-koshi
Copy link
Collaborator

@Yoshida-koshi Yoshida-koshi commented Jun 10, 2024

概要

お気に入りユーザー一覧画面を実装しました!

動作確認

create_favorite_user_list_page.mp4

参考

Copy link
Collaborator

@KobayashiYoh KobayashiYoh left a comment

Choose a reason for hiding this comment

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

コメントしました!
修正は任意です。

Comment on lines +22 to +27
// ボタンを押したら、すぐに画面遷移できるようにinitStateでAPIからデータを取得
Future(() async {
await ref
.read(favoriteUserListProvider.notifier)
.fetchFavoriteUserList(widget.statusId);
});
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

Comment on lines +6 to +8
@freezed
class FavoriteUserList with _$FavoriteUserList {
const factory FavoriteUserList({
Copy link
Collaborator

Choose a reason for hiding this comment

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

このクラス名だと、Listだけ持ってるクラスを連想しちゃう人も少なからずいると思うので、FavoriteUserListStateのような命名にしてあげると、状態管理で使うクラスであることをもっと想像しやすくなるんじゃないかなと思いました!
修正は任意です。

Comment on lines +3 to +18
class PgMobileDefaultButton extends StatelessWidget {
const PgMobileDefaultButton({
required this.backgroundColor,
required this.onPressed,
required this.buttonText,
required this.buttonTextStyle,
required this.buttonHeight,
required this.buttonWidth,
super.key,
});
final Color backgroundColor;
final void Function() onPressed;
final String buttonText;
final TextStyle buttonTextStyle;
final double buttonHeight;
final double buttonWidth;
Copy link
Collaborator

Choose a reason for hiding this comment

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

クラスの命名について

AppElevatedButtonクラスとかでも良いのかなと思いました。
他のクラスはAppColorsクラスのように、アプリ内で利用するクラスをAppと表現しています。
また、Defaultという単語に関してですが、アプリ内に登場するボタンが1種類の場合はDefaultでも良いのかな思います。ただ、今回のアプリはボタンが複数種類登場するため、Defaultがどのボタンを示すのか他のエンジニアがちょっと想像しにくいです。

クラス引数について

アプリ内で頻繁に使うWidgetにしてはrequiredの引数が少し多い気がします。引数でWidgetを自由にカスタマイズできる点はとても良いと思うのですが、クラスのインスタンスを生成するたびに6種類の引数を必ず入れないといけないのは、ちょっと使いづらい気がします。こういうクラスを設計する場合は、requiredだけでなく、デフォルト値とかも使ってみるとrequiredが減っていいんじゃないかなと思います。

UIコンポーネントの必要性について

そもそもUIコンポーネントのクラスを作る必要があるか考えてみてほしいです。同じ部分を共通化しようという考えはめちゃくちゃ大事ですし、これからも大事にしてほしいです。
ただ、今回の場合はカスタムなUIコンポーネントのクラスを作成するよりも、ElevatedButtonのThemeを一括で定義した方が、ElevatedButtonをそのまま使用できるため、他のエンジニアから見た可読性も使いやすさも向上するんじゃないかなと思いました(多分そのためにFlutter公式がThemeクラスを用意してくれている)。

Comment on lines +16 to +17
horizontal: 16,
vertical: 8,
Copy link
Collaborator

Choose a reason for hiding this comment

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

余白もレイアウトの一種なので、他の箇所と同じように16.w8.hで指定していただけると嬉しいです🙏

Comment on lines +94 to +95
// 画面のチラつきを防ぐために今までのデータをリセットする
ref.read(favoriteUserListProvider.notifier).resetData();
Copy link
Collaborator

Choose a reason for hiding this comment

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

勉強になります✨

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