blob: 37a9334aa52a62b7860a6f3af7deac30192d74b1 (
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
62
63
|
import SwiftUI
import UIKit
enum SRHTShareTarget: String {
case repository = "repository"
case commit = "commit"
case file = "file"
case build = "build"
case tracker = "tracker"
case ticket = "ticket"
case profile = "profile"
case paste = "paste"
var fallbackMessage: String {
"This \(rawValue) does not have a valid web URL to share."
}
}
struct SRHTShareButton<Label: View>: View {
let url: URL?
let target: SRHTShareTarget
@ViewBuilder let label: () -> Label
@State private var isShowingShareSheet = false
@State private var isShowingFallbackAlert = false
var body: some View {
Button {
if url != nil {
isShowingShareSheet = true
} else {
isShowingFallbackAlert = true
}
} label: {
label()
}
.sheet(isPresented: $isShowingShareSheet) {
if let url {
ShareSheet(activityItems: [url])
}
}
.alert("Share Unavailable", isPresented: $isShowingFallbackAlert) {
Button("OK", role: .cancel) {
// Alert dismissal is implicit; no additional action required.
}
} message: {
Text(target.fallbackMessage)
}
}
}
private struct ShareSheet: UIViewControllerRepresentable {
let activityItems: [Any]
func makeUIViewController(context _: Context) -> UIActivityViewController {
UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
}
func updateUIViewController(_ : UIActivityViewController, context _: Context) {
// UIActivityViewController is fully configured in makeUIViewController.
// No state-driven updates are required.
}
}
|