Skip to content

Commit eb408d7

Browse files
Reorganize extensions and views
1 parent 9a00897 commit eb408d7

14 files changed

+65
-88
lines changed

Fyreplace.xcodeproj/project.pbxproj

+16-32
Large diffs are not rendered by default.

Fyreplace/Extensions/CGFloat.swift Fyreplace/Extensions/Foundation.swift

+6
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@ extension CGFloat {
77
static var logoSize: Self { 80 }
88
#endif
99
}
10+
11+
extension String {
12+
static var randomUuid: String {
13+
UUID().uuidString
14+
}
15+
}
File renamed without changes.

Fyreplace/Extensions/Label+Destination.swift

-7
This file was deleted.

Fyreplace/Extensions/NSTextContentType.swift

-13
This file was deleted.
File renamed without changes.

Fyreplace/Extensions/String.swift

-7
This file was deleted.

Fyreplace/Extensions/SwiftUI.swift

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import SwiftUI
2+
3+
#if os(macOS)
4+
extension NSTextContentType {
5+
static var email: NSTextContentType? {
6+
if #available(macOS 14.0, *) {
7+
.emailAddress
8+
} else {
9+
nil
10+
}
11+
}
12+
}
13+
#else
14+
extension UITextContentType {
15+
static var email: UITextContentType? {
16+
.emailAddress
17+
}
18+
}
19+
#endif
20+
21+
extension View {
22+
func onDeepLink(perform action: @escaping (URL) -> Void) -> some View {
23+
return onOpenURL(perform: action)
24+
.onContinueUserActivity(NSUserActivityTypeBrowsingWeb) {
25+
if let url = $0.webpageURL {
26+
action(url)
27+
}
28+
}
29+
}
30+
}
31+
32+
extension Label where Title == Text, Icon == Image {
33+
init(_ destination: Destination) {
34+
self.init(destination.titleKey, systemImage: destination.icon)
35+
}
36+
}

Fyreplace/Extensions/UITextContentType.swift

-9
This file was deleted.

Fyreplace/Extensions/View.swift

-12
This file was deleted.

Fyreplace/Views/Screens/LoginScreenProtocol.swift

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
@MainActor
22
protocol LoginScreenProtocol: LoadingViewProtocol {
3-
var api: APIProtocol { get }
4-
53
var identifier: String { get nonmutating set }
64
var randomCode: String { get nonmutating set }
75
var isWaitingForRandomCode: Bool { get nonmutating set }

Fyreplace/Views/Screens/RegisterScreenProtocol.swift

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
@MainActor
22
protocol RegisterScreenProtocol: LoadingViewProtocol {
3-
var api: APIProtocol { get }
4-
53
var username: String { get nonmutating set }
64
var email: String { get nonmutating set }
75
var randomCode: String { get nonmutating set }

Fyreplace/Views/Screens/SettingsScreenProtocol.swift

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import PhotosUI
22
import SwiftUI
33

44
@MainActor
5-
protocol SettingsScreenProtocol: ViewProtocol {
6-
var api: APIProtocol { get }
7-
5+
protocol SettingsScreenProtocol: APIViewProtocol {
86
var token: String { get nonmutating set }
97
var currentUser: Components.Schemas.User? { get nonmutating set }
108
var bio: String { get nonmutating set }

Fyreplace/Views/ViewProtocol.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ protocol ViewProtocol {
77
}
88

99
@MainActor
10-
protocol LoadingViewProtocol: ViewProtocol {
10+
protocol APIViewProtocol: ViewProtocol {
11+
var api: APIProtocol { get }
12+
}
13+
14+
@MainActor
15+
protocol LoadingViewProtocol: APIViewProtocol {
1116
var isLoading: Bool { get nonmutating set }
1217
}
1318

0 commit comments

Comments
 (0)