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

♻️ Login のディレクトリを移動 #141

Merged
merged 1 commit into from
Dec 10, 2023
Merged

Conversation

tatsutakein
Copy link
Member

@tatsutakein tatsutakein commented Dec 10, 2023

Issue

  • close #ISSUE_NUMBER 🦕

概要

Login のディレクトリを移動します。

レビュー観点

特になし

レビューレベル

  • Lv0: まったく見ないで Approve する
  • Lv1: ぱっとみて違和感がないかチェックして Approve する
  • Lv2: 仕様レベルまで理解して、仕様通りに動くかある程度検証して Approve する
  • Lv3: 実際に環境で動作確認したうえで Approve する

レビュー優先度

  • すぐに見てもらいたい ( hotfix など ) 🚀
  • 今日中に見てもらいたい 🚗
  • 今日〜明日中で見てもらいたい 🚶
  • 数日以内で見てもらいたい 🐢

参考リンク

スクリーンショット

Before After

Summary by CodeRabbit

  • リファクタ
    • 認証とナビゲーションに関連する関数と画面のインポートパスを再編成しました。
    • LoginScreenStateMachineの参照を変更し、インポート文を更新しました。
    • パッケージ宣言をclub.nito.feature.authからclub.nito.feature.auth.loginに変更しました。
    • LoginScreenや関連クラスをauthパッケージからauth.loginサブパッケージに移動しました。

@tatsutakein tatsutakein requested a review from a team as a code owner December 10, 2023 00:07
Copy link

coderabbitai bot commented Dec 10, 2023

Walkthrough

アプリケーション内の認証とナビゲーションに関連する関数や画面のインポートパスを再編成する変更が行われました。具体的には、認証機能に関連するクラスが新しいサブパッケージに移動され、それに伴いインポート文が更新されています。

Changes

ファイルパス 変更概要
.../NitoNavHost.kt 認証とナビゲーションに関連する関数と画面のインポートパスを更新
.../auth/di/AuthFeatureModule.kt LoginScreenStateMachineのインポート文をclub.nito.feature.authからclub.nito.feature.auth.loginに変更
.../auth/login/... パッケージ宣言をclub.nito.feature.authからclub.nito.feature.auth.loginに変更し、関連クラスをauthからauth.loginサブパッケージに移動

🐰✨
コードの森を跳ねるうさぎ、
パスを整える旅を続ける。
新しい家へと移り住み、
クリーンな未来を夢見る。


Tips

Chat with CodeRabbit Bot (@coderabbitai)

  • If you reply to a review comment from CodeRabbit, the bot will automatically respond.
  • To engage with CodeRabbit bot directly around the specific lines of code in the PR, mention @coderabbitai in your review comment
  • Note: Review comments are made on code diffs or files, not on the PR overview.
  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Note: For conversation with the bot, please use the review comments on code diffs or files.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • The JSON schema for the configuration file is available here.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 1ede5de and ed7235e.
Files selected for processing (9)
  • app/shared/src/commonMain/kotlin/club/nito/app/shared/NitoNavHost.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/di/AuthFeatureModule.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginNavigation.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreen.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenEvent.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenIntent.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenStateMachine.kt (1 hunks)
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenUiState.kt (1 hunks)
  • feature/auth/src/iosMain/kotlin/club/nito/feature/auth/login/LoginScreen.ios.kt (1 hunks)
Files skipped from review due to trivial changes (4)
  • app/shared/src/commonMain/kotlin/club/nito/app/shared/NitoNavHost.kt
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginNavigation.kt
  • feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenStateMachine.kt
  • feature/auth/src/iosMain/kotlin/club/nito/feature/auth/login/LoginScreen.ios.kt
Additional comments: 6
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/di/AuthFeatureModule.kt (1)
  • 3-3: インポート文が更新され、LoginScreenStateMachineが新しいサブパッケージ.loginを含むようになりました。これは、Loginコンポーネントのディレクトリ構造を再編成するというPRの目的と一致しています。
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreen.kt (1)
  • 1-1: パッケージ宣言がclub.nito.feature.authからclub.nito.feature.auth.loginに変更されています。これは、Loginコンポーネントのディレクトリ構造の再編成に伴う変更であり、PRの目的と一致しています。
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenEvent.kt (2)
  • 1-1: パッケージ宣言が club.nito.feature.auth から club.nito.feature.auth.login に変更されています。これは、Login コンポーネントのディレクトリ構造の再編成に関連する変更であることを示しています。

  • 3-4: LoginScreenEvent クラスが新しいサブパッケージに正しく移動されています。この変更は、コードの整理とメンテナンス性の向上を目的としているようです。

feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenIntent.kt (1)
  • 1-1: パッケージ宣言が club.nito.feature.auth から club.nito.feature.auth.login に変更されています。これはPRの目的に沿った変更であり、問題は見受けられません。
feature/auth/src/commonMain/kotlin/club/nito/feature/auth/login/LoginScreenUiState.kt (1)
  • 1-1: パッケージ宣言が club.nito.feature.auth から club.nito.feature.auth.login に変更されています。この変更により、このクラスをインポートしている他のファイルのパスも更新する必要があります。コードベース全体でこのクラスのインポートを検索し、新しいパッケージ構造に合わせて更新してください。

パッケージ宣言の変更は適切に行われ、関連するファイルのインポートパスも更新されていることが確認されました。問題は見つかりませんでした。

@tatsutakein tatsutakein merged commit f57ac5b into main Dec 10, 2023
4 checks passed
@tatsutakein tatsutakein deleted the rt/move-login branch December 10, 2023 00:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant