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>
59 lines
1.9 KiB
Swift
59 lines
1.9 KiB
Swift
//
|
|
// View.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 8/15/22.
|
|
//
|
|
|
|
import Introspect
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
// MARK: Custom introspect functions
|
|
|
|
func introspectCollectionView(customize: @escaping (UICollectionView) -> Void) -> some View {
|
|
inject(UIKitIntrospectionView(
|
|
selector: { introspectionView in
|
|
guard let viewHost = Introspect.findViewHost(from: introspectionView) else {
|
|
return nil
|
|
}
|
|
return Introspect.previousSibling(containing: UICollectionView.self, from: viewHost)
|
|
},
|
|
customize: customize
|
|
))
|
|
}
|
|
|
|
// From https://github.com/siteline/SwiftUI-Introspect/pull/129
|
|
public func introspectSearchController(customize: @escaping (UISearchController) -> Void) -> some View {
|
|
introspectNavigationController { navigationController in
|
|
let navigationBar = navigationController.navigationBar
|
|
if let searchController = navigationBar.topItem?.searchController {
|
|
customize(searchController)
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: Modifiers
|
|
|
|
func conditionalContextMenu(id: some Hashable,
|
|
@ViewBuilder _ internalContent: @escaping () -> some View) -> some View
|
|
{
|
|
modifier(ConditionalContextMenu(internalContent, id: id))
|
|
}
|
|
|
|
func conditionalId(_ id: some Hashable) -> some View {
|
|
modifier(ConditionalId(id: id))
|
|
}
|
|
|
|
func disabledAppearance(_ disabled: Bool, dimmedOpacity: Double? = nil, animation: Animation? = nil) -> some View {
|
|
modifier(DisabledAppearance(disabled: disabled, dimmedOpacity: dimmedOpacity, animation: animation))
|
|
}
|
|
|
|
func disableInteraction(_ disabled: Bool) -> some View {
|
|
modifier(DisableInteraction(disabled: disabled))
|
|
}
|
|
|
|
func inlinedList() -> some View {
|
|
modifier(InlinedList())
|
|
}
|
|
}
|