Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2602a18d1b | ||
|
|
73c5c727e7 | ||
|
|
34a33426cd | ||
|
|
c1259127f5 | ||
|
|
ec8fedb073 | ||
|
|
6780576462 | ||
|
|
001e4691f7 | ||
|
|
cd79a0c97b | ||
|
|
2b2b740f5b | ||
|
|
9a50b31228 | ||
|
|
5ab42c0f62 | ||
|
|
c071021001 | ||
|
|
5155a642ca | ||
|
|
d4319b83cb |
@@ -24,8 +24,8 @@ android {
|
|||||||
applicationId = "com.hotdeal.alarm"
|
applicationId = "com.hotdeal.alarm"
|
||||||
minSdk = 31
|
minSdk = 31
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = 24
|
versionCode = 26
|
||||||
versionName = "0.2.4"
|
versionName = "0.2.6"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package com.hotdeal.alarm.presentation.components
|
|||||||
|
|
||||||
import androidx.compose.animation.core.*
|
import androidx.compose.animation.core.*
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.border
|
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.*
|
||||||
import androidx.compose.foundation.shape.CircleShape
|
import androidx.compose.foundation.shape.CircleShape
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
@@ -12,7 +11,6 @@ import androidx.compose.material3.*
|
|||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.*
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.clip
|
|
||||||
import androidx.compose.ui.draw.scale
|
import androidx.compose.ui.draw.scale
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
@@ -25,8 +23,8 @@ import com.hotdeal.alarm.ui.theme.*
|
|||||||
import com.hotdeal.alarm.util.ShareHelper
|
import com.hotdeal.alarm.util.ShareHelper
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* One UI 9 & Material 3 Expressive Deal Item Card
|
* One UI 9 & Material 3 Expressive Compact Deal Item Card
|
||||||
* Text Spotlight 가독성과 Squircle 앰비언트 깊이감을 적용한 프리미엄 핫딜 카드
|
* 화면 공간 낭비를 없애고 가독성과 정보 밀도를 극대화한 슬림 핫딜 카드
|
||||||
*/
|
*/
|
||||||
@Composable
|
@Composable
|
||||||
fun DealItem(
|
fun DealItem(
|
||||||
@@ -38,35 +36,32 @@ fun DealItem(
|
|||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
val siteColor = getSiteColor(deal.siteType)
|
val siteColor = getSiteColor(deal.siteType)
|
||||||
|
|
||||||
// 즐겨찾기 하트 펄스 애니메이션
|
|
||||||
val favoriteScale by animateFloatAsState(
|
val favoriteScale by animateFloatAsState(
|
||||||
targetValue = if (deal.isFavorite) 1.25f else 1f,
|
targetValue = if (deal.isFavorite) 1.2f else 1f,
|
||||||
animationSpec = spring(
|
animationSpec = spring(
|
||||||
dampingRatio = Spring.DampingRatioMediumBouncy,
|
dampingRatio = Spring.DampingRatioMediumBouncy,
|
||||||
stiffness = Spring.StiffnessMedium
|
stiffness = Spring.StiffnessMedium
|
||||||
),
|
),
|
||||||
label = "favorite_pulse"
|
label = "fav_scale"
|
||||||
)
|
)
|
||||||
|
|
||||||
// 제목에서 가격 정보 및 쇼핑몰 태그 추출 (Text Spotlight용)
|
|
||||||
val parsedInfo = remember(deal.title) {
|
val parsedInfo = remember(deal.title) {
|
||||||
parseDealTitle(deal.title)
|
parseDealTitle(deal.title)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 카드 테두리 및 배경 톤 설정 (One UI 9 Squircle Depth)
|
|
||||||
val (cardBorderColor, cardBorderWidth) = when {
|
val (cardBorderColor, cardBorderWidth) = when {
|
||||||
deal.isKeywordMatch -> KeywordGold to 1.5.dp
|
deal.isKeywordMatch -> KeywordGold to 1.2.dp
|
||||||
deal.isPopular -> HotDealFlameColor.copy(alpha = 0.8f) to 1.2.dp
|
deal.isPopular -> HotDealFlameColor.copy(alpha = 0.75f) to 1.dp
|
||||||
else -> MaterialTheme.colorScheme.outlineVariant.copy(alpha = 0.4f) to 0.8.dp
|
else -> MaterialTheme.colorScheme.outlineVariant.copy(alpha = 0.35f) to 0.8.dp
|
||||||
}
|
}
|
||||||
|
|
||||||
val cardBgColor = when {
|
val cardBgColor = when {
|
||||||
deal.isKeywordMatch -> MaterialTheme.colorScheme.surfaceVariant.copy(alpha = 0.35f)
|
deal.isKeywordMatch -> MaterialTheme.colorScheme.surfaceVariant.copy(alpha = 0.3f)
|
||||||
else -> MaterialTheme.colorScheme.surface
|
else -> MaterialTheme.colorScheme.surface
|
||||||
}
|
}
|
||||||
|
|
||||||
SquircleCard(
|
SquircleCard(
|
||||||
shape = CornerRadius.shapeSquircle,
|
shape = CornerRadius.shapeNormal,
|
||||||
containerColor = cardBgColor,
|
containerColor = cardBgColor,
|
||||||
borderColor = cardBorderColor,
|
borderColor = cardBorderColor,
|
||||||
borderWidth = cardBorderWidth,
|
borderWidth = cardBorderWidth,
|
||||||
@@ -77,10 +72,10 @@ fun DealItem(
|
|||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(horizontal = 16.dp, vertical = 14.dp)
|
.padding(horizontal = 14.dp, vertical = 9.dp)
|
||||||
) {
|
) {
|
||||||
// ============================================
|
// ============================================
|
||||||
// 1. 상단 메타 바: 사이트 뱃지 + 게시판 + 특수 뱃지 + 액션
|
// 1. 상단 메타 바: 사이트 뱃지 + 게시판 + 쇼핑몰 + 특수 뱃지
|
||||||
// ============================================
|
// ============================================
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
@@ -88,107 +83,107 @@ fun DealItem(
|
|||||||
) {
|
) {
|
||||||
// 사이트 캡슐 뱃지
|
// 사이트 캡슐 뱃지
|
||||||
Surface(
|
Surface(
|
||||||
shape = CornerRadius.shapeSmall,
|
shape = CornerRadius.shapeMicro,
|
||||||
color = siteColor.copy(alpha = 0.12f),
|
color = siteColor.copy(alpha = 0.12f),
|
||||||
modifier = Modifier.height(26.dp)
|
modifier = Modifier.height(21.dp)
|
||||||
) {
|
) {
|
||||||
Row(
|
Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.spacedBy(5.dp),
|
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
||||||
modifier = Modifier.padding(horizontal = 8.dp)
|
modifier = Modifier.padding(horizontal = 6.dp)
|
||||||
) {
|
) {
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(6.dp)
|
.size(5.dp)
|
||||||
.background(siteColor, CircleShape)
|
.background(siteColor, CircleShape)
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = deal.siteType?.displayName ?: deal.siteName,
|
text = deal.siteType?.displayName ?: deal.siteName,
|
||||||
style = SpotlightTypography.badge,
|
style = SpotlightTypography.badge.copy(fontSize = 11.sp),
|
||||||
color = siteColor
|
color = siteColor
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Spacer(modifier = Modifier.width(6.dp))
|
Spacer(modifier = Modifier.width(5.dp))
|
||||||
|
|
||||||
// 게시판 라벨
|
// 게시판 라벨
|
||||||
Text(
|
Text(
|
||||||
text = deal.boardDisplayName,
|
text = deal.boardDisplayName,
|
||||||
style = MaterialTheme.typography.labelSmall,
|
style = MaterialTheme.typography.labelSmall.copy(fontSize = 11.sp),
|
||||||
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.7f),
|
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.65f),
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
overflow = TextOverflow.Ellipsis
|
overflow = TextOverflow.Ellipsis
|
||||||
)
|
)
|
||||||
|
|
||||||
// 쇼핑몰 태그 (추출된 경우)
|
// 쇼핑몰 태그
|
||||||
if (parsedInfo.storeTag.isNotEmpty()) {
|
if (parsedInfo.storeTag.isNotEmpty()) {
|
||||||
Spacer(modifier = Modifier.width(6.dp))
|
Spacer(modifier = Modifier.width(5.dp))
|
||||||
Surface(
|
Surface(
|
||||||
shape = CornerRadius.shapeMicro,
|
shape = CornerRadius.shapeMicro,
|
||||||
color = MaterialTheme.colorScheme.secondaryContainer.copy(alpha = 0.7f),
|
color = MaterialTheme.colorScheme.secondaryContainer.copy(alpha = 0.6f),
|
||||||
modifier = Modifier.height(20.dp)
|
modifier = Modifier.height(19.dp)
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = parsedInfo.storeTag,
|
text = parsedInfo.storeTag,
|
||||||
style = MaterialTheme.typography.labelSmall.copy(fontSize = 10.5.sp),
|
style = MaterialTheme.typography.labelSmall.copy(fontSize = 10.sp),
|
||||||
color = MaterialTheme.colorScheme.onSecondaryContainer,
|
color = MaterialTheme.colorScheme.onSecondaryContainer,
|
||||||
modifier = Modifier.padding(horizontal = 6.dp, vertical = 2.dp)
|
modifier = Modifier.padding(horizontal = 5.dp, vertical = 1.dp)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Spacer(modifier = Modifier.weight(1f))
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
|
|
||||||
// 키워드 매칭 뱃지 (One UI 9 Amber Gold)
|
// 키워드 매칭 뱃지
|
||||||
if (deal.isKeywordMatch) {
|
if (deal.isKeywordMatch) {
|
||||||
Surface(
|
Surface(
|
||||||
shape = CornerRadius.shapeSmall,
|
shape = CornerRadius.shapeMicro,
|
||||||
color = KeywordGold,
|
color = KeywordGold,
|
||||||
modifier = Modifier.height(24.dp)
|
modifier = Modifier.height(20.dp)
|
||||||
) {
|
) {
|
||||||
Row(
|
Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.spacedBy(3.dp),
|
horizontalArrangement = Arrangement.spacedBy(2.dp),
|
||||||
modifier = Modifier.padding(horizontal = 7.dp)
|
modifier = Modifier.padding(horizontal = 6.dp)
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = Icons.Filled.Star,
|
imageVector = Icons.Filled.Star,
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
tint = Color.White,
|
tint = Color.White,
|
||||||
modifier = Modifier.size(11.dp)
|
modifier = Modifier.size(10.dp)
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = "내 키워드",
|
text = "내 키워드",
|
||||||
style = SpotlightTypography.badge.copy(fontSize = 11.sp),
|
style = SpotlightTypography.badge.copy(fontSize = 10.5.sp),
|
||||||
color = Color.White
|
color = Color.White
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Spacer(modifier = Modifier.width(4.dp))
|
Spacer(modifier = Modifier.width(3.dp))
|
||||||
}
|
}
|
||||||
|
|
||||||
// 인기 핫딜 뱃지 (One UI 9 Flame Orange)
|
// 인기 핫딜 뱃지
|
||||||
if (deal.isPopular) {
|
if (deal.isPopular) {
|
||||||
Surface(
|
Surface(
|
||||||
shape = CornerRadius.shapeSmall,
|
shape = CornerRadius.shapeMicro,
|
||||||
color = HotDealFlameColor,
|
color = HotDealFlameColor,
|
||||||
modifier = Modifier.height(24.dp)
|
modifier = Modifier.height(20.dp)
|
||||||
) {
|
) {
|
||||||
Row(
|
Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.spacedBy(3.dp),
|
horizontalArrangement = Arrangement.spacedBy(2.dp),
|
||||||
modifier = Modifier.padding(horizontal = 7.dp)
|
modifier = Modifier.padding(horizontal = 6.dp)
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = Icons.Filled.Whatshot,
|
imageVector = Icons.Filled.Whatshot,
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
tint = Color.White,
|
tint = Color.White,
|
||||||
modifier = Modifier.size(11.dp)
|
modifier = Modifier.size(10.dp)
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = "HOT",
|
text = "HOT",
|
||||||
style = SpotlightTypography.badge.copy(fontSize = 11.sp),
|
style = SpotlightTypography.badge.copy(fontSize = 10.5.sp),
|
||||||
color = Color.White
|
color = Color.White
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -196,84 +191,82 @@ fun DealItem(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(10.dp))
|
Spacer(modifier = Modifier.height(6.dp))
|
||||||
|
|
||||||
// ============================================
|
// ============================================
|
||||||
// 2. 제목 (Clean Spotlight Typography)
|
// 2. 본문 제목 (Slim 2-Line Spotlight)
|
||||||
// ============================================
|
// ============================================
|
||||||
Text(
|
Text(
|
||||||
text = parsedInfo.cleanTitle,
|
text = parsedInfo.cleanTitle,
|
||||||
style = MaterialTheme.typography.titleMedium.copy(
|
style = MaterialTheme.typography.titleSmall.copy(
|
||||||
|
fontSize = 14.5.sp,
|
||||||
fontWeight = if (deal.isKeywordMatch) FontWeight.Bold else FontWeight.SemiBold,
|
fontWeight = if (deal.isKeywordMatch) FontWeight.Bold else FontWeight.SemiBold,
|
||||||
lineHeight = 22.sp
|
lineHeight = 19.sp
|
||||||
),
|
),
|
||||||
maxLines = 2,
|
maxLines = 2,
|
||||||
overflow = TextOverflow.Ellipsis,
|
overflow = TextOverflow.Ellipsis,
|
||||||
color = MaterialTheme.colorScheme.onSurface
|
color = MaterialTheme.colorScheme.onSurface
|
||||||
)
|
)
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(12.dp))
|
Spacer(modifier = Modifier.height(6.dp))
|
||||||
|
|
||||||
// ============================================
|
// ============================================
|
||||||
// 3. 하단 바: 가격(Text Spotlight) + 시간 + 액션 버튼
|
// 3. 하단 바: 가격(Spotlight) + 시간 + 액션 아이콘
|
||||||
// ============================================
|
// ============================================
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
// 가격이 추출되었을 경우 볼드 강조, 없을 경우 기본 시간 강조
|
|
||||||
if (parsedInfo.priceText.isNotEmpty()) {
|
if (parsedInfo.priceText.isNotEmpty()) {
|
||||||
Text(
|
Text(
|
||||||
text = parsedInfo.priceText,
|
text = parsedInfo.priceText,
|
||||||
style = SpotlightTypography.priceLarge,
|
style = SpotlightTypography.priceLarge.copy(fontSize = 16.sp),
|
||||||
color = MaterialTheme.colorScheme.primary
|
color = MaterialTheme.colorScheme.primary
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.width(8.dp))
|
Spacer(modifier = Modifier.width(6.dp))
|
||||||
Text(
|
Text(
|
||||||
text = "•",
|
text = "•",
|
||||||
style = MaterialTheme.typography.bodySmall,
|
style = MaterialTheme.typography.bodySmall,
|
||||||
color = MaterialTheme.colorScheme.outline
|
color = MaterialTheme.colorScheme.outline.copy(alpha = 0.5f)
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.width(8.dp))
|
Spacer(modifier = Modifier.width(6.dp))
|
||||||
}
|
}
|
||||||
|
|
||||||
// 작성 상대 시간
|
|
||||||
Text(
|
Text(
|
||||||
text = formatRelativeTime(deal.createdAt),
|
text = formatRelativeTime(deal.createdAt),
|
||||||
style = MaterialTheme.typography.labelMedium,
|
style = MaterialTheme.typography.labelSmall.copy(fontSize = 11.sp),
|
||||||
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.7f)
|
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.65f)
|
||||||
)
|
)
|
||||||
|
|
||||||
Spacer(modifier = Modifier.weight(1f))
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
|
|
||||||
// 액션 아이콘들 (공유 & 즐겨찾기)
|
|
||||||
Row(
|
Row(
|
||||||
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
horizontalArrangement = Arrangement.spacedBy(2.dp),
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
IconButton(
|
IconButton(
|
||||||
onClick = { ShareHelper.shareDeal(context, deal) },
|
onClick = { ShareHelper.shareDeal(context, deal) },
|
||||||
modifier = Modifier.size(32.dp)
|
modifier = Modifier.size(28.dp)
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = Icons.Outlined.Share,
|
imageVector = Icons.Outlined.Share,
|
||||||
contentDescription = "공유",
|
contentDescription = "공유",
|
||||||
tint = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.65f),
|
tint = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f),
|
||||||
modifier = Modifier.size(17.dp)
|
modifier = Modifier.size(15.dp)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
IconButton(
|
IconButton(
|
||||||
onClick = { onFavoriteToggle(deal.id) },
|
onClick = { onFavoriteToggle(deal.id) },
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(32.dp)
|
.size(28.dp)
|
||||||
.scale(favoriteScale)
|
.scale(favoriteScale)
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = if (deal.isFavorite) Icons.Filled.Favorite else Icons.Outlined.FavoriteBorder,
|
imageVector = if (deal.isFavorite) Icons.Filled.Favorite else Icons.Outlined.FavoriteBorder,
|
||||||
contentDescription = if (deal.isFavorite) "즐겨찾기 제거" else "즐겨찾기 추가",
|
contentDescription = if (deal.isFavorite) "즐겨찾기 제거" else "즐겨찾기 추가",
|
||||||
tint = if (deal.isFavorite) FavoriteColor else MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.65f),
|
tint = if (deal.isFavorite) FavoriteColor else MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f),
|
||||||
modifier = Modifier.size(18.dp)
|
modifier = Modifier.size(16.dp)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package com.hotdeal.alarm.presentation.deallist
|
|||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import androidx.compose.animation.*
|
import androidx.compose.animation.*
|
||||||
import androidx.compose.animation.core.*
|
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.horizontalScroll
|
import androidx.compose.foundation.horizontalScroll
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.*
|
||||||
@@ -12,6 +11,8 @@ import androidx.compose.foundation.lazy.items
|
|||||||
import androidx.compose.foundation.lazy.rememberLazyListState
|
import androidx.compose.foundation.lazy.rememberLazyListState
|
||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.foundation.shape.CircleShape
|
import androidx.compose.foundation.shape.CircleShape
|
||||||
|
import androidx.compose.foundation.text.KeyboardActions
|
||||||
|
import androidx.compose.foundation.text.KeyboardOptions
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
import androidx.compose.material.icons.filled.*
|
import androidx.compose.material.icons.filled.*
|
||||||
import androidx.compose.material.icons.outlined.*
|
import androidx.compose.material.icons.outlined.*
|
||||||
@@ -22,10 +23,14 @@ import androidx.compose.runtime.*
|
|||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.clip
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.focus.FocusRequester
|
||||||
|
import androidx.compose.ui.focus.focusRequester
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.input.nestedscroll.nestedScroll
|
import androidx.compose.ui.input.nestedscroll.nestedScroll
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.platform.LocalFocusManager
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.text.input.ImeAction
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.compose.ui.unit.sp
|
import androidx.compose.ui.unit.sp
|
||||||
import androidx.compose.ui.zIndex
|
import androidx.compose.ui.zIndex
|
||||||
@@ -38,8 +43,8 @@ import com.hotdeal.alarm.ui.theme.*
|
|||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* One UI 9 & Material 3 Expressive Deal Feed Screen
|
* One UI 9 & Material 3 Expressive Compact Deal Feed Screen
|
||||||
* 실시간 Now 브리핑, 일체형 검색 & Sticky Pill 필터링을 지원하는 메인 핫딜 피드
|
* 온디맨드 검색(In-AppBar Search)과 스크롤 반응형 상단바로 화면 시야 및 컨텐츠 노출 수를 극대화한 화면
|
||||||
*/
|
*/
|
||||||
@OptIn(ExperimentalMaterial3Api::class)
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
@@ -49,11 +54,13 @@ fun DealListScreen(
|
|||||||
) {
|
) {
|
||||||
val uiState by viewModel.uiState.collectAsStateWithLifecycle()
|
val uiState by viewModel.uiState.collectAsStateWithLifecycle()
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
|
val focusManager = LocalFocusManager.current
|
||||||
|
|
||||||
// Pull to Refresh (초고감도 설정)
|
// 스크롤 시 상단바 자동 축소/숨김 동작
|
||||||
val pullToRefreshState = rememberPullToRefreshState(
|
val scrollBehavior = TopAppBarDefaults.enterAlwaysScrollBehavior(rememberTopAppBarState())
|
||||||
positionalThreshold = 40.dp
|
|
||||||
)
|
// Pull to Refresh
|
||||||
|
val pullToRefreshState = rememberPullToRefreshState(positionalThreshold = 40.dp)
|
||||||
var isRefreshing by remember { mutableStateOf(false) }
|
var isRefreshing by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
val listState = rememberLazyListState()
|
val listState = rememberLazyListState()
|
||||||
@@ -69,67 +76,129 @@ fun DealListScreen(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 필터 상태
|
// 검색 모드 및 필터 상태
|
||||||
|
var isSearchActive by remember { mutableStateOf(false) }
|
||||||
var searchText by remember { mutableStateOf("") }
|
var searchText by remember { mutableStateOf("") }
|
||||||
|
val searchFocusRequester = remember { FocusRequester() }
|
||||||
|
|
||||||
var selectedSiteFilter by remember { mutableStateOf<SiteType?>(null) }
|
var selectedSiteFilter by remember { mutableStateOf<SiteType?>(null) }
|
||||||
var showFavoritesOnly by remember { mutableStateOf(false) }
|
var showFavoritesOnly by remember { mutableStateOf(false) }
|
||||||
var showPopularOnly by remember { mutableStateOf(false) }
|
var showPopularOnly by remember { mutableStateOf(false) }
|
||||||
var showKeywordMatchOnly by remember { mutableStateOf(false) }
|
var showKeywordMatchOnly by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
|
LaunchedEffect(isSearchActive) {
|
||||||
|
if (isSearchActive) {
|
||||||
|
searchFocusRequester.requestFocus()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Scaffold(
|
Scaffold(
|
||||||
|
modifier = Modifier.nestedScroll(scrollBehavior.nestedScrollConnection),
|
||||||
topBar = {
|
topBar = {
|
||||||
TopAppBar(
|
TopAppBar(
|
||||||
title = {
|
title = {
|
||||||
Row(
|
if (isSearchActive) {
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
// 검색 모드일 때의 인라인 검색 텍스트 필드
|
||||||
horizontalArrangement = Arrangement.spacedBy(10.dp)
|
TextField(
|
||||||
) {
|
value = searchText,
|
||||||
// One UI 9 App Logo Icon
|
onValueChange = { searchText = it },
|
||||||
Box(
|
placeholder = {
|
||||||
|
Text(
|
||||||
|
text = "키워드, 브랜드, 상품명 검색...",
|
||||||
|
style = MaterialTheme.typography.bodyMedium,
|
||||||
|
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f)
|
||||||
|
)
|
||||||
|
},
|
||||||
|
singleLine = true,
|
||||||
|
keyboardOptions = KeyboardOptions(imeAction = ImeAction.Search),
|
||||||
|
keyboardActions = KeyboardActions(onSearch = { focusManager.clearFocus() }),
|
||||||
|
colors = TextFieldDefaults.colors(
|
||||||
|
focusedContainerColor = Color.Transparent,
|
||||||
|
unfocusedContainerColor = Color.Transparent,
|
||||||
|
focusedIndicatorColor = Color.Transparent,
|
||||||
|
unfocusedIndicatorColor = Color.Transparent
|
||||||
|
),
|
||||||
|
textStyle = MaterialTheme.typography.bodyLarge,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(36.dp)
|
.fillMaxWidth()
|
||||||
.clip(CornerRadius.shapeSmall)
|
.focusRequester(searchFocusRequester)
|
||||||
.background(MaterialTheme.colorScheme.primary),
|
)
|
||||||
contentAlignment = Alignment.Center
|
} else {
|
||||||
|
// 기본 상단 타이틀
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(8.dp)
|
||||||
) {
|
) {
|
||||||
Icon(
|
Box(
|
||||||
imageVector = Icons.Filled.LocalFireDepartment,
|
modifier = Modifier
|
||||||
contentDescription = null,
|
.size(32.dp)
|
||||||
tint = MaterialTheme.colorScheme.onPrimary,
|
.clip(CornerRadius.shapeMicro)
|
||||||
modifier = Modifier.size(20.dp)
|
.background(MaterialTheme.colorScheme.primary),
|
||||||
)
|
contentAlignment = Alignment.Center
|
||||||
}
|
) {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Filled.LocalFireDepartment,
|
||||||
|
contentDescription = null,
|
||||||
|
tint = MaterialTheme.colorScheme.onPrimary,
|
||||||
|
modifier = Modifier.size(18.dp)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
Column {
|
|
||||||
Text(
|
Text(
|
||||||
text = "핫딜 알람",
|
text = "핫딜 알람",
|
||||||
style = MaterialTheme.typography.titleMedium,
|
style = MaterialTheme.typography.titleMedium,
|
||||||
fontWeight = FontWeight.Bold,
|
fontWeight = FontWeight.Bold,
|
||||||
letterSpacing = (-0.3).sp
|
letterSpacing = (-0.2).sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
navigationIcon = {
|
||||||
|
if (isSearchActive) {
|
||||||
|
IconButton(onClick = {
|
||||||
|
isSearchActive = false
|
||||||
|
searchText = ""
|
||||||
|
}) {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Filled.ArrowBack,
|
||||||
|
contentDescription = "검색 닫기",
|
||||||
|
tint = MaterialTheme.colorScheme.onSurface
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
actions = {
|
actions = {
|
||||||
// 실시간 상태 요약 캡슐
|
if (isSearchActive) {
|
||||||
if (uiState is MainUiState.Success) {
|
if (searchText.isNotEmpty()) {
|
||||||
val activeSitesCount = (uiState as MainUiState.Success).siteConfigs.count { it.isEnabled }
|
IconButton(onClick = { searchText = "" }) {
|
||||||
NowStatusPill(
|
Icon(
|
||||||
text = if (activeSitesCount > 0) "${activeSitesCount}개 사이트 감시 중" else "모니터링 대기",
|
imageVector = Icons.Filled.Close,
|
||||||
isLive = activeSitesCount > 0,
|
contentDescription = "검색어 지우기",
|
||||||
accentColor = MaterialTheme.colorScheme.primary
|
tint = MaterialTheme.colorScheme.onSurfaceVariant
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.width(4.dp))
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
// 1. 검색 버튼 (누르면 검색 모드로 전환)
|
||||||
|
IconButton(onClick = { isSearchActive = true }) {
|
||||||
|
Icon(
|
||||||
|
imageVector = Icons.Outlined.Search,
|
||||||
|
contentDescription = "검색",
|
||||||
|
tint = MaterialTheme.colorScheme.onSurfaceVariant
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
IconButton(onClick = { viewModel.refresh() }) {
|
// 2. 새로고침 버튼
|
||||||
Icon(
|
IconButton(onClick = { viewModel.refresh() }) {
|
||||||
imageVector = Icons.Outlined.Refresh,
|
Icon(
|
||||||
contentDescription = "새로고침",
|
imageVector = Icons.Outlined.Refresh,
|
||||||
tint = MaterialTheme.colorScheme.onSurfaceVariant
|
contentDescription = "새로고침",
|
||||||
)
|
tint = MaterialTheme.colorScheme.onSurfaceVariant
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
scrollBehavior = scrollBehavior,
|
||||||
colors = TopAppBarDefaults.topAppBarColors(
|
colors = TopAppBarDefaults.topAppBarColors(
|
||||||
containerColor = MaterialTheme.colorScheme.background,
|
containerColor = MaterialTheme.colorScheme.background,
|
||||||
scrolledContainerColor = MaterialTheme.colorScheme.surface
|
scrolledContainerColor = MaterialTheme.colorScheme.surface
|
||||||
@@ -150,11 +219,12 @@ fun DealListScreen(
|
|||||||
containerColor = MaterialTheme.colorScheme.primary,
|
containerColor = MaterialTheme.colorScheme.primary,
|
||||||
contentColor = MaterialTheme.colorScheme.onPrimary,
|
contentColor = MaterialTheme.colorScheme.onPrimary,
|
||||||
shape = CircleShape,
|
shape = CircleShape,
|
||||||
modifier = Modifier.navigationBarsPadding()
|
modifier = Modifier.size(44.dp).navigationBarsPadding()
|
||||||
) {
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
imageVector = Icons.Filled.KeyboardArrowUp,
|
imageVector = Icons.Filled.KeyboardArrowUp,
|
||||||
contentDescription = "맨 위로"
|
contentDescription = "맨 위로",
|
||||||
|
modifier = Modifier.size(22.dp)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -173,64 +243,18 @@ fun DealListScreen(
|
|||||||
.consumeWindowInsets(paddingValues)
|
.consumeWindowInsets(paddingValues)
|
||||||
) {
|
) {
|
||||||
// ============================================
|
// ============================================
|
||||||
// 1. One UI 9 Seamless Search Field
|
// 슬림 가로 스크롤 Sticky Pill Filter Bar
|
||||||
// ============================================
|
|
||||||
OutlinedTextField(
|
|
||||||
value = searchText,
|
|
||||||
onValueChange = { searchText = it },
|
|
||||||
placeholder = {
|
|
||||||
Text(
|
|
||||||
text = "키워드, 브랜드, 상품명 검색...",
|
|
||||||
style = MaterialTheme.typography.bodyMedium,
|
|
||||||
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.55f)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
modifier = Modifier
|
|
||||||
.fillMaxWidth()
|
|
||||||
.padding(horizontal = 16.dp, vertical = 6.dp),
|
|
||||||
singleLine = true,
|
|
||||||
shape = CornerRadius.shapeNormal,
|
|
||||||
leadingIcon = {
|
|
||||||
Icon(
|
|
||||||
imageVector = Icons.Outlined.Search,
|
|
||||||
contentDescription = "검색",
|
|
||||||
tint = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.7f),
|
|
||||||
modifier = Modifier.size(20.dp)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
trailingIcon = {
|
|
||||||
if (searchText.isNotEmpty()) {
|
|
||||||
IconButton(onClick = { searchText = "" }) {
|
|
||||||
Icon(
|
|
||||||
imageVector = Icons.Filled.Close,
|
|
||||||
contentDescription = "지우기",
|
|
||||||
tint = MaterialTheme.colorScheme.onSurfaceVariant,
|
|
||||||
modifier = Modifier.size(18.dp)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
colors = OutlinedTextFieldDefaults.colors(
|
|
||||||
focusedContainerColor = MaterialTheme.colorScheme.surface,
|
|
||||||
unfocusedContainerColor = MaterialTheme.colorScheme.surfaceVariant.copy(alpha = 0.4f),
|
|
||||||
focusedBorderColor = MaterialTheme.colorScheme.primary,
|
|
||||||
unfocusedBorderColor = MaterialTheme.colorScheme.outlineVariant.copy(alpha = 0.35f)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
// ============================================
|
|
||||||
// 2. One UI 9 Sticky Horizontal Pill Filter Bar
|
|
||||||
// ============================================
|
// ============================================
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(vertical = 6.dp)
|
.padding(vertical = 4.dp)
|
||||||
.horizontalScroll(rememberScrollState()),
|
.horizontalScroll(rememberScrollState()),
|
||||||
horizontalArrangement = Arrangement.spacedBy(8.dp)
|
horizontalArrangement = Arrangement.spacedBy(6.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
Spacer(modifier = Modifier.width(8.dp))
|
Spacer(modifier = Modifier.width(8.dp))
|
||||||
|
|
||||||
// "전체" 필터 칩
|
|
||||||
FilterPillChip(
|
FilterPillChip(
|
||||||
selected = selectedSiteFilter == null && !showFavoritesOnly && !showPopularOnly && !showKeywordMatchOnly,
|
selected = selectedSiteFilter == null && !showFavoritesOnly && !showPopularOnly && !showKeywordMatchOnly,
|
||||||
onClick = {
|
onClick = {
|
||||||
@@ -243,7 +267,6 @@ fun DealListScreen(
|
|||||||
accentColor = MaterialTheme.colorScheme.primary
|
accentColor = MaterialTheme.colorScheme.primary
|
||||||
)
|
)
|
||||||
|
|
||||||
// "🔥 HOT 인기" 필터 칩
|
|
||||||
FilterPillChip(
|
FilterPillChip(
|
||||||
selected = showPopularOnly,
|
selected = showPopularOnly,
|
||||||
onClick = {
|
onClick = {
|
||||||
@@ -257,7 +280,6 @@ fun DealListScreen(
|
|||||||
accentColor = HotDealFlameColor
|
accentColor = HotDealFlameColor
|
||||||
)
|
)
|
||||||
|
|
||||||
// "⭐ 내 키워드" 필터 칩
|
|
||||||
FilterPillChip(
|
FilterPillChip(
|
||||||
selected = showKeywordMatchOnly,
|
selected = showKeywordMatchOnly,
|
||||||
onClick = {
|
onClick = {
|
||||||
@@ -271,7 +293,6 @@ fun DealListScreen(
|
|||||||
accentColor = KeywordGold
|
accentColor = KeywordGold
|
||||||
)
|
)
|
||||||
|
|
||||||
// "❤️ 즐겨찾기" 필터 칩
|
|
||||||
FilterPillChip(
|
FilterPillChip(
|
||||||
selected = showFavoritesOnly,
|
selected = showFavoritesOnly,
|
||||||
onClick = {
|
onClick = {
|
||||||
@@ -285,7 +306,6 @@ fun DealListScreen(
|
|||||||
accentColor = FavoriteColor
|
accentColor = FavoriteColor
|
||||||
)
|
)
|
||||||
|
|
||||||
// 사이트별 개별 필터 칩들 (뽐뿌, 클리앙, 루리웹, 쿨엔조이, 아카라이브)
|
|
||||||
SiteType.entries.forEach { siteType ->
|
SiteType.entries.forEach { siteType ->
|
||||||
val siteColor = getSiteColor(siteType)
|
val siteColor = getSiteColor(siteType)
|
||||||
FilterPillChip(
|
FilterPillChip(
|
||||||
@@ -302,7 +322,7 @@ fun DealListScreen(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ============================================
|
// ============================================
|
||||||
// 3. 핫딜 목록 본문 (List Content)
|
// 핫딜 목록 본문 (List Content)
|
||||||
// ============================================
|
// ============================================
|
||||||
when (val state = uiState) {
|
when (val state = uiState) {
|
||||||
is MainUiState.Loading -> {
|
is MainUiState.Loading -> {
|
||||||
@@ -347,35 +367,11 @@ fun DealListScreen(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 리스트 상단 카운터 바
|
|
||||||
Row(
|
|
||||||
modifier = Modifier
|
|
||||||
.fillMaxWidth()
|
|
||||||
.padding(horizontal = 18.dp, vertical = 6.dp),
|
|
||||||
verticalAlignment = Alignment.CenterVertically
|
|
||||||
) {
|
|
||||||
Text(
|
|
||||||
text = "총 ${filteredDeals.size}개의 핫딜",
|
|
||||||
style = MaterialTheme.typography.labelMedium,
|
|
||||||
fontWeight = FontWeight.SemiBold,
|
|
||||||
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.8f)
|
|
||||||
)
|
|
||||||
|
|
||||||
if (selectedSiteFilter != null) {
|
|
||||||
Spacer(modifier = Modifier.width(6.dp))
|
|
||||||
Text(
|
|
||||||
text = "• ${selectedSiteFilter?.displayName}",
|
|
||||||
style = MaterialTheme.typography.labelSmall,
|
|
||||||
color = getSiteColor(selectedSiteFilter)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LazyColumn(
|
LazyColumn(
|
||||||
modifier = Modifier.fillMaxSize(),
|
modifier = Modifier.fillMaxSize(),
|
||||||
state = listState,
|
state = listState,
|
||||||
contentPadding = PaddingValues(horizontal = 16.dp, vertical = 6.dp),
|
contentPadding = PaddingValues(horizontal = 14.dp, vertical = 4.dp),
|
||||||
verticalArrangement = Arrangement.spacedBy(10.dp)
|
verticalArrangement = Arrangement.spacedBy(7.dp)
|
||||||
) {
|
) {
|
||||||
items(
|
items(
|
||||||
items = filteredDeals,
|
items = filteredDeals,
|
||||||
@@ -394,7 +390,7 @@ fun DealListScreen(
|
|||||||
}
|
}
|
||||||
|
|
||||||
item {
|
item {
|
||||||
Spacer(modifier = Modifier.height(24.dp))
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -409,7 +405,7 @@ fun DealListScreen(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// One UI 9 Pull to Refresh 인디케이터
|
// Pull to Refresh 인디케이터
|
||||||
val progress = pullToRefreshState.progress
|
val progress = pullToRefreshState.progress
|
||||||
val showIndicator = pullToRefreshState.isRefreshing || progress > 0
|
val showIndicator = pullToRefreshState.isRefreshing || progress > 0
|
||||||
|
|
||||||
@@ -418,7 +414,7 @@ fun DealListScreen(
|
|||||||
state = pullToRefreshState,
|
state = pullToRefreshState,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.align(Alignment.TopCenter)
|
.align(Alignment.TopCenter)
|
||||||
.padding(top = 90.dp)
|
.padding(top = 50.dp)
|
||||||
.zIndex(999f),
|
.zIndex(999f),
|
||||||
containerColor = MaterialTheme.colorScheme.surfaceVariant,
|
containerColor = MaterialTheme.colorScheme.surfaceVariant,
|
||||||
contentColor = MaterialTheme.colorScheme.primary
|
contentColor = MaterialTheme.colorScheme.primary
|
||||||
@@ -436,7 +432,7 @@ fun DealListScreen(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* One UI 9 Capsule Pill Filter Chip
|
* One UI 9 Compact Capsule Pill Filter Chip
|
||||||
*/
|
*/
|
||||||
@Composable
|
@Composable
|
||||||
private fun FilterPillChip(
|
private fun FilterPillChip(
|
||||||
@@ -446,7 +442,7 @@ private fun FilterPillChip(
|
|||||||
accentColor: Color
|
accentColor: Color
|
||||||
) {
|
) {
|
||||||
val bgColor = if (selected) {
|
val bgColor = if (selected) {
|
||||||
accentColor.copy(alpha = 0.16f)
|
accentColor.copy(alpha = 0.15f)
|
||||||
} else {
|
} else {
|
||||||
MaterialTheme.colorScheme.surface
|
MaterialTheme.colorScheme.surface
|
||||||
}
|
}
|
||||||
@@ -454,13 +450,13 @@ private fun FilterPillChip(
|
|||||||
val textColor = if (selected) {
|
val textColor = if (selected) {
|
||||||
accentColor
|
accentColor
|
||||||
} else {
|
} else {
|
||||||
MaterialTheme.colorScheme.onSurfaceVariant
|
MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.8f)
|
||||||
}
|
}
|
||||||
|
|
||||||
val borderColor = if (selected) {
|
val borderColor = if (selected) {
|
||||||
accentColor.copy(alpha = 0.6f)
|
accentColor.copy(alpha = 0.55f)
|
||||||
} else {
|
} else {
|
||||||
MaterialTheme.colorScheme.outlineVariant.copy(alpha = 0.35f)
|
MaterialTheme.colorScheme.outlineVariant.copy(alpha = 0.3f)
|
||||||
}
|
}
|
||||||
|
|
||||||
Surface(
|
Surface(
|
||||||
@@ -468,17 +464,18 @@ private fun FilterPillChip(
|
|||||||
color = bgColor,
|
color = bgColor,
|
||||||
border = androidx.compose.foundation.BorderStroke(0.8.dp, borderColor),
|
border = androidx.compose.foundation.BorderStroke(0.8.dp, borderColor),
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.height(34.dp)
|
.height(29.dp)
|
||||||
.elasticPressClickable(onClick = onClick)
|
.elasticPressClickable(onClick = onClick)
|
||||||
) {
|
) {
|
||||||
Box(
|
Box(
|
||||||
contentAlignment = Alignment.Center,
|
contentAlignment = Alignment.Center,
|
||||||
modifier = Modifier.padding(horizontal = 14.dp, vertical = 6.dp)
|
modifier = Modifier.padding(horizontal = 11.dp, vertical = 4.dp)
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = label,
|
text = label,
|
||||||
style = MaterialTheme.typography.labelMedium.copy(
|
style = MaterialTheme.typography.labelSmall.copy(
|
||||||
fontWeight = if (selected) FontWeight.Bold else FontWeight.Medium
|
fontWeight = if (selected) FontWeight.Bold else FontWeight.Medium,
|
||||||
|
fontSize = 11.5.sp
|
||||||
),
|
),
|
||||||
color = textColor
|
color = textColor
|
||||||
)
|
)
|
||||||
|
|||||||
+7
-6
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.4",
|
"version": "0.2.6",
|
||||||
"versionCode": 24,
|
"versionCode": 26,
|
||||||
"updateUrl": "https://git.webpluss.net/sanjeok77/hotdeal_alarm/releases/download/v0.2.4/app-release.apk",
|
"updateUrl": "https://git.webpluss.net/sanjeok77/hotdeal_alarm/releases/download/v0.2.6/app-release.apk",
|
||||||
"changelog": [
|
"changelog": [
|
||||||
"아카라이브(ArcaLive) 핫딜 채널 지원 추가",
|
"상단 돋보기 클릭 시에만 검색창이 열리는 In-AppBar 온디맨드 검색 도입 (세로 시야 확보)",
|
||||||
"설정 화면에서 아카라이브 핫딜 온/오프 제어 기능 추가",
|
"스크롤 시 상단바 자동 축소/숨김 (enterAlways)으로 100% 풀스크린 뷰 제공",
|
||||||
"메인 화면 사이트 필터에 아카라이브 전용 필터링 칩 추가"
|
"핫딜 카드(DealItem) 덴시티 25% 슬림화로 한 화면 노출 게시글 수 대폭 증가",
|
||||||
|
"필터 칩 바 슬림화 및 리스트 패딩 최적화"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user