-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJustHUD.swift
268 lines (230 loc) · 9.05 KB
/
JustHUD.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
//
// JustHUD.swift
// mWELL
//
// Created by Shubham Naik on 11/07/17.
// Copyright © 2017 Shubham. All rights reserved.
//
import UIKit
class JustHUD: UIView {
private var backView : UIView?
private var progressIndicator : UIActivityIndicatorView?
private var titleLabel : UILabel?
private var footerLabel : UILabel?
//Customizable properties
private var headerColor = UIColor.white
private var footerColor = UIColor.white
private var backColor = UIColor.black
private var loaderColor = UIColor.white
///Shared instance for easy access
static let shared = JustHUD()
init() {
super.init(frame: CGRect.zero)
}
required init?(coder aDecoder: NSCoder)
{
super.init(coder: aDecoder)
}
override init(frame: CGRect)
{
super.init(frame: frame)
}
// MARK: Customizing methods
class func setHeaderColor(color: UIColor) {
shared.headerColor = color
}
class func setFooterColor(color: UIColor) {
shared.footerColor = color
}
class func setLoaderColor(color: UIColor) {
shared.loaderColor = color
}
class func setBackgroundColor(color: UIColor, automaticTextColor: Bool = false) {
shared.backColor = color
if automaticTextColor {
shared.headerColor = getComplementaryForColor(color: color, relativeTo: shared.headerColor)
shared.footerColor = getComplementaryForColor(color: color, relativeTo: shared.footerColor)
shared.loaderColor = getComplementaryForColor(color: color, relativeTo: shared.loaderColor)
}
}
// MARK: Public Methods
/// Show the loader added to the mentioned view with the provided title and footer texts
func showInView(view : UIView, withHeader : String?, andFooter: String?)
{
self.hide()
self.frame = view.frame
setIndicator()
if let title = withHeader, !isCleanedStringEmpty(string: title) {
setTitleLabel(text: title)
titleLabel!.frame = CGRect(x: 0, y: 0, width: getLabelSize().width, height: getLabelSize().height)
}
if let footer = andFooter, !isCleanedStringEmpty(string: footer) {
setFooterLabel(text: footer)
footerLabel!.frame = CGRect(x: 0, y: 0, width: getLabelSize().width, height: getLabelSize().height)
}
setBackGround(view: self)
if let title = withHeader, !isCleanedStringEmpty(string: title) {
titleLabel!.frame.origin = getHeaderOrigin(view: backView!)
titleLabel?.adjustsFontSizeToFitWidth = true
backView?.addSubview(titleLabel!)
}
if let footer = andFooter, !isCleanedStringEmpty(string: footer) {
footerLabel!.frame.origin = getFooterOrigin(view: backView!)
footerLabel?.adjustsFontSizeToFitWidth = true
backView?.addSubview(footerLabel!)
}
progressIndicator?.frame.origin = getIndicatorOrigin(view: backView!, activityIndicatorView: progressIndicator!)
backView?.addSubview(progressIndicator!)
view.addSubview(self)
}
// Show the loader added to the mentioned window with the provided title and footer texts
func showInWindow(window : UIWindow, withHeader title : String?, andFooter footer : String?)
{
self.showInView(view: window, withHeader: title, andFooter: footer)
}
// Show the loader added to the mentioned view with no title and footer texts
func showInView(view : UIView)
{
self.showInView(view: view, withHeader: nil, andFooter: nil)
}
// Show the loader added to the mentioned window with no title and footer texts
func showInWindow(window : UIWindow)
{
self.showInView(view: window, withHeader: nil, andFooter: nil)
}
/// Removes the loader from its superview to hide
func hide()
{
if self.superview != nil
{
self.removeFromSuperview()
progressIndicator?.stopAnimating()
}
}
var isActive: Bool {
return self.superview != nil
}
// MARK: -Set view properties
private func setBackGround(view : UIView)
{
if backView?.superview != nil
{
backView?.removeFromSuperview()
let aView = backView?.viewWithTag(1001) as UIView?
aView?.removeFromSuperview()
}
backView = UIView(frame: getBackGroundFrame(view: self))
backView?.backgroundColor = UIColor.clear
let translucentView = UIView(frame: backView!.bounds)
translucentView.backgroundColor = backColor
translucentView.alpha = 0.85
translucentView.tag = 1001;
backView?.addSubview(translucentView)
backView?.layer.cornerRadius = 15.0
backView?.clipsToBounds = true
self.addSubview(backView!)
}
private func setIndicator()
{
if progressIndicator?.superview != nil
{
progressIndicator?.removeFromSuperview()
}
progressIndicator = UIActivityIndicatorView(activityIndicatorStyle: .whiteLarge)
progressIndicator?.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.whiteLarge
progressIndicator?.color = loaderColor
progressIndicator?.backgroundColor = UIColor.clear
progressIndicator?.startAnimating()
}
private func setTitleLabel(text : String)
{
if titleLabel?.superview != nil
{
titleLabel?.removeFromSuperview()
}
titleLabel = UILabel()
titleLabel?.text = text
titleLabel?.font = self.boldFontWithFont(font: titleLabel?.font)
titleLabel?.textColor = headerColor
titleLabel?.textAlignment = .center
}
private func setFooterLabel(text : String)
{
if footerLabel?.superview != nil
{
footerLabel?.removeFromSuperview()
}
footerLabel = UILabel()
footerLabel?.text = text
footerLabel?.textColor = footerColor
footerLabel?.textAlignment = .center
}
// MARK: -Get Frame
private func getBackGroundFrame(view : UIView) -> CGRect
{
let sideMargin: CGFloat = 20.0
var side = progressIndicator!.frame.height + sideMargin
if titleLabel?.text != nil && !isCleanedStringEmpty(string: (titleLabel?.text)!)
{
side = progressIndicator!.frame.height + titleLabel!.frame.width
}
else if (footerLabel?.text != nil && !isCleanedStringEmpty(string: (footerLabel?.text)!))
{
side = progressIndicator!.frame.height + footerLabel!.frame.width
}
let originX = view.center.x - (side/2)
let originY = view.center.y - (side/2)
return CGRect(x: originX, y: originY, width: side, height: side)
}
// MARK: Get Size
private func getLabelSize() -> CGSize
{
let width = progressIndicator!.frame.width * 3
let height = progressIndicator!.frame.height / 1.5
return CGSize(width: width, height: height)
}
// MARK: -Get Origin
private func getIndicatorOrigin(view : UIView, activityIndicatorView indicator : UIActivityIndicatorView) -> CGPoint
{
let side = indicator.frame.size.height
let originX = (view.bounds.width/2) - (side/2)
let originY = (view.bounds.height/2) - (side/2)
return CGPoint(x: originX, y: originY)
}
private func getHeaderOrigin(view : UIView) -> CGPoint
{
let width = titleLabel!.frame.size.width
let originX = (view.bounds.width/2) - (width/2)
return CGPoint(x: originX, y: 1)
}
private func getFooterOrigin(view : UIView) -> CGPoint
{
let width = footerLabel!.frame.width
let height = footerLabel!.frame.height
let originX = (view.bounds.width/2) - (width/2)
let originY = view.frame.height - (height + 1)
return CGPoint(x: originX, y: originY)
}
private func isCleanedStringEmpty(string: String) -> Bool
{
let cleanString = string.trimmingCharacters(in: .whitespacesAndNewlines)
return cleanString.isEmpty
}
// MARK: -Set Font
func boldFontWithFont(font : UIFont?) -> UIFont
{
let fontDescriptor = font!.fontDescriptor.withSymbolicTraits(.traitBold)!
return UIFont(descriptor: fontDescriptor, size: font?.pointSize ?? 0.0)
}
// MARK: Colors
/// get a complementary color to this color:
private class func getComplementaryForColor(color: UIColor, relativeTo: UIColor) -> UIColor {
let original = CIColor(color: color)
let relative = CIColor(color: relativeTo)
// get the current values and make the difference from white
let compRed = ((1.0 - original.red) + 0.3 * relative.red)/1.3
let compGreen = ((1.0 - original.green) + 0.3 * relative.green)/1.3
let compBlue = ((1.0 - original.blue) + 0.3 * relative.blue)/1.3
return UIColor(red: compRed, green: compGreen, blue: compBlue, alpha: 1.0)
}
}