콘텐츠 메인 ASMR 탭

- 새로운 ASMR 전체보기
This commit is contained in:
Yu Sung 2025-02-22 09:06:06 +09:00
parent 38498c86af
commit 1f15ebfee3
4 changed files with 84 additions and 1 deletions

View File

@ -147,4 +147,6 @@ enum AppStep {
case completedSeriesAll
case newAlarmContentAll
case newAsmrContentAll
}

View File

@ -0,0 +1,75 @@
//
// ContentMainAsmrAllView.swift
// SodaLive
//
// Created by klaus on 2/22/25.
//
import SwiftUI
struct ContentMainAsmrAllView: View {
@StateObject var viewModel = ContentNewAllViewModel()
let columns = [
GridItem(.flexible(), alignment: .top),
GridItem(.flexible(), alignment: .top),
GridItem(.flexible(), alignment: .top)
]
var body: some View {
NavigationView {
BaseView(isLoading: $viewModel.isLoading) {
VStack(alignment: .leading, spacing: 13.3) {
DetailNavigationBar(title: "새로운 ASMR")
Text("※ 최근 2주간 등록된 새로운 ASMR 입니다.")
.font(.custom(Font.medium.rawValue, size: 14.7))
.foregroundColor(.graybb)
.padding(.horizontal, 13.3)
.padding(.vertical, 8)
.frame(width: screenSize().width, alignment: .leading)
.background(Color.gray22)
HStack(spacing: 0) {
Text("전체")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "e2e2e2"))
Text("\(viewModel.totalCount)")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "ff5c49"))
.padding(.leading, 8)
Text("")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "e2e2e2"))
.padding(.leading, 2)
}
.padding(.horizontal, 13.3)
ScrollView(.vertical, showsIndicators: false) {
LazyVGrid(columns: columns, spacing: 32) {
ForEach(0..<viewModel.newContentList.count, id: \.self) { index in
ContentNewAllItemView(item: viewModel.newContentList[index])
.onAppear {
if index == viewModel.newContentList.count - 1 {
viewModel.getNewContentList()
}
}
}
}
.padding(.horizontal, 13.3)
}
}
.onAppear {
viewModel.selectedTheme = "ASMR"
}
}
}
}
}
#Preview {
ContentMainAsmrAllView()
}

View File

@ -23,7 +23,10 @@ struct ContentMainTabAsmrView: View {
if !viewModel.newAsmrContentList.isEmpty {
ContentMainNewContentViewV2(
title: "새로운 ASMR",
onClickMore: {},
onClickMore: {
AppState.shared
.setAppStep(step: .newAsmrContentAll)
},
themeList: [],
contentList: viewModel.newAsmrContentList
) { _ in }

View File

@ -224,6 +224,9 @@ struct ContentView: View {
case .newAlarmContentAll:
ContentMainAlarmAllView()
case .newAsmrContentAll:
ContentMainAsmrAllView()
default:
EmptyView()
.frame(width: 0, height: 0, alignment: .topLeading)