Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F13797590
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
View Options
diff --git a/Shared/Navigation/ContentView.swift b/Shared/Navigation/ContentView.swift
index d886576..748aaa6 100644
--- a/Shared/Navigation/ContentView.swift
+++ b/Shared/Navigation/ContentView.swift
@@ -1,41 +1,43 @@
import SwiftUI
struct ContentView: View {
@ObservedObject var postStore: PostStore
- @State private var selectedCollection: PostCollection = allPostsCollection
+ @State private var selectedCollection: PostCollection? = allPostsCollection
var body: some View {
NavigationView {
CollectionSidebar(selectedCollection: $selectedCollection)
PostList(
- title: selectedCollection.title,
- posts: showPosts(for: selectedCollection)
+ title: selectedCollection?.title ?? allPostsCollection.title,
+ posts: showPosts(for: selectedCollection ?? allPostsCollection)
)
.frame(maxHeight: .infinity)
.toolbar {
NavigationLink(destination: PostEditor(post: Post())) {
Image(systemName: "square.and.pencil")
}
}
Text("Select a post, or create a new draft.")
.foregroundColor(.secondary)
}
.environmentObject(postStore)
}
-
- func showPosts(for: PostCollection) -> [Post] {
- if selectedCollection == allPostsCollection {
+
+ func showPosts(for collection: PostCollection) -> [Post] {
+ if collection == allPostsCollection {
return postStore.posts
} else {
- return postStore.posts.filter { $0.collection.title == selectedCollection.title }
+ return postStore.posts.filter {
+ $0.collection.title == collection.title
+ }
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView(postStore: testPostStore)
}
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Feb 5, 1:19 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3619050
Attached To
rWFSUI WriteFreely SwiftUI
Event Timeline
Log In to Comment