AllDebrid is another debrid provider. Add support to Ferrite in addition to RealDebrid. The overall debrid login backend has changed to accomodate for a more agnostic app structure where more services can be added as needed. Also add some cosmetic changes to search so filters can be added while searching for a phrase. Signed-off-by: kingbri <bdashore3@proton.me>
105 lines
3.7 KiB
Swift
105 lines
3.7 KiB
Swift
//
|
|
// SettingsSourceListView.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 7/25/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct SettingsSourceListView: View {
|
|
let backgroundContext = PersistenceController.shared.backgroundContext
|
|
|
|
@EnvironmentObject var navModel: NavigationViewModel
|
|
|
|
@FetchRequest(
|
|
entity: SourceList.entity(),
|
|
sortDescriptors: []
|
|
) var sourceLists: FetchedResults<SourceList>
|
|
|
|
@State private var presentSourceSheet = false
|
|
@State private var selectedSourceList: SourceList?
|
|
|
|
var body: some View {
|
|
ZStack {
|
|
if sourceLists.isEmpty {
|
|
EmptyInstructionView(title: "No Lists", message: "Add a source list using the + button in the top-right")
|
|
} else {
|
|
List {
|
|
ForEach(sourceLists, id: \.self) { sourceList in
|
|
VStack(alignment: .leading, spacing: 5) {
|
|
Text(sourceList.name)
|
|
|
|
Text(sourceList.author)
|
|
.foregroundColor(.gray)
|
|
|
|
Text("ID: \(sourceList.id)")
|
|
.font(.caption)
|
|
.foregroundColor(.gray)
|
|
}
|
|
.padding(.vertical, 2)
|
|
.contextMenu {
|
|
Button {
|
|
navModel.selectedSourceList = sourceList
|
|
presentSourceSheet.toggle()
|
|
} label: {
|
|
Text("Edit")
|
|
Image(systemName: "pencil")
|
|
}
|
|
|
|
if #available(iOS 15.0, *) {
|
|
Button(role: .destructive) {
|
|
PersistenceController.shared.delete(sourceList, context: backgroundContext)
|
|
} label: {
|
|
Text("Remove")
|
|
Image(systemName: "trash")
|
|
}
|
|
} else {
|
|
Button {
|
|
PersistenceController.shared.delete(sourceList, context: backgroundContext)
|
|
} label: {
|
|
Text("Remove")
|
|
Image(systemName: "trash")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.onDelete { offsets in
|
|
for index in offsets {
|
|
if let list = sourceLists[safe: index] {
|
|
PersistenceController.shared.delete(list, context: backgroundContext)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.listStyle(.insetGrouped)
|
|
.inlinedList()
|
|
}
|
|
}
|
|
.sheet(isPresented: $presentSourceSheet) {
|
|
if #available(iOS 16, *) {
|
|
SourceListEditorView()
|
|
.presentationDetents([.medium])
|
|
} else {
|
|
SourceListEditorView()
|
|
}
|
|
}
|
|
.navigationTitle("Source Lists")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbar {
|
|
ToolbarItem(placement: .navigationBarTrailing) {
|
|
Button {
|
|
presentSourceSheet.toggle()
|
|
} label: {
|
|
Image(systemName: "plus")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct SettingsSourceListView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
SettingsSourceListView()
|
|
}
|
|
}
|