-
Notifications
You must be signed in to change notification settings - Fork 1
/
system-architecture-uml.xmi
226 lines (191 loc) · 6.31 KB
/
system-architecture-uml.xmi
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
@startuml
title System Architecture
' ========== Presentation Layer ==========
package "Presentation Layer" {
package "ViewModel" {
class LightsVM {
- api: CoronaNetworkable
- locationManager: Locationable
- notificationManager: Notificationable
- requestPushTime: Date?
+ loading: PublishSubject<Boolean>
+ networkError: PublishSubject<NetworkError>
+ locationError: PublishSubject<LocationError>
+ townStatus: PublishSubject<StatusColors>
+ localNotice: PublishSubject<Bool>
+ notificationTapped: PublishSubject<Bool>
+ disposeBag: DisposeBag
+ setupRefreshTimer()
+ setupNotification()
+ setTownStatus(status: Int)
+ sendLocalNoticeNotification(interval: TimeInterval)
+ requestNotificationPermission()
}
}
package "Coordinator" {
interface Coordinator
class MainCoordinator {
+ childCoordinators: [Coordinator] = []
+ navigationController: UINavigationController
+ start()
+ pushRulesPage(statusColors: StatusColors)
}
Coordinator <|-- MainCoordinator
}
}
' ========== Services Layer ==========
package "Services Layer" {
package "Notification" {
interface Notificationable {
+ sendLocalNoticeNotification(interval: TimeInterval)
+ sendNotification(interval: TimeInterval)
+ requestNotificationPermission()
}
class NotificationManager {
+ init()
+ center: UNUserNotificationCenter
+ disposeBag: DisposeBag
+ localNoticeNotification: Notification
+ notificationTapped: PublishSubject<Bool>
+ makeContent(notification: Notification): UNMutableNotificationContent
+ registerCategories()
+ sendLocalNoticeNotification(interval: TimeInterval)
+ sendNotification(interval: TimeInterval)
+ requestNotificationPermission()
+ useNotificationCenter(center: UNUserNotificationCenter,
notification: UNNotification,
options: UNNotificationPresentationOptions -> Void)
}
}
package "Location" {
interface Locationable
class LocationManager {
+ init()
}
}
package "Network" {
interface CoronaNetworkable
interface CoronaServiceAdaptable
interface Moya
class CoronaNetworking {
+ init()
+ getIncidents()
+ isLoading()
+ raisedNetworkError()
}
class CoronaAPI {
+ getStats()
}
}
}
' ========== UI Layer ==========
package "UI Layer" {
class LightsVC {
- lightsView: LightsView
- viewModel: LightsVM
- coordinator: MainCoordinator
- locationErrorStateable: LocationErrorStateable?
- networkErrorStateable: NetworkErrorStateable?
- normalStateable: NormalStateable?
- currentStatus: StatusColors = off
- disposeBag: DisposeBag
+ init(viewModel: LightsVM, coordinator: MainCoordinator)
+ loadView()
+ pushRulesPage()
+ setupGeneralBindings()
+ setupErrorBindings()
+ setupNavigationBindings()
+ setupStates()
+ setLocationErrorState(error: LocationError)
+ setNetworkErrorState(error: NetworkError)
+ setNormalState()
}
package "View" {
class LightsView {
- lightsUIManager: LightManageable
- currentOnlineLight: StatusColors = off
+ init()
+ viewSetups()
+ changeDescriptionLabel()
+ handleStackViewGesture()
+ addLightsToStackView()
}
' ========== UI Utilities ==========
package "UI Utilities" {
interface LightManageable
class LightsUIManager {
+ currentOnlineLight: StatusColors = off
+ lights: [Light] = []
+ init()
+ makeLights()
+ turnOn(statusColors: StatusColors)
+ blinkAllLights()
}
}
}
package "State" {
interface LocationErrorStateable
class LocationErrorState {
- lightsView: LightsView
- localizedErrorMessage: String?
- locationError: LocationError?
+ init(lightsView: LightsView)
+ setLocationErrorState(error: LocationError)
- handleGeneralViews()
- handleButtons()
- sendMessageView()
- setupState(error: LocationError)
}
interface NetworkErrorStateable
class NetworkErrorState {
- lightsView: LightsView
- localizedErrorMessage: String?
- locationError: NetworkError?
+ init(lightsView: LightsView)
+ setNetworkErrorState(error: NetworkError)
- handleGeneralViews()
- handleButtons()
- sendMessageView()
- setupState(error: NetworkError)
}
interface NormalStateable
class NormalState {
- lightsView: LightsView
+ init(lightsView: LightsView)
+ setNormalState()
- handleGeneralViews()
}
}
}
' ========== Relationships Between Packages ==========
' Define inheritance and uses AFTER all classes are defined to prevent duplicates.
' Notification relations
Notificationable <|-- NotificationManager
' Location relations
Locationable <|-- LocationManager
' Network relations
CoronaNetworkable <|-- CoronaNetworking
CoronaNetworking ..> CoronaServiceAdaptable
CoronaServiceAdaptable <|-- CoronaAPI
CoronaAPI ..> Moya
' ViewModel relations
LightsVM --> Notificationable
LightsVM --> Locationable
LightsVM --> CoronaNetworkable
' Coordinator -> View
MainCoordinator "owns" --> LightsVC
' View -> State
LightsVC --> LocationErrorStateable
LightsVC --> NetworkErrorStateable
LightsVC --> NormalStateable
' View composition
LightsVC "owns" --> LightsView
LightsVC "owns" --> LightsVM
LightsView "owns" --> LightsUIManager
' State relations
LocationErrorStateable <|-- LocationErrorState
NetworkErrorStateable <|-- NetworkErrorState
NormalStateable <|-- NormalState
' Manager relations
LightManageable <|-- LightsUIManager
@enduml