diff --git a/SodaLive/Sources/App/AppStep.swift b/SodaLive/Sources/App/AppStep.swift index 25bd234..27e18a6 100644 --- a/SodaLive/Sources/App/AppStep.swift +++ b/SodaLive/Sources/App/AppStep.swift @@ -128,7 +128,7 @@ enum AppStep { case seriesDetail(seriesId: Int) - case seriesAll(creatorId: Int) + case seriesAll(creatorId: Int? = nil, creatorNickname: String? = nil, isOriginal: Bool = false) case seriesContentAll(seriesId: Int, seriesTitle: String) diff --git a/SodaLive/Sources/Content/Series/SeriesListAllView.swift b/SodaLive/Sources/Content/Series/SeriesListAllView.swift index 52515af..f4e469b 100644 --- a/SodaLive/Sources/Content/Series/SeriesListAllView.swift +++ b/SodaLive/Sources/Content/Series/SeriesListAllView.swift @@ -10,44 +10,63 @@ import SwiftUI struct SeriesListAllView: View { @ObservedObject var viewModel = SeriesListAllViewModel() - @State var columns: [GridItem] = [] - let creatorId: Int + var creatorId: Int? = nil + var creatorNickname: String? = nil + + var isOriginal = false var body: some View { - BaseView(isLoading: $viewModel.isLoading) { - VStack(spacing: 0) { - DetailNavigationBar(title: "시리즈 전체보기") - - ScrollView(.vertical, showsIndicators: false) { - LazyVGrid(columns: columns, spacing: 33.3) { - ForEach(0..