File tree Expand file tree Collapse file tree
data/src/main/java/com/threegap/bitnagil/data/emotion
domain/src/main/java/com/threegap/bitnagil/domain/emotion/repository
presentation/src/main/java/com/threegap/bitnagil/presentation/emotion Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ fun GetEmotionResponse.toDomain(): Emotion? {
1919 Emotion (
2020 emotionType = emotionMarbleType,
2121 emotionMarbleName = emotionMarbleName,
22- imageUrl = imageUrl
22+ imageUrl = imageUrl,
2323 )
2424 } else {
2525 null
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package com.threegap.bitnagil.data.emotion.repositoryImpl
22
33import com.threegap.bitnagil.data.emotion.datasource.EmotionDataSource
44import com.threegap.bitnagil.data.emotion.model.response.toDomain
5- import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
65import com.threegap.bitnagil.domain.emotion.model.Emotion
76import com.threegap.bitnagil.domain.emotion.model.EmotionChangeEvent
7+ import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
88import com.threegap.bitnagil.domain.emotion.repository.EmotionRepository
99import kotlinx.coroutines.flow.Flow
1010import kotlinx.coroutines.flow.MutableSharedFlow
Original file line number Diff line number Diff line change 11package com.threegap.bitnagil.domain.emotion.repository
22
3- import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
43import com.threegap.bitnagil.domain.emotion.model.Emotion
54import com.threegap.bitnagil.domain.emotion.model.EmotionChangeEvent
5+ import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
66import kotlinx.coroutines.flow.Flow
77
88interface EmotionRepository {
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ private fun EmotionScreenPreview() {
236236 imageUrl = " https://bitnagil-s3.s3.ap-northeast-2.amazonaws.com/home_satisfaction.png" ,
237237 emotionMarbleName = " emotionMarbleName" ,
238238 offlineBackupImageResourceId = null ,
239- )
239+ ),
240240 ),
241241 isLoading = false ,
242242 step = EmotionScreenStep .Emotion ,
@@ -260,7 +260,7 @@ private fun EmotionRecommendRoutineScreenPreview() {
260260 imageUrl = " https://bitnagil-s3.s3.ap-northeast-2.amazonaws.com/home_satisfaction.png" ,
261261 emotionMarbleName = " emotionMarbleName" ,
262262 offlineBackupImageResourceId = null ,
263- )
263+ ),
264264 ),
265265 isLoading = false ,
266266 step = EmotionScreenStep .RecommendRoutines ,
Original file line number Diff line number Diff line change 11package com.threegap.bitnagil.presentation.emotion.model
22
33import android.os.Parcelable
4- import com.threegap.bitnagil.domain.emotion.model.Emotion
54import com.threegap.bitnagil.designsystem.R
5+ import com.threegap.bitnagil.domain.emotion.model.Emotion
66import kotlinx.parcelize.Parcelize
77
88@Parcelize
You can’t perform that action at this time.
0 commit comments