-
Notifications
You must be signed in to change notification settings - Fork 1
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
Feature/jaino/#93 #96
Conversation
โฆation, Edit Route)
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.
๊ณ ์ํ์ จ์ต๋๋ค!
์ด๋ฒ PR๋ ๋ง์ฐฌ๊ฐ์ง๋ก ๊ฐ๋จํ ์ฝ๋ฉํธ ๋จ๊ฒจ๋ดค์ด์!
@@ -17,6 +18,7 @@ data class SurveyForm( | |||
"", | |||
"", | |||
"", | |||
"", | |||
emptyList(), | |||
LocalDateTime.MIN, | |||
) |
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.
๋ณ ๊ฑด์๋๋ฐ,
ํ์ด์ด๋ฒ ์ด์ค ์ฌ์ฉํ ๋ default value์ฃผ๋ ๊ฑฐ๋ ๋ถ ์์ฑ์๋ก ์ ์ธํ๋ ๊ฑฐ๋ ์ฐจ์ด์ ์ด ์๋์ ?
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.
์ ํํ ๋ด๋ถ์ ์ผ๋ก๋ ์ด๋ป๊ฒ ์ฐจ์ด์ ์ด ์๋์ง๋ ์ ๋ชจ๋ฅด๊ฒ ์ต๋๋ค ใ .ใ
์ ๊ฐ Default๊ฐ ์๋ ๋ฐ๋ก ์์ฑ์๋ฅผ ์ฌ์ฉํ๋ ์ด์ ๋
๋จ์ํ ๋ํดํธ๋ณด๋ค ๋ถ ์์ฑ์๊ฐ ์ฝ๋์ ๊น๋ํด๋ณด์ฌ์, ๋งค๋ฒ ์ด๋ ๊ฒ ์์ฑํ๊ณ ์์ต๋๋ค .. !
์ฝ๋ ๋์ผ๋ก ๋ดค์ ๋๋ ๋ํดํธ๊ฐ ๋ ์ ๊ฒ ์์ฑ๋๊ธด ํ๊ฒ ๋ค์ฉ ํํ
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.
๊ทธ๋๋ ์๋ง ์ฝํ๋ฆฐ์์ ๋ถ ์์ฑ์๊ฐ ๋ํดํธ ๊ฐ์ ์ญํ ๋ ํ๊ธฐ ๋๋ฌธ์,
๋ด๋ถ์ ์ผ๋ก๋ ์๋ง ๊ฐ๊ฒ ๋์ํ์ง ์์๊น์ ?
@@ -35,33 +35,42 @@ internal fun SurveyRegistrationContent( | |||
onQuestionChanged: (String) -> Unit, | |||
onQuestionTypeChanged: (QuestionType) -> Unit, | |||
onTimeChanged: (LocalTime) -> Unit, | |||
onNextButtonClicked: (SurveyRegistrationState) -> Unit, | |||
onNextButtonClicked: (SurveyFormState, SurveyFormState) -> Unit, // (currentState, nextState) |
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.
ํ๋ผ๋ฏธํฐ๋ฅผ 2๊ฐ๋ก ๋ฐ๋ ์ด์ ๊ฐ ์์๊น์? ํ์ฅ์ฑ์ ์ด์ ๋๋ฌธ์ธ๊ฐ์ ?.?
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.
ViewModel์์ ๋ก์ง์ ๋ณ๊ฒฝํด์, ๊ทธ์ ๋ฐ๋ผ ํ๋ผ๋ฏธํฐ๋ฅผ 2๊ฐ๋ก ์ ๋ฌ๋ฐ๋๋ก ๊ตฌํํ์ต๋๋ค !
๊ธฐ์กด์๋ ์๋์ ๊ฐ์ด ViewModel์์
setSurveyRegistrationState (๋ค์ ์ํ๋ก ์ ํํ๋ ํจ์) ๋ด์์ Validation์ ์งํํ์ต๋๋ค.
fun setSurveyRegistrationState(surveyRegistrationState: SurveyRegistrationState) {
when (surveyRegistrationState) {
SurveyRegistrationState.EVENT_SELECTION -> { /* initial value */
}
SurveyRegistrationState.INFORMATION -> {
if (isNotValidEventSelection()) {
emitValidationErrorMessage("ํ์ฌ๋ฅผ ์ ํํด ์ฃผ์ธ์.")
return
}
}
SurveyRegistrationState.QUESTION -> {
if (isNotValidInformation()) {
emitValidationErrorMessage("์ ๋ชฉ๊ณผ ๋ด์ฉ์ ํ์ธํด ์ฃผ์ธ์.")
return
}
}
SurveyRegistrationState.DEADLINE -> {
if (isValidSurveyQuestion()) {
addSurveyQuestion() // ํ์ฌ ์์ฑํ ์ง๋ฌธ, ์ง๋ฌธ ๋ฆฌ์คํธ์ ์ฝ์
} else {
emitValidationErrorMessage("์ง๋ฌธ ๋ด์ฉ์ ํ์ธํด ์ฃผ์ธ์.")
return
}
}
}
_currentRegistrationState.value = surveyRegistrationState
}
ํด๋น ํจ์๊ฐ ๋ค์๊ณผ ๊ฐ์ ๋ฌธ์ ๊ฐ ์๋ค๊ณ ํ๋จํด์ ๋ณํํ์ด์ !
- ํจ์๊ฐ ๊ฐ๋ ์ฑ์ด ์ข์ง ์์
- ์ํ์ ๋ฐ๋ผ ๋ค๋ฅธ ๋ก์ง์ ์ํํด, ์์ธก์ด ํ๋ฆ
- ํจ์ ๋ค์ด๋ฐ์ด setSurveyRegistrationState์ธ๋ฐ validํ ์ํ์์๋ง ๋ค์ ์ํ๊ฐ ์ค์ ๋จ
- ๋ค๋ฅธ ํจ์์์ Validation์ด ํ์ํ ๊ฒฝ์ฐ, ๋ ๋ค์ Validation ์ฝ๋๋ฅผ ์์ฑํด์ผ ํจ.
๊ทธ๋์ ๋ชจ๋ Validation ์ฝ๋๋ฅผ ํจ์ ๋ฐ์ผ๋ก ๋นผ์, ์๋์ ๊ฐ์ด ๋ฐ๋ก ํจ์๋ก ๋ง๋ค์์ด์ !
fun validateSurveyForm(currentState: SurveyFormState): Boolean {
when (currentState) {
SurveyFormState.EVENT_SELECTION -> {
if (isNotValidEventSelection()) {
emitValidationErrorMessage("ํ์ฌ๋ฅผ ์ ํํด ์ฃผ์ธ์.")
return false
}
}
SurveyFormState.INFORMATION -> {
if (isNotValidInformation()) {
emitValidationErrorMessage("์ ๋ชฉ๊ณผ ๋ด์ฉ์ ํ์ธํด ์ฃผ์ธ์.")
return false
}
}
SurveyFormState.QUESTION -> {
if (isNotValidSurveyQuestion()) {
emitValidationErrorMessage("์ง๋ฌธ ๋ด์ฉ์ ํ์ธํด ์ฃผ์ธ์.")
return false
}
}
SurveyFormState.DEADLINE -> {
if (isNotValidDeadline()) {
emitValidationErrorMessage("์ต์ ํ๋ฃจ ์ด์ ์ค๋ฌธ ๋ ์ง๋ฅผ ์ง์ ํ์ธ์.")
return false
}
}
}
return true
}
fun setSurveyFormState(nextState: SurveyFormState) {
_currentSurveyFormState.value = nextState
}
์ด๋ ๊ฒ ViewModel ๋ด์์ ๋ก์ง์ ๊ตฌ์ฑํด์,
View ๋จ์์์๋ ๋ ๊ฐ์ ์ํ๋ฅผ ์ ๋ฌํด์ผ ํด์. (ํ์ฌ ์ํ, ๋ค์ ์ํ)
ํ์ฌ ์ํ -> validation() ํจ์์ ์ธ์๋ก ์ ๋ฌ
๋ค์ ์ํ -> setNextState() ํจ์์ ์ธ์๋ก ์ ๋ฌ
ํ๊ท๋๊ป์ ๋ง์ํ์ ํ์ฅ์ฑ์ ์ด์ ๋ ์์ด์ !
์ฌ์ค ํ์ฌ ์ํ๋ง ๋ณด๊ณ ๋ค์ ์ํ๊ฐ ์์ธก์ด ๊ฐ๋ฅํ๋๊น์. (ํ์ฌ ์ํ๊ฐ ์ง๋ฌธ์ด๋ฉด, ๋ค์ ์ํ๋ ๋น์ฐํ ๋ง๊ฐ๊ธฐํ์ด๊ฒ ์ฃ !? ํํ)
ํ์ง๋ง, ์ ๊ฐ ์์ฑํ #95 ์ด์๋ฅผ ์ดํด๋ณด์๋ฉด,
์ด์ ํ์ด์ง ์ค๋ฌธ ๋ด์ฉ๋ ์์
์ ํ๋ค๊ณ ํ๋ฉด, ํ์ฌ ์ํ์ ๋ฐ๋ผ ๋ค์ ์ํ๊ฐ ์์ธก์ด ์๋ผ์
(๋ค์ ํ์ด์ง๊ฐ ์๋ ์ด์ ํ์ด์ง๋ก ๋์๊ฐ ์ ์์ผ๋๊น์ !)
๋ฐ๋ผ์ ๋ค์๊ณผ ๊ฐ์ด ๋ ๊ฐ์ ์ํ๋ฅผ ๋ฐ๋๋ก ๊ตฌํํ์ต๋๋ค !
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.
fun setEventStartDate(eventDate: LocalDate) {
if (!isValidStartDate(eventDate)) {
emitValidationErrorMessage("์ต์ ํ๋ฃจ ์ด์ ์ผ์ ๋ ์ง๋ฅผ ์ง์ ํ์ธ์.")
return
}
_eventStartDate.value = eventDate
}
fun setEventStartTime(eventTime: LocalTime) {
_eventStartTime.value = eventTime
}
fun setEventEndDate(eventDate: LocalDate) {
if (!isValidEndDate(eventDate)) {
emitValidationErrorMessage("์ข
๋ฃ ๋ ์ง๋ ์์ ๋ ์ง์ ๊ฐ๊ฑฐ๋ ๋ ๋ฆ์ด์ผ ํฉ๋๋ค.")
return
}
_eventEndDate.value = eventDate
}
fun setEventEndTime(eventTime: LocalTime) {
if (!isValidEndTime(eventTime)) {
emitValidationErrorMessage("์ข
๋ฃ ๋ ์ง๋ ์์ ๋ ์ง์ ๊ฐ๊ฑฐ๋ ๋ ๋ฆ์ด์ผ ํฉ๋๋ค.")
return
}
_eventEndTime.value = eventTime
}
fun setEventRegistrationState() {
if (_currentRegistrationState.value == EVENT_DETAILS) {
if (!isValidTitle()) {
emitValidationErrorMessage("ํ์ฌ ์ด๋ฆ์ ์
๋ ฅํ์ธ์.")
return
}
if (!isValidContent()) {
emitValidationErrorMessage("ํ์ฌ ๋ด์ฉ์ ์
๋ ฅํ์ธ์.")
return
}
_currentRegistrationState.value = EVENT_SCHEDULE
}
}
์ ๊ฐ ์ง ์ผ์ ๋ฑ๋ก ๋ก์ง์์๋ ์์ stateFlow์ setํ ๋ ์ ํจ์ฑ ๊ฒ์ฆ์ ํ๋๋ฐ์,
ํ๋๋ก ํต์ผ ์ํค๋ ๊ฒ์ด ๋ณด๊ธฐ๊ฐ ์ข์ ๊ฒ ๊ฐ์์ ์ด๋ค ๊ฒ์ผ๋ก ํต์ผํ๋ ๊ฒ์ด ์ข์๊น์ ?.?
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.
ํ๊ท๋์ด ์ ์ํด์ฃผ์ ๋ฐฉ๋ฒ๋ ์ ๋ง ์ข์ ๋ฐฉ๋ฒ์ธ ๊ฒ ๊ฐ์์ !
์๋ฃ ๋ฒํผ์ ๋๋ฅด์ง ์๊ณ ๋, ์๋ชป๋์๋์ง ํ์ธํ ์ ์์ผ๋๊น์ !
ํ์ง๋ง, ์ปดํฌ๋ํธ๊ฐ Text Field์ ๊ฒฝ์ฐ์๋ ๊ฐ์ด ๋ณ๊ฒฝ๋ ๋๋ง๋ค,
setText๋ฅผ ํธ์ถํด ๊ณ์ ๊ฒ์ฆ์ ํ๊ณ , ๊ทธ์ ๋ฐ๋ผ snackBar๋ก ์๋ฌ๋ฅผ ๊ณ์ ๋ฑ๋ ์ํฉ์ด ๋ฐ์ํ ๊ฒ ๊ฐ์์.
๊ทธ์ ์ ํ๊ท๋๋ ์์งํ์ ์, ๋ฐ๋ก ํ ์คํธ ํ๋์ธ ๊ฒฝ์ฐ๋ State ๋ณ๊ฒฝ์ ๊ฒ์ฆ์ ํ๋๋ก ๊ตฌํํ์ ๊ฒ ๊ฐ๊ณ ์ !
๋ํ, ํจ์ ๋ด๋ถ์์ ๊ฒ์ฆ ๋ก์ง์ด ์๋ ๊ฑธ ์ธ๋ถ์์๋ ์๊ธฐ ์ด๋ ค์ด ์ ๋ ์๊ณ ์ ..
์ ๋ ์คํ๋ ค ์ค๋ฌธ๊ณผ ์ผ์ ๋ก์ง์ ํต์ผ ์ํ๋ ๊ฒ ๋์ ๊ฒ ๊ฐ์์.
๊ฐ๋ฐ์๋ ๋ค๋ฅด๊ณ , ์๋ก์ ์ํฉ๊ณผ ๋๋ฉ์ธ์ด ๋ค ๋ค๋ฅด๋๊น์ ,,, !
์ค๋ฌธ ๋๋ฉ์ธ์ ์๋์ ์ผ๋ก TextField ์ปดํฌ๋ํธ๊ฐ ๋ง์์,
set ๊ณผ์ ์ validation์ ํฌํจ์ํจ๋ค๋ฉด, event ์ ํ๊ณผ ๋ฐ๋๋ผ์ธ ์ค์ ์๋ง ํฌํจ๋๊ณ ๋๋จธ์ง๋ ์ด์ ๋ก์ง๊ณผ ๋์ผํ ๊บผ ๊ฐ์์.
๋ง์ฝ TextField์ ์ค์๊ฐ ๊ฒ์ฆ ๋ก์ง์ ๋ง๋ ๋ค๊ณ ํ๋ฉด,
๊ธฐ์กด snackbar๊ฐ ์๋๋ผ TextField์ error๋ฅผ ํ์ฉํ๋ฉด ๋ ์ข์ ๊ฒ ๊ฐ์์ !
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.
์ ๋ ์คํ๋ ค ์ค๋ฌธ๊ณผ ์ผ์ ๋ก์ง์ ํต์ผ ์ํ๋ ๊ฒ ๋์ ๊ฒ ๊ฐ์์.
๊ฐ๋ฐ์๋ ๋ค๋ฅด๊ณ , ์๋ก์ ์ํฉ๊ณผ ๋๋ฉ์ธ์ด ๋ค ๋ค๋ฅด๋๊น์ ,,, !
๋๋ฉ์ธ์ด ๋ค๋ฅด๋ค์๋ ๋์๋ฅผ ํ์ง๋ง, ๊ฐ๋ฐ์๋ ๋ค๋ฅด๊ณ ,์๋ก์ ์ํฉ์ด ๋ค๋ฅด๋ค๋ผ๋ ์ ์์๋ ์ฝ๊ฐ์ ์๊ฒฌ์ด ๋ค๋ฅธ ๊ฒ ๊ฐ์์...!
์กฐ๊ธ ํค์๋๊ฐ ์๋์...? ๊ทธ๋ ๋ค๋ฉด ์ฃ์กํฉ๋๋ค..
์ด ๋ถ๋ถ๋, ๋ณ์ ๋ช ํน์ ๋ค์ฌ์ฐ๊ธฐ ๊ท์น๊ณผ ๊ฐ์ด ์ปจ๋ฒค์ ์ ์ผ์ข ์ ๋ค์ด๊ฐ ์ ์์ ๊ฒ ๊ฐ์์.
์ฌ๋ฌ ๊ฐ์ Majorํ ํ๋ก์ ํธ๋ฅผ ๋ดค์ ๋ ํด๋ฆฐ ์ฝ๋์์ ๊ฐ์กฐํ๋ ๊ฒ ์ฒ๋ผ
์ฌ๋ฌ ๋ช ์์ ์์ ํ์ ๋์๋ ํ์ฌ๋์ด ์ง ๊ฒ ์ฒ๋ผ ํ์์๋ ๊ท์น์ ๋ง์ถฐ ์์ ํด์ผ ํ๋ค. ๋ผ๋ ๊ฒ์ ์ ์งํค๊ณ ์์์ ๋ณผ ์ ์์ด์.
https://monsterb.tistory.com/entry/Clean-Code-ํด๋ฆฐ-์ฝ๋
์ ํฌ๋ ๋ถ๋ช ๋๊ธฐ์ ํ๋ก์ ํธ๋ ์๋๊ณ Majorํ ํ๋ก์ ํธ๋ ์๋๋ผ์ ์ด๋ฐ ๋ํ ์ผํ ๋ถ๋ถ์ ์ ๊ฒฝ์ฐ๋ ๊ฒ์ MVP ๋ฐฐํฌ๋ฅผ ์ง์ฐ์ํค๊ฒ๋ง ํ ๋ฟ์ด์ง๋ง,
์ถํ์, ์ถฉ๋ถํ ์๊ฐ์ด ์ฃผ์ด์ก์ ๋์๋ ๋ฆฌํฉํ ๋ง ํ ์ฌ์ง๊ฐ ์๋ค๊ณ ์๊ฐ์ด ๋ค์ด์.
(์ง๊ธ ๋น์ฅ ํ ํ์์๋ค๋ ์๋ฆฌ์ ๋์น์ ๋๋ค.)
์ค๋ฌธ ์ํฐํฐ๋ ์๋์ ์ผ๋ก TextField ์ปดํฌ๋ํธ๊ฐ ๋ง์์,
set ๊ณผ์ ์ validation์ ํฌํจ์ํจ๋ค๋ฉด,
event ์ ํ๊ณผ ๋ฐ๋๋ผ์ธ ์ค์ ์๋ง ํฌํจ๋๊ณ ๋๋จธ์ง๋ ์ด์ ๋ก์ง๊ณผ ๋์ผํ ๊บผ ๊ฐ์์.
ํ์คํ ์ค๋ฌธ ๋ฑ๋ก์ TextField ๋ถ๋ถ์ด ๋ง์์ set๊ณผ์ ์ ํฌํจ ์ํฌ ์ ์๋ ์ ์ด ์กด์ฌํ๋ค์.
์ด๋ฐ ๋ถ๋ถ์์๋ ์์ ์ ๊ฐ ๋งํ ๊ฒ ์ฒ๋ผ ์ผ๊ด์ฑ ์๊ฒ ์ฝ๋๋ฅผ ์งค ์๋ ์์ง๋ง,
์์ ๊ฐ์ ์ธ์ฌ์ดํธ๋ ์กด์ฌํจ์ ์์์ฃผ์ จ์ผ๋ฉด ํด์...!
์งํธ๋ ๋ง๋ ์์ ๊ตฌ๋ฌธ์ผ๋ก ์ธํด ์ ๋ฅผ ์ค๋์ํค๋๋ฐ ์ถฉ๋ถํ์ด์.
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.
ํ๊ท๋ ๋๋ฌด ์ฌ๋ฐ์ต๋๋ค ์บฌ์บฌ
ํ๊ท๋ ๋๋ถ์ ์ฝ๋๋ฆฌ๋ทฐ ํ๋ฉด์ ๊ฐ๋ฐ์ ์๋ก์ด ๋ง(?)์ ์์๊ฐ๋ ๋๋์ด์์
์ฝ๋๋ฅผ ์์ฑํ๋ฉด์๋ ๊ฐ๋ฐ์ ์์๊ฐ ์ ์์ง๋ง, ๋ด๊ฐ ์์ฑํ ์ฝ๋๋ฅผ ์ด๋ ๊ฒ ์์ฐ์ด๋ก ์ค๋ช
ํ๋ ๊ฒ ์์ฒด๋
์์ฒญ ์ ๋ฅผ ์ฑ์ฅ์ํค๊ณ ์๋ค๋ ์๊ฐ์ด ๋๋ค์
์ค์ด์ ๋ฐ์ค !!
} | ||
|
||
companion object { | ||
const val EMPTY = "" |
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.
๋งค์ง ๋๋ฒ๋ ์คํธ๋ง ์ ๊ฑฐํ ๋ ํญ์ ๊ณ ๋ฏผ์ธ๋ฐ์,
""๋ฅผ EMPTY๋ผ๋ ๋จ์ด๋ก ์นํํ์ ๋ ์ป๋ ์ด์ ์ด ์์๊น์?
ํญ์ ๊ณ ๋ฏผ์ ๋๋ค.
์ฌํ ์ฌ๋๋ค์ ๊ฐํ ์ฝ์ ํ๋ ๊ฒ๋ ํจ์ํํด์ ํ๋๋ผ๊ณ ์.
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.
๊ฐ๋ ์ฑ ๋๋ฌธ์ ์ฌ์ฉํ์ด์ !
ํด๋น EMPTY๋ ๋จ์ํ StateFlow์ ์ํ๋ฅผ ์ฒซ ์ํ๋ฅผ ์ด๊ธฐํ ํ๋ ๋ชฉ์ ๋ ์์ง๋ง,
์๋์ ํจ์์์๋ ์ฌ์ฉ๋ผ์ !
private fun clearSurveyQuestionState() { _surveyQuestion.value = EMPTY }
ํ์ฌ๋ "" = EMPTY๋ก ์์๋ฅผ ๋ง๋ค์์ง๋ง,
์ถํ ๋ฐ๋ก ์๋ฏธ์๋ ์๋ฅผ ์์ํ์ํค์ง ์๊ณ ๊ทธ๋๋ก ์ฌ์ฉํ๋ค๋ฉด,
๋ค๋ฅธ ํ์์ด๋ ์ถํ ๋ณธ์ธ์ด ์์๋ณด๊ธฐ ํ๋ค์ง ์์๊น์ ํํ
์ ๊ฐ ์์ํ ์ํค๋ ๊ธฐ์ค์
๋ณดํต ๋ค ์์ํ ํ๋ ค๊ณ ํ๋๋ฐ, StateFlow๋ ๋ค๋ฅธ ์ปฌ๋ ์
์ ์ฒซ ์์์ ๋ฐ๋ก ์์๋ฅผ ์ ๋ง๋ ๊ฒ ๊ฐ์์ .
์์ํ ํ๋ฉด, ์์ฑ๋๋ ์ฝ๋์ ์์ ๋์ด๋๊ธด ํ์ง๋ง, ์ ์ง๋ณด์ ์ธก๋ฉด์ด๋ ๊ฐ๋ ์ฑ์ ์ด์ ๋ก ์ข์ง ์์๊น์ ?
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.
๋งค์ง๋๋ฒ๋ฅผ ์ ๊ฑฐํ๋ ๊ฒ์๋ ์ ๋ ๋์๋ฅผ ํฉ๋๋ค.
ํ์ง๋ง "๊ณผ์ฐ String๊ฐ์ ๋ณ์๋ก ๋นผ๋ ๊ฒ์ด ์ณ์๊น?" ๋ผ๋ ๊ณ ๋ฏผ์ ๊ณ์ํ๊ณค ํฉ๋๋ค.
""
๋ฅผ EMPTY๋ผ๋ ๋ณ์๋ก ์นํํ์ ๋, ์ด๊ธฐ ๊ฐ์ด ""
์ธ์ง ํน์ ๋ ๋ค๋ฅธ ๋ณ๋์ ์ฝ์๋ ๊ฐ์ธ์ง ์ ์ ์์ผ๋๊น์.
Intํ์ด๋ Floatํ๊ณผ ๊ฐ์ Numberํ์
์ 3.141592๋ผ๋ ๊ฐ์ PI
๋ผ๋ ๋ณ์๋ก ์์ํํด์ ์ฌ์ฉํ๋ ๊ฒ์ ํ์คํ ์ด์ ๋ง ์๋ค๊ณ ์๊ฐํฉ๋๋ค.
์ด๋ฌํ ์ซ์๋ค์ ์ฌ๋์ ๋์ผ๋ก ์ฝ์ด์ง์ง๊ฐ ์์ผ๋๊น์.
ํ์ง๋ง Stringํ์ ์ ๊ตณ์ด ์นํํด์ ๋นผ์ผํ ๊น?, ์ด์ฐจํผ ์ ์ฝํ๋๋ฐ?
๋ผ๋ ์๊ฐ์ด ํ๋ฒ ์ฉ ๋ค๊ณคํด์.
์์๋ฅผ ๋ค์๋ฉด,
fun startNewLine(){
println()
}
ํน์ joinToString()
์ ์ฌ์ฉํ ๋, ์ฌ์ด์ฌ์ด ๋ค์ด๊ฐ ๋ฌธ์๋ฅผ ์๋์ ๊ฐ์ด ๋นผ์ ์ฌ์ฉํ๋ ๋ฑ.
const val SEPERATOR= "-"
์ด์ ๊ด๋ จํด์ ์๋์ ๊ฐ์ ๊ธ์ ํผ์์๋๋ค!
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.
ํ๊ท๋ ์ข์ ์ธ์ฌ์ดํธ ๊ฐ์ฌํฉ๋๋ค !
์ ์ํ ์๊ฒฌ์ ๋ค์ด๋ณด๋, ๋จ์ํ EMPTY๋ณด๋ค๋ ""์ด ๋ ์ข์ ์๋ ์๋ค๋ผ๋ ์๊ฐ์ด ๋๋ค์ ..
์ด๋ฐ RawValue๋ฅผ ์๋ก ์ปจ๋ฒค์ ์ ๋ง๋ค์ด์ ์ง์ผ์ผํ ๊ฒ ๊ฐ๋ค๋ผ๊ณ ์๊ฐ์ด๋ค์ด์!
๋ฐ๋ก 0, ""๊ณผ ๊ฐ์ด ๋น์ฐ์ ๋๋ ๊ฐ์ ๋ฐ๋ก ์์ํ ํ์ง๋ง๊ณ ,
(์ง๋ฌธ ๋ฆฌ์คํธ์ ์์์ 0์ด ์๋ 1์์ ๋ถํฐ ์ ๊ฐ์ด)
๋น์ฐ์ ์ฌ๊ธฐ๋ ๊ฒ๊ณผ ๋ค๋ฅด๊ฒ ์๊ฐ๋๋ ๊ฒ, ์๋ฏธ๋ฅผ ๊ฐ์ง๋ ๊ฐ์ผ๋ก ํ๋๊ฑด ์ด๋์ ?
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.
์ ๊ฐ ์๊ฐํ๋ ๋ถ๋ถ์ด๋ ์์ ํ ์ผ์นํฉ๋๋ค!
์ด ๋ถ๋ถ ๋ํ ์ปจ๋ฒค์ ์ผ๋ก ์ ์ํ๋ ๊ฒ ์ข๋ค๊ณ ์๊ฐํด์.
๋๋ฌด ๋น์ฐ์ ์๊ฐ๋๋ ๋ถ๋ถ๋ณด๋ค๋, ๊ทธ๋ ๊ฒ ๋ ํนํ ์์ด๋ค(?) ์ ๋ํด์๋ง ์ถ์ถํ๋ ๊ฒ์ด ์ข๋ค๊ณ ์๊ฐํฉ๋๋ค!
val EVENT_SELECTION_INIT: Event = | ||
Event("", "", "", "", DateUtil.generateNowDateTime(), DateUtil.generateNowDateTime()) | ||
} |
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.
์ ์ฝ๋ฉํธ์ ๋น์ทํ๋ฐ,
์ด ๋ถ๋ถ์ ์์ํ ์์ํจ ์ด์ ๊ฐ ์์ผ์ ์ง ๊ถ๊ธํฉ๋๋ค!
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.
์ฐธ์กฐํ ํ์ ์ ์์๊ฐ ์๋๋ ๊ฑธ๋ก ์๊ณ ์์ด์ !
ํด๋น EVENT_SELECTION_INIT์ ์์ ๋ง์ฐฌ๊ฐ์ง๋ก, StateFlow์ ์ด๊ธฐ ์ํ๊ฐ์ด๊ธฐ๋ ํ์ง๋ง,
์๋์ ์ด๋ฒคํธ ๊ฒ์ฆ ๋ก์ง์์๋ ์ฌ์ฉํ๊ธฐ ๋๋ฌธ์ ๋ฐ๋ก ๋ณ์๋ก ๋ง๋ค์์ด์ !
private fun isNotValidEventSelection() =
_surveyEventSelection.value.eventId == EVENT_SELECTION_INIT.eventId
ํด๋น ์ฝ๋๋ฅผ ๋ณด๋, ๊ตณ์ด ์ด๊ธฐ ์ํ๊ฐ์ ํ์ฌ ์๊ฐ์ ๋ฃ์ ํ์๊ฐ ์๋ ๊ฒ ๊ฐ์์ !
LocalDateTime์ ์์ MIN, MAX๋ก ๋ณ๊ฒฝํด๋๊ฒ ์ต๋๋ค์ ~ !!
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.
์์ ์ ์ฝ๋ฉํธ๋, ""
๋ถ๋ถ์ด EMPTY ๊ฐ ๋ค์ด๊ฐ์ง ์์ ์ด์ ์ ๋ํ ์๋ฌธ์ด์์ต๋๋ค!
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.
์์ ์๊ฐ์ ๋ชปํ ๋ถ๋ถ์ด๋ค์ ,, !
ํด๋น ๊ฐ์ ""๋์ EMPTY๊ฐ ๋ค์ด๊ฐ๋ฉด ์คํ๋ ค EMPTY๊ฐ ์ ๋ง ""์ด ๋ง๋์ง ํ์ธํด๋ณผ๊บผ ๊ฐ์์.
์ถํ ์์ ํด๋ณด๋๋ก ํ ๊ฒ์ !
1. ๐ ๊ด๋ จ๋ ์ด์ ๋ฐ ์๊ฐ
#93 ์ค๋ฌธ ์ํฐํฐ ์์ ๋ฐ ์ค๋ฌธ ํ์ ์์ ๊ธฐ๋ฅ ๊ตฌํ
2. ๐ฅ๋ณ๊ฒฝ๋ ์
SurveyForm ์์ ๊ธฐ๋ฅ ์ถ๊ฐ
์ค๋ฌธ ํ์์ผ๋ก ๋ค๋น๊ฒ์ด์ ๊ตฌํ
ํ์ผ ๋ฆฌ๋ค์ด๋ฐ
registerSurveyUseCase -> postSurveyFormUseCase
surveyRegstrationConent -> SurveyFormContent
SurveyRegistrationScreen -> SurveyFormRegistrationScreen
3. ๐ธ ์คํฌ๋ฆฐ์ท(์ ํ)
4. ๐ก์๊ฒ๋ ํน์ ๊ถ๊ธํ ์ฌํญ๋ค
weight๋ ์๋์ ์ธ View ๊ฐ์ ๊ฐ์ค์น๋ก๋ ์ฌ์ฉ์ด ๊ฐ๋ฅํ์ง๋ง ,
๋ ์ด์์์์ ๋จ์ผ๋ก weight๋ฅผ ์ค์ ํ๋ฉด, constraintLayout์ 0dp์ ๊ฐ์ด ๋ถ๋ชจ ๋ ์ด์์์ ๋๋จธ์ง ๋ถ๋ถ์ ํฌ๊ธฐ๋ก ์ค์ ํ ์ ์๋ค.
weight์ ์๊ธฐ ์ ๊น์ง customLayout์ผ๋ก ๊ตฌํํ ์๋ ์์๊น ๊ณ ๋ฏผํ์ฌ, ํ๊ท์์ ์ปค์คํ ๋ ์ด์์์ ์ ๋ ํ๋ค ์บฌ์บฌ