yattee/Shared/Subscriptions/FeedView.swift

103 lines
2.7 KiB
Swift
Raw Normal View History

import Defaults
import Siesta
import SwiftUI
struct FeedView: View {
@ObservedObject private var feed = FeedModel.shared
2022-12-13 11:09:20 +00:00
@Default(.showCacheStatus) private var showCacheStatus
2022-12-12 00:18:29 +00:00
#if os(tvOS)
@Default(.subscriptionsListingStyle) private var subscriptionsListingStyle
#endif
var videos: [ContentItem] {
ContentItem.array(of: feed.videos)
}
var body: some View {
2023-05-26 23:14:48 +00:00
VerticalCells(items: videos, isLoading: feed.isLoading) { if shouldDisplayHeader { header } }
2022-12-13 19:15:00 +00:00
.environment(\.loadMoreContentHandler) { feed.loadNextPage() }
.onAppear {
feed.loadResources()
}
#if os(iOS)
2022-12-13 19:15:00 +00:00
.refreshControl { refreshControl in
feed.loadResources(force: true) {
refreshControl.endRefreshing()
}
}
.backport
.refreshable {
await feed.loadResources(force: true)
}
#endif
#if !os(tvOS)
.background(
Button("Refresh") {
feed.loadResources(force: true)
}
.keyboardShortcut("r")
.opacity(0)
)
#endif
#if !os(macOS)
.onReceive(NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
feed.loadResources()
}
#endif
}
2022-12-13 19:15:00 +00:00
var header: some View {
HStack {
#if os(tvOS)
SubscriptionsPageButton()
ListingStyleButtons(listingStyle: $subscriptionsListingStyle)
HideWatchedButtons()
2023-05-23 16:54:53 +00:00
HideShortsButtons()
2022-12-13 19:15:00 +00:00
#endif
if showCacheStatus {
Spacer()
CacheStatusHeader(
refreshTime: feed.formattedFeedTime,
isLoading: feed.isLoading
)
}
#if os(tvOS)
Button {
feed.loadResources(force: true)
} label: {
Label("Refresh", systemImage: "arrow.clockwise")
.labelStyle(.iconOnly)
.imageScale(.small)
.font(.caption)
2022-12-13 19:15:00 +00:00
}
#endif
}
.padding(.leading, 30)
#if os(tvOS)
.padding(.bottom, 15)
2023-02-25 15:42:18 +00:00
.padding(.trailing, 30)
2022-12-13 19:15:00 +00:00
#endif
}
var shouldDisplayHeader: Bool {
#if os(tvOS)
true
#else
showCacheStatus
#endif
}
}
2023-02-25 15:42:18 +00:00
struct FeedView_Previews: PreviewProvider {
static var previews: some View {
NavigationView {
FeedView()
}
}
}