summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/SettingsView.swift
blob: 4ea60b828ee58c9003fb8938420342a38f4b77fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import SwiftUI

struct SettingsView: View {
  var body: some View {
    NavigationStack {
      Form {
        Section("Browsing") {
          NavigationLink(destination: SettingsSectionProviderView()) {
            Text("Source")
          }

          NavigationLink(destination: SettingsSectionThumbnailsView()) {
            Text("Thumbnails")
          }

          NavigationLink(destination: SettingsSectionDetailsView()) {
            Text("Viewer")
          }
        }

        Section("Search") {
          SettingsSectionSearchView()
        }

        Section("Library") {
          NavigationLink(destination: SettingsCollectionsListView()) {
            Text("Collections")
          }
        }

        Section("Storage & Sync") {
          SettingsSectionSettingsView()
        }

        Section("Bookmarks") {
          SettingsSectionImportExportView()
        }

        #if DEBUG
          Section("Debug") {
            SettingsSectionDebugView()
          }
        #endif

        Section("About") {
          SettingsSectionCreditsView()
        }
      }
      #if os(macOS)
        .formStyle(.grouped)
      #endif
      .navigationTitle("Settings")
    }
  }
}

#Preview {
  SettingsView()
    .environmentObject(SettingsManager())
    .environmentObject(BooruManager(.yandere))
}