-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathToast.swift
195 lines (169 loc) · 6.09 KB
/
Toast.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
//
// Toast.swift
// IOS17-Swift
//
// Created by xqsadness on 18/12/2023.
//
import SwiftUI
// Root view for creating overlay window
struct RootView<Content: View>: View {
@ViewBuilder var content: Content
// View Properties
@State private var overlayWindow: UIWindow?
var body: some View {
content
.onAppear {
if let windowScene = UIApplication.shared.connectedScenes.first as? UIWindowScene, overlayWindow == nil {
let window = PassthroughWindow (windowScene: windowScene)
window.backgroundColor = .clear
// View Controller
let rootController = UIHostingController(rootView: ToastGroup())
rootController.view.frame = windowScene.keyWindow?.frame ?? .zero
rootController.view.backgroundColor = .clear
window.rootViewController = rootController
window.isHidden = false
window.isUserInteractionEnabled = true
window.tag = 1009
overlayWindow = window
}
}
}
}
fileprivate class PassthroughWindow: UIWindow {
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
guard let view = super.hitTest (point, with: event) else { return nil}
return rootViewController?.view == view ? nil : view
}
}
@Observable
class Toast {
static let shared = Toast()
fileprivate var toasts: [ToastItem] = []
var position: Position = .bottom
func present(title: String, symbol: String?, tint: Color = .primary, isUserInteractionEnabled: Bool = false, timing: ToastTime = .medium, position: Position){
self.position = position
withAnimation(.snappy) {
toasts.append(ToastItem(title: title, symbol: symbol, tint: tint, isUserInteractionEnabled: isUserInteractionEnabled, timing: timing))
}
}
}
struct ToastItem: Identifiable {
let id: UUID = .init()
/// Custom Properties
var title: String
var symbol: String?
var tint: Color
var isUserInteractionEnabled: Bool
/// Timing
var timing: ToastTime = .medium
}
enum ToastTime: CGFloat {
case short = 1.0
case medium = 2.0
case long = 3.5
}
fileprivate struct ToastGroup: View {
var model = Toast.shared
var body: some View {
GeometryReader{
let size = $0.size
let safeArea = $0.safeAreaInsets
ZStack{
ForEach(model.toasts){ toast in
ToastView(size: size, item: toast)
.scaleEffect(scale(toast))
.offset(y: offsetY(toast))
.zIndex(Double(model.toasts.firstIndex(where: { $0.id == toast.id }) ?? 0))
}
}
.padding(model.position == .bottom ? .bottom : .top, safeArea.top == .zero ? 15 : 10)
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: model.position == .bottom ? .bottom : .top)
}
}
func offsetY(_ item: ToastItem) -> CGFloat{
let index = CGFloat(model.toasts.firstIndex(where: { $0.id == item.id }) ?? 0)
let totalCount = CGFloat(model.toasts.count) - 1
return (totalCount - index) >= 2 ? -20 : ((totalCount - index) * -10)
}
func scale(_ item: ToastItem) -> CGFloat{
let index = CGFloat(model.toasts.firstIndex(where: { $0.id == item.id }) ?? 0)
let totalCount = CGFloat(model.toasts.count) - 1
return 1.0 - ((totalCount - index) >= 2 ? 0.2 : ((totalCount - index) * 0.1))
}
}
fileprivate struct ToastView: View {
var size: CGSize
var item: ToastItem
var model = Toast.shared
//View props
@State private var delayTask: DispatchWorkItem?
var body: some View {
HStack(spacing: 0){
if let symbol = item.symbol{
Image(systemName: symbol)
.font(.title3)
.padding(.trailing, 10)
}
Text(item.title)
.lineLimit(1)
}
.foregroundStyle(item.tint)
.padding(.horizontal, 15)
.padding(.vertical, 8)
.background(
.background
.shadow(.drop(color: .primary.opacity(0.06), radius: 5,x: 5, y: 5))
.shadow(.drop(color: .primary.opacity(0.06), radius: 5,x: -5, y: -5)), in: .capsule
)
.contentShape(Capsule())
.gesture(
DragGesture(minimumDistance: 0)
.onEnded({ value in
guard item.isUserInteractionEnabled else { return }
let endY = value.translation.height
let velocityY = value.velocity.height
if model.position == .bottom{
if (endY + velocityY) > 100{
// Removing toast
removeToast()
}
}else{
if (endY + velocityY) < 100{
// Removing toast
removeToast()
}
}
})
)
.onAppear{
guard delayTask == nil else { return }
delayTask = .init(block: {
removeToast()
})
if let delayTask{
DispatchQueue.main.asyncAfter(deadline: .now() + item.timing.rawValue, execute: delayTask)
}
}
//Limiting size
.frame(maxWidth: size.width * 0.7)
.transition(.offset(y: model.position == .bottom ? 150 : -150))
}
func removeToast(){
if let delayTask{
delayTask.cancel()
}
print("dismiss")
withAnimation(.snappy){
Toast.shared.toasts.removeAll(where: { $0.id == item.id })
}
}
}
#Preview{
RootView{
ContentView()
}
}
enum Position{
case top
case bottom
}