-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoadingView.swift
94 lines (68 loc) · 2.3 KB
/
LoadingView.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
import UIKit
class LoadingView: UIView {
// MARK: - Inner Types
private enum Constants {
static let loadingViewHeight: CGFloat = 80
static let loadingViewWidth: CGFloat = 80
static let defaultPadding: CGFloat = 8
}
// MARK: - Properties
// MARK: Immutable
private let loadingIndicator: UIActivityIndicatorView = {
let activityIndicator = UIActivityIndicatorView(style: .large)
activityIndicator.translatesAutoresizingMaskIntoConstraints = false
return activityIndicator
}()
private let loadingLabel: UILabel = {
let label = UILabel()
label.text = "Loading..."
label.font = UIFont.boldSystemFont(ofSize: 15)
label.textColor = .gray
label.textAlignment = .center
label.translatesAutoresizingMaskIntoConstraints = false
return label
}()
private lazy var loadingStackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: [loadingIndicator, loadingLabel])
stackView.axis = .vertical
stackView.distribution = .fill
stackView.alignment = .center
stackView.translatesAutoresizingMaskIntoConstraints = false
return stackView
}()
// MARK: - Initializers
override init(frame: CGRect) {
super.init(frame: frame)
setupView()
setupSubViews()
setupConstraints()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
// MARK: - Setups
private func setupView() {
isHidden = true
}
private func setupSubViews() {
addSubview(loadingStackView)
}
private func setupConstraints() {
loadingStackView.pinEdges(to: self)
NSLayoutConstraint.activate([
loadingStackView.topAnchor.constraint(equalTo: topAnchor),
loadingStackView.bottomAnchor.constraint(equalTo: bottomAnchor),
loadingStackView.leadingAnchor.constraint(equalTo: leadingAnchor),
loadingStackView.trailingAnchor.constraint(equalTo: trailingAnchor)
])
}
// MARK: - Actions
func show() {
isHidden = false
loadingIndicator.startAnimating()
}
func hide() {
isHidden = true
loadingIndicator.stopAnimating()
}
}