-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy pathStatusBarPreviewView.swift
111 lines (93 loc) · 3.83 KB
/
StatusBarPreviewView.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//
//
import SwiftUI
fileprivate struct StatusBarPreviewView: UIViewRepresentable {
var title: String?
var subtitle: String?
var style: StatusBarNotificationStyle
var progress: Double
var activity: Bool
internal init(_ title: String?, subtitle: String?, progress: Double, activity: Bool) {
self.title = title
self.subtitle = subtitle
self.style = StatusBarNotificationStyle()
self.progress = progress
self.activity = activity
}
init(_ title: String? = nil,
subtitle: String? = nil,
progress: Double = 0.0,
activity: Bool = false,
style: ((StatusBarNotificationStyle) -> Void)? = nil)
{
self.init(title, subtitle: subtitle, progress: progress, activity: activity)
if let style = style {
style(self.style)
}
}
func makeUIView(context: Context) -> UIView {
let view = NotificationView()
view.title = self.title
view.subtitle = self.subtitle
view.style = self.style
view.displaysActivityIndicator = self.activity
view.progressBarPercentage = self.progress
return view
}
func updateUIView(_ view: UIView, context: Context) {}
}
@available(iOS 15.0, *)
struct StatusBarPreviewView_Previews: PreviewProvider {
static var previews: some View {
VStack(spacing: 8.0) {
StatusBarPreviewView("Full Width Style - Light") { style in
style.backgroundStyle.backgroundType = .fullWidth
}
.frame(height: 100)
StatusBarPreviewView("Full Width Style - Dark", subtitle: "Test", progress: 0.88, activity: true) { style in
style.backgroundStyle.backgroundColor = .darkGray
style.textStyle.textColor = .white
style.backgroundStyle.backgroundType = .fullWidth
style.progressBarStyle.barColor = .magenta
style.progressBarStyle.offsetY = 0.0
style.progressBarStyle.horizontalInsets = 0.0
}.frame(height: 100)
StatusBarPreviewView("Pill Style - Light", subtitle: "Test II") { style in
style.progressBarStyle.offsetY = 0.0
}.frame(height: 50)
StatusBarPreviewView("Pill Style - Dark", progress: 0.88, activity: true) { style in
style.backgroundStyle.backgroundColor = .darkGray
style.textStyle.textColor = .white
style.progressBarStyle.barColor = .magenta
}.frame(height: 50)
StatusBarPreviewView("The quick brown fox jumps over the lazy dog. (Longer text test)",
progress: 1.0) { style in
style.progressBarStyle.offsetY = 0.0
style.progressBarStyle.horizontalInsets = 10.0
}.frame(height: 50)
StatusBarPreviewView("FYI", subtitle: "Short one.",
progress: 1.0) { style in
style.progressBarStyle.offsetY = 0.0
style.progressBarStyle.horizontalInsets = 10.0
}.frame(height: 50)
StatusBarPreviewView("Title", subtitle: "The quick brown fox jumps over the lazy dog. (Longer text test)") { style in
style.progressBarStyle.offsetY = 0.0
}.frame(height: 50)
StatusBarPreviewView("Title", subtitle: "The quick brown fox jumps over the lazy dog. (Longer text test)", activity: true) { style in
style.progressBarStyle.offsetY = 0.0
}.frame(height: 50)
StatusBarPreviewView("The quick brown fox jumps over the lazy dog. (Longer text test)", subtitle: "Short one", activity: true) { style in
style.progressBarStyle.offsetY = 0.0
}.frame(height: 50)
StatusBarPreviewView("Short one", subtitle: "The quick brown fox jumps over the lazy dog. (Longer text test)", activity: true) { style in
style.progressBarStyle.offsetY = 0.0
}.frame(height: 50)
StatusBarPreviewView("Short one", activity: true) { style in
style.progressBarStyle.offsetY = 0.0
}.frame(height: 50)
Spacer()
}
.background(Color(uiColor: UIColor.systemGray5))
.ignoresSafeArea()
}
}