-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
53 additions
and
19 deletions.
There are no files selected for viewing
6 changes: 5 additions & 1 deletion
6
android/app/src/main/java/com/teameetmeet/meetmeet/presentation/addevent/AddEventUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
package com.teameetmeet.meetmeet.presentation.addevent | ||
|
||
import androidx.annotation.StringRes | ||
|
||
sealed class AddEventUiEvent { | ||
data class ShowMessage(val messageId: Int, val extraMessage: String = "") : AddEventUiEvent() | ||
data class ShowMessage(@StringRes val messageId: Int, val extraMessage: String = "") : | ||
AddEventUiEvent() | ||
|
||
data object FinishAddEventActivity : AddEventUiEvent() | ||
data object NavigateToLoginActivity : AddEventUiEvent() | ||
} |
6 changes: 5 additions & 1 deletion
6
android/app/src/main/java/com/teameetmeet/meetmeet/presentation/follow/FollowUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
package com.teameetmeet.meetmeet.presentation.follow | ||
|
||
import androidx.annotation.StringRes | ||
|
||
sealed class FollowUiEvent { | ||
data class ShowMessage(val message: Int, val extraMessage: String = "") : FollowUiEvent() | ||
data class ShowMessage(@StringRes val message: Int, val extraMessage: String = "") : | ||
FollowUiEvent() | ||
|
||
data class VisitProfile(val userId: Int, val userNickname: String) : FollowUiEvent() | ||
data object NavigateToLoginActivity : FollowUiEvent() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...p/src/main/java/com/teameetmeet/meetmeet/presentation/login/selflogin/SelfLoginUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
package com.teameetmeet.meetmeet.presentation.login.selflogin | ||
|
||
import androidx.annotation.StringRes | ||
|
||
sealed class SelfLoginUiEvent { | ||
data object NavigateToHomeActivity : SelfLoginUiEvent() | ||
data class ShowMessage(val message: Int, val extraMessage: String = "") : SelfLoginUiEvent() | ||
data class ShowMessage(@StringRes val message: Int, val extraMessage: String = "") : | ||
SelfLoginUiEvent() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...oid/app/src/main/java/com/teameetmeet/meetmeet/presentation/login/signup/SignUpUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
package com.teameetmeet.meetmeet.presentation.login.signup | ||
|
||
import androidx.annotation.StringRes | ||
|
||
sealed class SignUpUiEvent { | ||
data object NavigateToProfileSettingFragment : SignUpUiEvent() | ||
data class ShowMessage(val message: Int, val extraMessage: String = "") : SignUpUiEvent() | ||
data class ShowMessage(@StringRes val message: Int, val extraMessage: String = "") : | ||
SignUpUiEvent() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...java/com/teameetmeet/meetmeet/presentation/notification/event/EventNotificationUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...va/com/teameetmeet/meetmeet/presentation/notification/follow/FollowNotificationUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.../main/java/com/teameetmeet/meetmeet/presentation/setting/account/SettingAccountUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...pp/src/main/java/com/teameetmeet/meetmeet/presentation/setting/home/SettingHomeUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
package com.teameetmeet.meetmeet.presentation.setting.home | ||
|
||
import androidx.annotation.StringRes | ||
|
||
sealed class SettingHomeUiEvent { | ||
data class ShowMessage(val messageId: Int, val extraMessage: String = "") : SettingHomeUiEvent() | ||
data class ShowMessage(@StringRes val messageId: Int, val extraMessage: String = "") : SettingHomeUiEvent() | ||
data object NavigateToLoginActivity : SettingHomeUiEvent() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.../teameetmeet/meetmeet/presentation/setting/passwordchange/SettingPasswordChangeUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.../main/java/com/teameetmeet/meetmeet/presentation/setting/profile/SettingProfileUiEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters