라이브 탭 - 라이브 중 아이템 UI 변경
This commit is contained in:
parent
e782f72179
commit
e5af4167f8
|
@ -19,6 +19,7 @@ struct GetRoomListResponse: Decodable, Hashable {
|
|||
let price: Int
|
||||
let tags: [String]
|
||||
let channelName: String?
|
||||
let creatorProfileImage: String
|
||||
let creatorNickname: String
|
||||
let creatorId: Int
|
||||
let isReservation: Bool
|
||||
|
|
|
@ -16,64 +16,88 @@ struct LiveNowItemView: View {
|
|||
let height: CGFloat = 176.7
|
||||
|
||||
var body: some View {
|
||||
ZStack {
|
||||
KFImage(URL(string: item.coverImageUrl))
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.frame(width: width, height: height, alignment: .top)
|
||||
.cornerRadius(4.7)
|
||||
.clipped()
|
||||
|
||||
LinearGradient(
|
||||
colors: [Color.black.opacity(0.1), Color.black.opacity(0.8)],
|
||||
startPoint: .top,
|
||||
endPoint: .bottom
|
||||
)
|
||||
|
||||
VStack(spacing: 0) {
|
||||
HStack(spacing: 3.3) {
|
||||
Text(item.price > 0 ? "유료" : "무료")
|
||||
.font(.custom(Font.medium.rawValue, size: 12))
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.horizontal, 7.3)
|
||||
.padding(.vertical, 4)
|
||||
.background(Color(hex: item.price > 0 ? "881609" : "643bc8"))
|
||||
.cornerRadius(10)
|
||||
VStack(alignment: .leading, spacing: 8) {
|
||||
ZStack {
|
||||
KFImage(URL(string: item.coverImageUrl))
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.frame(width: width, height: height, alignment: .top)
|
||||
.cornerRadius(4.7)
|
||||
.clipped()
|
||||
|
||||
LinearGradient(
|
||||
colors: [Color.black.opacity(0.1), Color.black.opacity(0.8)],
|
||||
startPoint: .top,
|
||||
endPoint: .bottom
|
||||
)
|
||||
|
||||
VStack(alignment: .trailing, spacing: 0) {
|
||||
HStack(spacing: 3.3) {
|
||||
Text(item.price > 0 ? "유료" : "무료")
|
||||
.font(.custom(Font.medium.rawValue, size: 12))
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.horizontal, 7.3)
|
||||
.padding(.vertical, 4)
|
||||
.background(Color(hex: item.price > 0 ? "881609" : "643bc8"))
|
||||
.cornerRadius(10)
|
||||
|
||||
Spacer()
|
||||
|
||||
if item.isPrivateRoom {
|
||||
Image("ic_lock")
|
||||
.resizable()
|
||||
.frame(width: 20, height: 20)
|
||||
}
|
||||
}
|
||||
.padding(.horizontal, 3.3)
|
||||
.padding(.top, 3.3)
|
||||
|
||||
Spacer()
|
||||
|
||||
if item.isPrivateRoom {
|
||||
Image("ic_lock")
|
||||
HStack(spacing: 2.7) {
|
||||
Image("ic_avatar")
|
||||
.resizable()
|
||||
.frame(width: 20, height: 20)
|
||||
|
||||
Text("\(item.numberOfParticipate)")
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color.white)
|
||||
}
|
||||
.padding(.horizontal, 5.3)
|
||||
.padding(.bottom, 2.7)
|
||||
.background(Color(hex: "333333"))
|
||||
.cornerRadius(13.3)
|
||||
.padding(.trailing, 6.7)
|
||||
.padding(.bottom, 6.7)
|
||||
}
|
||||
.padding(.horizontal, 3.3)
|
||||
.padding(.top, 3.3)
|
||||
}
|
||||
.frame(width: width, height: height)
|
||||
|
||||
Text("\(item.title)")
|
||||
.font(.custom(Font.medium.rawValue, size: 12))
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
.lineLimit(2)
|
||||
.fixedSize(horizontal: false, vertical: true)
|
||||
|
||||
if item.tags.count > 0 {
|
||||
Text("\(item.tags.map { "#\($0)" }.joined(separator: " "))")
|
||||
.font(.custom(Font.medium.rawValue, size: 11))
|
||||
.foregroundColor(Color(hex: "3bb9f1"))
|
||||
}
|
||||
|
||||
HStack(spacing: 5.3) {
|
||||
KFImage(URL(string: item.creatorProfileImage))
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.frame(width: 21.3, height: 21.3, alignment: .top)
|
||||
.clipShape(Circle())
|
||||
|
||||
Spacer()
|
||||
|
||||
HStack(spacing: 0) {
|
||||
Image("ic_avatar")
|
||||
.resizable()
|
||||
.frame(width: 20, height: 20)
|
||||
|
||||
Text("\(item.numberOfParticipate)")
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.leading, 2.7)
|
||||
|
||||
Spacer()
|
||||
|
||||
Text("\(item.creatorNickname)")
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color.white)
|
||||
}
|
||||
.padding(.horizontal, 6.7)
|
||||
.padding(.bottom, 6.7)
|
||||
Text("\(item.creatorNickname)")
|
||||
.font(.custom(Font.medium.rawValue, size: 10))
|
||||
.foregroundColor(Color(hex: "777777"))
|
||||
}
|
||||
}
|
||||
.frame(width: width, height: height)
|
||||
.frame(width: width)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -82,7 +106,7 @@ struct LiveNowItemView_Previews: PreviewProvider {
|
|||
LiveNowItemView(
|
||||
item: GetRoomListResponse(
|
||||
roomId: 99,
|
||||
title: "test",
|
||||
title: "testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttest",
|
||||
content: "testtest",
|
||||
beginDateTime: "2022.05.23 Mon 03:00 PM",
|
||||
numberOfParticipate: 3,
|
||||
|
@ -92,6 +116,7 @@ struct LiveNowItemView_Previews: PreviewProvider {
|
|||
price: 0,
|
||||
tags: ["팬미팅", "힐링"],
|
||||
channelName: nil,
|
||||
creatorProfileImage: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
creatorNickname: "user8",
|
||||
creatorId: 19,
|
||||
isReservation: false,
|
||||
|
|
|
@ -15,7 +15,7 @@ struct SectionLiveNowView: View {
|
|||
let onTapCreateLive: () -> Void
|
||||
|
||||
var body: some View {
|
||||
VStack(spacing: 13.3) {
|
||||
LazyVStack(spacing: 13.3) {
|
||||
HStack(spacing: 0) {
|
||||
Text("지금 ")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
|
|
|
@ -103,6 +103,7 @@ struct LiveReservationItemView_Previews: PreviewProvider {
|
|||
price: 0,
|
||||
tags: ["팬미팅", "힐링"],
|
||||
channelName: nil,
|
||||
creatorProfileImage: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
creatorNickname: "user8",
|
||||
creatorId: 19,
|
||||
isReservation: false,
|
||||
|
|
|
@ -92,6 +92,7 @@ struct MyLiveReservationItemView_Previews: PreviewProvider {
|
|||
price: 0,
|
||||
tags: ["팬미팅", "힐링"],
|
||||
channelName: nil,
|
||||
creatorProfileImage: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
creatorNickname: "user8",
|
||||
creatorId: 19,
|
||||
isReservation: false,
|
||||
|
|
Loading…
Reference in New Issue