Skip to content

Commit f0a0dce

Browse files
committed
Refactor auth + router
1 parent f5b8812 commit f0a0dce

File tree

12 files changed

+101
-67
lines changed

12 files changed

+101
-67
lines changed

.vscode/launch.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
{
88
"type": "sweetpad-lldb",
99
"request": "launch",
10-
"name": "Attach to running app (SweetPad)",
10+
"name": "Debug",
1111
"preLaunchTask": "sweetpad: launch"
1212
}
1313
]
14-
}
14+
}

App/AppRouter.swift

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import FeedUI
2+
import NotificationsUI
3+
import PostUI
4+
import Router
5+
import SwiftUI
6+
7+
public struct AppRouter: ViewModifier {
8+
public func body(content: Content) -> some View {
9+
content
10+
.navigationDestination(for: RouterDestination.self) { destination in
11+
switch destination {
12+
case .feed(let uri, let name, let avatarImageURL):
13+
PostsFeedView(uri: uri, name: name, avatarImageURL: avatarImageURL)
14+
case .post(let post):
15+
PostDetailView(post: post)
16+
case .timeline:
17+
PostsTimelineView()
18+
}
19+
}
20+
}
21+
}
22+
23+
extension View {
24+
public func withAppRouter() -> some View {
25+
modifier(AppRouter())
26+
}
27+
}

App/AppTabsRoot.swift

+1-10
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,7 @@ struct AppTabRootView: View {
2121
NavigationStack(path: $router[tab]) {
2222
tab.rootView
2323
.navigationBarHidden(true)
24-
.navigationDestination(for: RouterDestination.self) { destination in
25-
switch destination {
26-
case .feed(let uri, let name, let avatarImageURL):
27-
PostsFeedView(uri: uri, name: name, avatarImageURL: avatarImageURL)
28-
case .post(let post):
29-
PostDetailView(post: post)
30-
case .timeline:
31-
PostsTimelineView()
32-
}
33-
}
24+
.withAppRouter()
3425
.environment(\.currentTab, tab)
3526
}
3627
}

App/IcySkyApp.swift

+19-10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ struct IcySkyApp: App {
1515
@State var auth: Auth = .init()
1616
@State var currentUser: CurrentUser?
1717
@State var router: Router = .init()
18+
@State var isLoadingInitialSession: Bool = true
19+
20+
@Environment(\.scenePhase) var scenePhase
1821

1922
var body: some Scene {
2023
WindowGroup {
@@ -45,17 +48,23 @@ struct IcySkyApp: App {
4548
}
4649
}
4750
)
48-
.task {
49-
if await auth.refresh() == nil {
51+
.task(id: auth.session) {
52+
if let newSession = auth.session {
53+
await refreshEnvWith(session: newSession)
54+
if router.presentedSheet == .auth {
55+
router.presentedSheet = nil
56+
}
57+
} else if auth.session == nil && !isLoadingInitialSession {
5058
router.presentedSheet = .auth
5159
}
60+
isLoadingInitialSession = false
5261
}
53-
.onChange(of: auth.session) { old, new in
54-
if let newSession = new {
55-
refreshEnvWith(session: newSession)
56-
router.presentedSheet = nil
57-
} else if old != nil && new == nil {
58-
router.presentedSheet = .auth
62+
.task(id: scenePhase) {
63+
if scenePhase == .active {
64+
await auth.refresh()
65+
if auth.session == nil {
66+
router.presentedSheet = .auth
67+
}
5968
}
6069
}
6170
.overlay(
@@ -120,9 +129,9 @@ struct IcySkyApp: App {
120129
}
121130
}
122131

123-
private func refreshEnvWith(session: UserSession) {
132+
private func refreshEnvWith(session: UserSession) async {
124133
let client = BSkyClient(session: session, protoClient: ATProtoKit(session: session))
125134
self.client = client
126-
self.currentUser = CurrentUser(client: client)
135+
self.currentUser = await CurrentUser(client: client)
127136
}
128137
}

IcySky.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"originHash" : "3a57643fb93924ae3e2e31cca833f05a6fdd5fb34c5f6d1fe705dd4ea90b6ba6",
2+
"originHash" : "2c1d0e9f1b1f0b46873371aafc79b826af2a41ada3554d9f17d2ad096695fcd4",
33
"pins" : [
44
{
55
"identity" : "atprotokit",
66
"kind" : "remoteSourceControl",
77
"location" : "https://github.com/MasterJ93/ATProtoKit",
88
"state" : {
9-
"revision" : "08923750931951495bbb55371dbbb06cb90f5e13",
10-
"version" : "0.20.0"
9+
"branch" : "main",
10+
"revision" : "ca2ea402e498273fce3e181ed767019f51305280"
1111
}
1212
},
1313
{
@@ -33,17 +33,17 @@
3333
"kind" : "remoteSourceControl",
3434
"location" : "https://github.com/apple/swift-log.git",
3535
"state" : {
36-
"revision" : "9cb486020ebf03bfa5b5df985387a14a98744537",
37-
"version" : "1.6.1"
36+
"revision" : "96a2f8a0fa41e9e09af4585e2724c4e825410b91",
37+
"version" : "1.6.2"
3838
}
3939
},
4040
{
4141
"identity" : "swift-syntax",
4242
"kind" : "remoteSourceControl",
4343
"location" : "https://github.com/swiftlang/swift-syntax.git",
4444
"state" : {
45-
"revision" : "64889f0c732f210a935a0ad7cda38f77f876262d",
46-
"version" : "509.1.1"
45+
"revision" : "0687f71944021d616d34d922343dcef086855920",
46+
"version" : "600.0.1"
4747
}
4848
},
4949
{

Packages/Features/Sources/FeedUI/List/FeedsListView.swift

+14-2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,16 @@ public struct FeedsListView: View {
6666
guard !isInSearch else { return }
6767
Task { await fetchSuggestedFeed() }
6868
}
69+
.onChange(of: currentUser.savedFeeds.count) {
70+
switch filter {
71+
case .suggested:
72+
feeds = feeds.filter { feed in
73+
!currentUser.savedFeeds.contains { $0.value == feed.uri }
74+
}
75+
case .myFeeds:
76+
Task { await fetchMyFeeds() }
77+
}
78+
}
6979
.listRowSeparator(.hidden)
7080
}
7181

@@ -83,9 +93,11 @@ extension FeedsListView {
8393
private func fetchSuggestedFeed() async {
8494
error = nil
8595
do {
86-
let feeds = try await client.protoClient.getSuggestedFeeds()
96+
let feeds = try await client.protoClient.getPopularFeedGenerators(matching: nil)
8797
withAnimation {
88-
self.feeds = feeds.feeds.map { $0.feedItem }
98+
self.feeds = feeds.feeds.map { $0.feedItem }.filter { feed in
99+
!currentUser.savedFeeds.contains { $0.value == feed.uri }
100+
}
89101
}
90102
} catch {
91103
self.error = error

Packages/Features/Sources/NotificationsUI/NotificationsListView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public struct NotificationsListView: View {
1515
public var body: some View {
1616
NavigationStack {
1717
List {
18-
HeaderView(title: "Notifications")
18+
HeaderView(title: "Notifications", showBack: false)
1919
.padding(.bottom)
2020
ForEach(notifications, id: \.notificationURI) { notification in
2121
Text(notification.notificationReason.rawValue)

Packages/Features/Sources/PostUI/List/PostsFeedView.swift

+20-18
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,28 @@ public struct PostsFeedView: View {
2323
public var body: some View {
2424
PostListView(datasource: self)
2525
.onAppear {
26-
withAnimation {
27-
do {
28-
try modelContext.delete(
29-
model: RecentFeedItem.self,
30-
where: #Predicate { feed in
31-
feed.uri == uri
32-
})
33-
modelContext.insert(
34-
RecentFeedItem(
35-
uri: uri,
36-
name: name,
37-
avatarImageURL: avatarImageURL,
38-
lastViewedAt: Date()
39-
)
40-
)
41-
try modelContext.save()
42-
} catch {}
43-
}
26+
updateRecentlyViewed()
4427
}
4528
}
29+
30+
private func updateRecentlyViewed() {
31+
do {
32+
try modelContext.delete(
33+
model: RecentFeedItem.self,
34+
where: #Predicate { feed in
35+
feed.uri == uri
36+
})
37+
modelContext.insert(
38+
RecentFeedItem(
39+
uri: uri,
40+
name: name,
41+
avatarImageURL: avatarImageURL,
42+
lastViewedAt: Date()
43+
)
44+
)
45+
try modelContext.save()
46+
} catch {}
47+
}
4648
}
4749

4850
// MARK: - Datasource

Packages/Model/Package.resolved

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"originHash" : "f8f57ad9104df17507a66ed0009a3dfe0092bee34f0c22ded26cbadd45ac749c",
2+
"originHash" : "ab17d83bbc31e56e6e212c669f73fd9e87f22beab0992e71293b9e6bb755ce79",
33
"pins" : [
44
{
55
"identity" : "atprotokit",
66
"kind" : "remoteSourceControl",
77
"location" : "https://github.com/MasterJ93/ATProtoKit",
88
"state" : {
9-
"revision" : "08923750931951495bbb55371dbbb06cb90f5e13",
10-
"version" : "0.20.0"
9+
"branch" : "main",
10+
"revision" : "ca2ea402e498273fce3e181ed767019f51305280"
1111
}
1212
},
1313
{

Packages/Model/Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
],
1616
dependencies: [
1717
.package(
18-
url: "https://github.com/MasterJ93/ATProtoKit", from: "0.20.0"),
18+
url: "https://github.com/MasterJ93/ATProtoKit", branch: "main"),
1919
.package(url: "https://github.com/evgenyneu/keychain-swift", from: "24.0.0"),
2020
],
2121
targets: [

Packages/Model/Sources/Auth/Auth.swift

+1-4
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,17 @@ public final class Auth: @unchecked Sendable {
5353
self.session = session
5454
}
5555

56-
public func refresh() async -> UserSession? {
56+
public func refresh() async {
5757
do {
5858
if let refreshToken {
5959
let configuration = ATProtocolConfiguration(handle: "", appPassword: "")
6060
let session = try await configuration.refreshSession(using: refreshToken)
6161
self.authToken = session.accessToken
6262
self.refreshToken = session.refreshToken
6363
self.session = session
64-
return session
6564
}
66-
return nil
6765
} catch {
6866
self.session = nil
69-
return nil
7067
}
7168
}
7269

Packages/Model/Sources/User/CurrentUser.swift

+5-9
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,16 @@ public class CurrentUser {
1010
public private(set) var profile: AppBskyLexicon.Actor.ProfileViewDetailedDefinition?
1111
public private(set) var savedFeeds: [AppBskyLexicon.Actor.SavedFeed] = []
1212

13-
public init(client: BSkyClient) {
13+
public init(client: BSkyClient) async {
1414
self.client = client
15-
16-
Task {
17-
await fetchProfile()
18-
await refreshCurrentUser()
19-
}
15+
await fetch()
2016
}
2117

22-
public func refreshCurrentUser() async {
18+
public func fetch() async {
2319
await fetchProfile()
2420
await fetchPreferences()
2521
}
26-
22+
2723
public func fetchProfile() async {
2824
do {
2925
self.profile = try await client.protoClient.getProfile(client.session.sessionDID)
@@ -39,7 +35,7 @@ public class CurrentUser {
3935
switch preference {
4036
case .savedFeedsVersion2(let feeds):
4137
var feeds = feeds.items
42-
feeds.removeAll(where: { $0.value == "following"})
38+
feeds.removeAll(where: { $0.value == "following" })
4339
self.savedFeeds = feeds
4440
default:
4541
break

0 commit comments

Comments
 (0)