Skip to content

πŸŽͺ μ „μ‹œνšŒλ‹· - μ„Έμƒμ˜ μ „μ‹œλ₯Ό μž‡λ‹€

Notifications You must be signed in to change notification settings

SeungWoo-Ahn/ExhibitionDoT-Android

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

image

μ „μ‹œνšŒλ‹· - μ„Έμƒμ˜ μ „μ‹œλ₯Ό μž‡λ‹€

둜그인 ν™ˆ - 필터링 ν™ˆ - 검색
이벀트 μΆ”κ°€ 상세 - μ• λ‹ˆλ©”μ΄μ…˜ 상세 - λŒ“κΈ€μ“°κΈ°



μ•„ν‚€ν…μ²˜

μ „μ‹œνšŒλ‹· μ•± ꡬ쑰



고렀사항

1. 이미지 λ‹€μš΄μƒ˜ν”Œλ§


2. runCathing을 μ΄μš©ν•œ μ˜ˆμ™Έ λ„˜κΈ°κΈ°

class SignInUseCase @Inject constructor(
    private val userRepository: UserRepository,
    private val preferenceRepository: PreferenceRepository,
) {
    suspend operator fun invoke(email: String): Result<Unit> = runCatching {
        val userId = userRepository.signIn(email)
            .getOrElse { exception ->
                when (exception) {
                    is NetworkFailException -> throw exception
                    else -> throw SignInFailException(exception)
                }
            }
        preferenceRepository.updateUserId(userId)
    }
}

3. Filter interface 뢄리λ₯Ό ν†΅ν•œ ν™•μž₯μ„± 확보

// Filter.kt (domain)
sealed interface Filter {
    sealed interface SingleFilter : Filter
    sealed interface MultiFilter : Filter
}

sealed class Region(val key: String, val name: String) : Filter.SingleFilter

sealed class Category(val key: String) : Filter.MultiFilter

sealed class EventType(val key: String) : Filter.MultiFilter

// FilterState.kt (presentation)
interface IFilterState<T : Filter> {
    val filterList: List<T>
    fun selectFilter(filter: T)
    fun resetAll()
}

interface ISingleFilterState<T : Filter.SingleFilter> : IFilterState<T> {
    var selectedFilter: T?
    fun setFilter(filter: T?)
}

interface IMultiFilerState<T : Filter.MultiFilter> : IFilterState<T> {
    var selectedFilterList: List<T>
    fun setFilter(filterList: List<T>)
}

4. μ „λž΅ νŒ¨ν„΄μ„ ν™œμš©ν•œ μœ μ—°ν•œ DateFormat 맀핑

// EventMapper.kt (presentation)
fun EventDetail.toUiModel() =
    EventDetailUiModel(
        id = id,
        name = name,
        imgUrl = imgUrl,
        region = region.name,
        categoryTags = categoryList.joinToString(" ", transform = Category::toTag),
        eventTypeTags = eventTypeList.joinToString(" ", transform = EventType::toTag),
        date = format(DateFormatStrategy.FullDate(date)),
        createdAt = format(DateFormatStrategy.RelativeTime(createdAt)),
        likeCount = likeCount,
        isLike = isLike,
        owner = owner
    )

5. derivedState을 톡해 μ• λ‹ˆλ©”μ΄μ…˜ flag의 Recomposition 쀄이기

@Composable
private fun EventDetailScreen(
    modifier: Modifier,
    eventDetail: EventDetailUiModel,
    ...
) {
    val lazyListState = rememberLazyListState()
    val skipImage by remember {
        derivedStateOf {
            (lazyListState.firstVisibleItemIndex == 0 &&
                    lazyListState.firstVisibleItemScrollOffset < 1100).not()
        }
    }
    ...
    EventDetailTopBar(     
        skipImage = skipImage,
        ...
    )
}

@Composable
fun EventDetailTopBar(
    skipImage: Boolean,
    ...
) {
    val containerColor by animateColorAsState(
        targetValue = if (skipImage) {
            MaterialTheme.colorScheme.background
        } else {
            Color.Transparent
        },
        label = "event-detail-top-bar-container-color-anim"
    )
    val iconColor by animateColorAsState(
        targetValue = if (skipImage) {
            MaterialTheme.colorScheme.surfaceContainerHigh
        } else {
            MaterialTheme.colorScheme.background
        },
        label = "event-detail-top-bar-icon-color-anim"
    )
    ...
}

About

πŸŽͺ μ „μ‹œνšŒλ‹· - μ„Έμƒμ˜ μ „μ‹œλ₯Ό μž‡λ‹€

Topics

Resources

Stars

Watchers

Forks

Languages

  • Kotlin 100.0%