forked from Dimillian/RedditOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubredditView.swift
93 lines (82 loc) · 3.15 KB
/
SubredditView.swift
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// SubredditView.swift
// RedditOs
//
// Created by Thomas Ricouard on 09/07/2020.
//
import SwiftUI
import Backend
struct SubredditView: View {
let posts = Array(repeating: 0, count: 20)
@EnvironmentObject private var userData: PersistedContent
@StateObject private var viewModel: SubredditViewModel
@AppStorage("postDisplayMode") private var displayMode = SubredditPostRow.DisplayMode.large
@State private var isSearchSheetOpen = false
init(name: String) {
_viewModel = StateObject(wrappedValue: SubredditViewModel(name: name))
}
var isDefaultChannel: Bool {
SidebarViewModel.MainSubreddits.allCases.map{ $0.rawValue }.contains(viewModel.name)
}
var body: some View {
NavigationView {
List {
if let listings = viewModel.listings {
ForEach(listings) { listing in
SubredditPostRow(listing: listing, displayMode: displayMode)
}
LoadingRow(text: "Loading next page")
.onAppear(perform: viewModel.fetchListings)
} else {
LoadingRow(text: nil)
}
}
.listStyle(InsetListStyle())
.frame(width: 430)
}
.navigationTitle(isDefaultChannel ? "\(viewModel.name.capitalized)" : "r/\(viewModel.name)")
.toolbar {
ToolbarItem(placement: .primaryAction) {
Picker(selection: $displayMode,
label: Text("Display"),
content: {
ForEach(SubredditPostRow.DisplayMode.allCases, id: \.self) { mode in
HStack {
Text(mode.rawValue.capitalized)
Image(systemName: mode.iconName())
.tag(mode)
}
}
}).pickerStyle(DefaultPickerStyle())
}
ToolbarItem(placement: .primaryAction) {
if !isDefaultChannel {
Picker(selection: $viewModel.sortOrder,
label: Text("Sorting"),
content: {
ForEach(SubredditViewModel.SortOrder.allCases, id: \.self) { sort in
Text(sort.rawValue.capitalized).tag(sort)
}
})
} else {
EmptyView()
}
}
ToolbarItem(placement: .primaryAction) {
Button(action: {
isSearchSheetOpen = true
}) {
Image(systemName: "magnifyingglass")
}.popover(isPresented: $isSearchSheetOpen) {
SearchSubredditsPopover().environmentObject(userData)
}
}
}
.onAppear(perform: viewModel.fetchListings)
}
}
struct Listing_Previews: PreviewProvider {
static var previews: some View {
SubredditView(name: "Best")
}
}