2021-12-05 01:05:41 +05:30
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct CommentsView: View {
|
2022-01-05 21:42:32 +05:30
|
|
|
var embedInScrollView = false
|
2021-12-05 01:05:41 +05:30
|
|
|
@State private var repliesID: Comment.ID?
|
|
|
|
|
2022-11-25 02:06:05 +05:30
|
|
|
@ObservedObject private var comments = CommentsModel.shared
|
2021-12-05 01:05:41 +05:30
|
|
|
|
|
|
|
var body: some View {
|
2021-12-05 22:44:49 +05:30
|
|
|
Group {
|
|
|
|
if comments.disabled {
|
2022-09-28 21:15:05 +05:30
|
|
|
NoCommentsView(text: "Comments are disabled".localized(), systemImage: "xmark.circle.fill")
|
2021-12-05 22:44:49 +05:30
|
|
|
} else if comments.loaded && comments.all.isEmpty {
|
2022-09-28 21:15:05 +05:30
|
|
|
NoCommentsView(text: "No comments".localized(), systemImage: "0.circle.fill")
|
2021-12-05 22:44:49 +05:30
|
|
|
} else if !comments.loaded {
|
2021-12-30 00:09:38 +05:30
|
|
|
PlaceholderProgressView()
|
2021-12-05 22:44:49 +05:30
|
|
|
} else {
|
2022-01-05 21:42:32 +05:30
|
|
|
let last = comments.all.last
|
|
|
|
let commentsStack = LazyVStack {
|
|
|
|
ForEach(comments.all) { comment in
|
|
|
|
CommentView(comment: comment, repliesID: $repliesID)
|
|
|
|
.onAppear {
|
|
|
|
comments.loadNextPageIfNeeded(current: comment)
|
2021-12-05 22:44:49 +05:30
|
|
|
}
|
2022-06-25 05:09:29 +05:30
|
|
|
.borderBottom(height: comment != last ? 0.5 : 0, color: Color("ControlsBorderColor"))
|
2021-12-05 01:05:41 +05:30
|
|
|
}
|
|
|
|
}
|
2022-01-05 21:42:32 +05:30
|
|
|
|
|
|
|
if embedInScrollView {
|
|
|
|
ScrollView(.vertical, showsIndicators: false) {
|
|
|
|
commentsStack
|
2022-11-14 02:22:29 +05:30
|
|
|
Color.clear.frame(height: 50)
|
2022-01-05 21:42:32 +05:30
|
|
|
}
|
|
|
|
} else {
|
|
|
|
commentsStack
|
|
|
|
}
|
2021-12-05 01:05:41 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
.padding(.horizontal)
|
2021-12-05 22:44:49 +05:30
|
|
|
}
|
2021-12-05 01:05:41 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
struct CommentsView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
if #available(iOS 15.0, macOS 12.0, tvOS 15.0, *) {
|
|
|
|
CommentsView()
|
|
|
|
.previewInterfaceOrientation(.landscapeRight)
|
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
}
|
|
|
|
|
|
|
|
CommentsView()
|
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
}
|
|
|
|
}
|