1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 06:10:32 +05:30
yattee/Shared/Settings/AdvancedSettings.swift

191 lines
5.9 KiB
Swift
Raw Normal View History

import Defaults
import SwiftUI
struct AdvancedSettings: View {
@Default(.showMPVPlaybackStats) private var showMPVPlaybackStats
2022-07-02 16:19:57 +05:30
@Default(.mpvCacheSecs) private var mpvCacheSecs
@Default(.mpvCachePauseWait) private var mpvCachePauseWait
2022-07-07 03:38:38 +05:30
@Default(.mpvEnableLogging) private var mpvEnableLogging
2022-12-13 16:39:20 +05:30
@Default(.showCacheStatus) private var showCacheStatus
@Default(.feedCacheSize) private var feedCacheSize
@Default(.showPlayNowInBackendContextMenu) private var showPlayNowInBackendContextMenu
2022-07-07 03:38:38 +05:30
@State private var filesToShare = [MPVClient.logFile]
2022-11-12 00:25:18 +05:30
@State private var presentingShareSheet = false
2022-12-10 07:31:59 +05:30
private var settings = SettingsModel.shared
var body: some View {
VStack(alignment: .leading) {
#if os(macOS)
advancedSettings
Spacer()
#else
List {
advancedSettings
}
#if os(iOS)
2022-07-07 03:38:38 +05:30
.sheet(isPresented: $presentingShareSheet) {
ShareSheet(activityItems: filesToShare)
.id("logs-\(filesToShare.count)")
}
.listStyle(.insetGrouped)
#endif
#endif
}
#if os(tvOS)
.frame(maxWidth: 1000)
#endif
.navigationTitle("Advanced")
}
2022-07-07 03:38:38 +05:30
var logButton: some View {
Button {
#if os(macOS)
NSWorkspace.shared.selectFile(MPVClient.logFile.path, inFileViewerRootedAtPath: YatteeApp.logsDirectory.path)
#else
presentingShareSheet = true
#endif
} label: {
#if os(macOS)
2022-10-12 22:19:47 +05:30
let labelText = "Open logs in Finder".localized()
2022-07-07 03:38:38 +05:30
#else
2022-10-12 22:19:47 +05:30
let labelText = "Share Logs...".localized()
2022-07-07 03:38:38 +05:30
#endif
Text(labelText)
}
}
@ViewBuilder var advancedSettings: some View {
Section(header: SettingsHeader(text: "Advanced")) {
showPlayNowInBackendButtonsToggle
}
2022-07-02 16:19:57 +05:30
Section(header: SettingsHeader(text: "MPV"), footer: mpvFooter) {
showMPVPlaybackStatsToggle
2022-07-07 03:38:38 +05:30
#if !os(tvOS)
mpvEnableLoggingToggle
#endif
2022-07-02 16:19:57 +05:30
HStack {
Text("cache-secs")
2022-07-04 02:02:26 +05:30
.frame(minWidth: 140, alignment: .leading)
2022-07-02 16:19:57 +05:30
TextField("cache-secs", text: $mpvCacheSecs)
2022-12-22 01:46:47 +05:30
#if !os(macOS)
.keyboardType(.URL)
#endif
2022-07-02 16:19:57 +05:30
}
2022-07-04 02:02:26 +05:30
.multilineTextAlignment(.trailing)
2022-07-02 16:19:57 +05:30
HStack {
Text("cache-pause-wait")
2022-07-04 02:02:26 +05:30
.frame(minWidth: 140, alignment: .leading)
2022-07-02 16:19:57 +05:30
TextField("cache-pause-wait", text: $mpvCachePauseWait)
2022-12-22 01:46:47 +05:30
#if !os(macOS)
.keyboardType(.URL)
#endif
2022-07-02 16:19:57 +05:30
}
2022-07-04 02:02:26 +05:30
.multilineTextAlignment(.trailing)
2022-07-07 03:38:38 +05:30
if mpvEnableLogging {
logButton
}
2022-07-02 16:19:57 +05:30
}
2022-12-10 07:31:59 +05:30
2022-12-13 16:39:20 +05:30
Section(header: SettingsHeader(text: "Cache"), footer: cacheSize) {
showCacheStatusToggle
feedCacheSizeTextField
2022-12-10 07:31:59 +05:30
clearCacheButton
}
2022-07-02 16:19:57 +05:30
}
2022-07-02 16:19:57 +05:30
@ViewBuilder var mpvFooter: some View {
2022-07-04 02:02:26 +05:30
let url = "https://mpv.io/manual/master"
2022-07-02 16:19:57 +05:30
VStack(alignment: .leading) {
Text("Restart the app to apply the settings above.")
2022-07-04 02:02:26 +05:30
VStack(alignment: .leading, spacing: 2) {
#if os(tvOS)
Text("More info can be found in MPV Documentation:")
Text(url)
#else
Text("More info can be found in:")
Link("MPV Documentation", destination: URL(string: url)!)
#if os(macOS)
.onHover(perform: onHover(_:))
#endif
#endif
2022-07-02 16:19:57 +05:30
}
}
2022-07-02 16:19:57 +05:30
.foregroundColor(.secondary)
}
var showPlayNowInBackendButtonsToggle: some View {
Toggle("Show video context menu options to force selected backend", isOn: $showPlayNowInBackendContextMenu)
}
var showMPVPlaybackStatsToggle: some View {
2022-07-02 16:19:57 +05:30
Toggle("Show playback statistics", isOn: $showMPVPlaybackStats)
}
2022-07-04 02:02:26 +05:30
2022-07-07 03:38:38 +05:30
var mpvEnableLoggingToggle: some View {
Toggle("Enable logging", isOn: $mpvEnableLogging)
}
2022-07-04 02:02:26 +05:30
#if os(macOS)
private func onHover(_ inside: Bool) {
if inside {
NSCursor.pointingHand.push()
} else {
NSCursor.pop()
}
}
#endif
2022-11-12 00:25:18 +05:30
2022-12-13 16:39:20 +05:30
private var feedCacheSizeTextField: some View {
HStack {
Text("Maximum feed items")
.frame(minWidth: 200, alignment: .leading)
2023-04-23 02:40:05 +05:30
.multilineTextAlignment(.leading)
2022-12-13 16:39:20 +05:30
TextField("Limit", text: $feedCacheSize)
2023-04-23 02:40:05 +05:30
.multilineTextAlignment(.trailing)
2022-12-13 16:39:20 +05:30
#if !os(macOS)
.keyboardType(.numberPad)
#endif
}
}
private var showCacheStatusToggle: some View {
Toggle("Show cache status", isOn: $showCacheStatus)
}
2022-12-10 07:31:59 +05:30
private var clearCacheButton: some View {
2022-11-12 00:25:18 +05:30
Button {
2022-12-10 07:31:59 +05:30
settings.presentAlert(
Alert(
title: Text(
"Are you sure you want to clear cache?"
),
2022-12-12 14:51:46 +05:30
primaryButton: .destructive(Text("Clear"), action: BaseCacheModel.shared.clear),
2022-12-10 07:31:59 +05:30
secondaryButton: .cancel()
)
)
2022-11-12 00:25:18 +05:30
} label: {
2022-12-10 07:31:59 +05:30
Text("Clear all")
.foregroundColor(.red)
2022-11-12 00:25:18 +05:30
}
}
2022-12-10 07:31:59 +05:30
var cacheSize: some View {
2023-04-23 02:40:05 +05:30
Text(String(format: "Total size: %@".localized(), BaseCacheModel.shared.totalSizeFormatted))
2022-12-10 07:31:59 +05:30
.foregroundColor(.secondary)
}
}
struct AdvancedSettings_Previews: PreviewProvider {
static var previews: some View {
AdvancedSettings()
2022-11-12 00:25:18 +05:30
.injectFixtureEnvironmentObjects()
}
}