yattee/Shared/Documents/DocumentsView.swift

76 lines
2.4 KiB
Swift
Raw Normal View History

2022-11-12 23:01:04 +00:00
import SwiftUI
struct DocumentsView: View {
@ObservedObject private var model = DocumentsModel.shared
var body: some View {
BrowserPlayerControls {
ScrollView(.vertical, showsIndicators: false) {
if model.directoryContents.isEmpty {
2022-11-18 22:39:52 +00:00
NoDocumentsView()
2022-11-12 23:01:04 +00:00
} else {
ForEach(model.sortedDirectoryContents, id: \.absoluteString) { url in
2022-12-04 12:21:50 +00:00
let video = Video.local(model.standardizedURL(url) ?? url)
2022-11-12 23:01:04 +00:00
PlayerQueueRow(
item: PlayerQueueItem(video)
)
.contextMenu {
VideoContextMenuView(video: video)
}
}
.id(model.refreshID)
.transition(.opacity)
}
Color.clear.padding(.bottom, 50)
}
.onAppear {
if model.directoryURL.isNil {
model.goToTop()
}
}
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
2022-11-12 23:07:23 +00:00
if model.canGoBack {
Button {
withAnimation {
model.goBack()
}
} label: {
HStack(spacing: 6) {
Label("Go back", systemImage: "chevron.left")
}
2022-11-12 23:01:04 +00:00
}
2022-11-12 23:07:23 +00:00
.transaction { t in t.animation = .none }
.disabled(!model.canGoBack)
2022-11-12 23:01:04 +00:00
}
}
}
.navigationTitle(model.directoryLabel)
2022-11-12 23:07:23 +00:00
.padding(.horizontal)
2022-11-12 23:01:04 +00:00
.navigationBarTitleDisplayMode(RefreshControl.navigationBarTitleDisplayMode)
.backport
.refreshable {
DispatchQueue.main.async {
self.refresh()
}
}
}
}
func refresh() {
withAnimation {
model.refresh()
}
}
}
struct DocumentsView_Previews: PreviewProvider {
static var previews: some View {
NavigationView {
DocumentsView()
}
.injectFixtureEnvironmentObjects()
.navigationViewStyle(.stack)
}
}