-
Notifications
You must be signed in to change notification settings - Fork 45
/
ApplicationsStore.ts
262 lines (227 loc) · 7.74 KB
/
ApplicationsStore.ts
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
import _, { Collection, List } from 'underscore';
import API from '../api/API';
import { Application, Channel, Group, Package } from '../api/apiDataTypes';
import Store from './BaseStore';
import { setUser } from './redux/features/user';
import store from './redux/store';
class ApplicationsStore extends Store {
applications: Application[];
interval: null | number;
constructor(noRefresh?: boolean) {
super();
this.applications = [];
if (noRefresh) {
this.interval = null;
} else {
this.getApplications();
this.interval = window.setInterval(() => {
this.getApplications();
}, 60 * 1000);
}
}
// Applications
getCachedApplications() {
return this.applications;
}
getCachedApplication(applicationID: string) {
const app = _.findWhere(this.applications, { id: applicationID });
if (!app) {
return null;
}
return { ...app };
}
getApplications() {
API.getApplications()
.then(response => {
this.applications = response.applications;
this.emitChange();
})
.catch(error => {
switch (error.status) {
case 404:
this.applications = [];
this.emitChange();
break;
case 401:
store.dispatch(setUser({ authenticated: false }));
break;
default:
console.debug('Error', error);
}
});
}
getApplication(applicationID: string) {
API.getApplication(applicationID).then(application => {
if (this.applications) {
const applicationItem = application;
const index = _.findIndex(this.applications, { id: applicationID });
if (index >= 0) {
this.applications[index] = applicationItem;
} else {
this.applications.unshift(applicationItem);
}
this.emitChange();
}
});
}
getCachedPackages(applicationID: string) {
const app = _.findWhere(this.applications as Collection<any>, { id: applicationID });
const packages = app ? app.packages : [];
return packages;
}
getCachedChannels(applicationID: string) {
const app = _.findWhere(this.applications as Collection<any>, { id: applicationID });
const channels = app ? app.channels : [];
return channels;
}
createApplication(
data: Pick<Application, 'name' | 'description' | 'product_id'>,
clonedApplication: string
) {
return API.createApplication(data, clonedApplication).then(application => {
const applicationItem = application;
if (this.applications) {
this.applications.unshift(applicationItem);
this.applications = [...this.applications];
this.emitChange();
}
});
}
updateApplication(applicationID: string, data: any) {
data.id = applicationID;
return API.updateApplication(data).then(application => {
const applicationToUpdate = _.findWhere(this.applications as Collection<any>, {
id: application.id,
});
applicationToUpdate.name = application.name;
applicationToUpdate.description = application.description;
applicationToUpdate.product_id = application.product_id;
this.emitChange();
});
}
getAndUpdateApplication(applicationID: string) {
API.getApplication(applicationID).then(application => {
const applicationItem = application;
const index = _.findIndex(this.applications as List<any>, { id: applicationID });
if (this.applications) {
this.applications[index] = applicationItem;
this.emitChange();
}
});
}
deleteApplication(applicationID: string) {
API.deleteApplication(applicationID).then(() => {
this.applications = _.without(
this.applications as List<any>,
_.findWhere(this.applications as Collection<any>, { id: applicationID })
);
this.emitChange();
});
}
// Groups
createGroup(data: Group) {
return API.createGroup(data).then(group => {
const groupItem = group;
const applicationToUpdate = _.findWhere(this.applications as Collection<any>, {
id: groupItem.application_id,
});
if (applicationToUpdate.groups) {
applicationToUpdate.groups.unshift(groupItem);
} else {
applicationToUpdate.groups = [groupItem];
}
this.emitChange();
});
}
deleteGroup(applicationID: string, groupID: string) {
API.deleteGroup(applicationID, groupID).then(() => {
const applicationToUpdate = _.findWhere(this.applications as Collection<any>, {
id: applicationID,
});
const newGroups = _.without(
applicationToUpdate.groups,
_.findWhere(applicationToUpdate.groups, { id: groupID })
);
applicationToUpdate.groups = [...newGroups];
this.emitChange();
});
}
updateGroup(data: Group) {
return API.updateGroup(data).then(group => {
const groupItem = group;
const applicationToUpdate = _.findWhere(this.applications as Collection<any>, {
id: groupItem.application_id,
});
const index = _.findIndex(applicationToUpdate.groups, { id: groupItem.id });
applicationToUpdate.groups[index] = groupItem;
this.emitChange();
});
}
getGroup(applicationID: string, groupID: string) {
API.getGroup(applicationID, groupID).then(group => {
const applicationToUpdate = _.findWhere(this.applications as Collection<any>, {
id: group.application_id,
});
const index = _.findIndex(applicationToUpdate.groups, { id: group.id });
if (applicationToUpdate) {
if (applicationToUpdate.groups) {
if (index >= 0) {
applicationToUpdate.groups[index] = group;
} else {
applicationToUpdate.groups.unshift(group);
}
} else {
applicationToUpdate.groups = [group];
}
}
this.emitChange();
});
}
getGroupVersionCountTimeline(applicationID: string, groupID: string, duration: string) {
// Not much value here, but we still abstract the API call in case we
// want to e.g. cache the results in the future.
return API.getGroupVersionCountTimeline(applicationID, groupID, duration);
}
getGroupStatusCountTimeline(applicationID: string, groupID: string, duration: string) {
// Not much value here, but we still abstract the API call in case we
// want to e.g. cache the results in the future.
return API.getGroupStatusCountTimeline(applicationID, groupID, duration);
}
// Channels
createChannel(data: Channel): Promise<void> {
return API.createChannel(data).then(channel => {
const channelItem = channel;
this.getAndUpdateApplication(channelItem.application_id);
});
}
deleteChannel(applicationID: string, channelID: string): Promise<void> {
return API.deleteChannel(applicationID, channelID).then(() => {
this.getAndUpdateApplication(applicationID);
});
}
updateChannel(data: Channel): Promise<void> {
return API.updateChannel(data).then(channel => {
const channelItem = channel;
this.getAndUpdateApplication(channelItem.application_id);
});
}
// Packages
createPackage(data: Partial<Package>): Promise<void> {
return API.createPackage(data).then(packageItem => {
const newpackage = packageItem;
this.getAndUpdateApplication(newpackage.application_id);
});
}
deletePackage(applicationID: string, packageID: string): Promise<void> {
return API.deletePackage(applicationID, packageID).then(() => {
this.getAndUpdateApplication(applicationID);
});
}
updatePackage(data: Partial<Package>): Promise<void> {
return API.updatePackage(data).then(packageItem => {
const updatedpackage = packageItem;
this.getAndUpdateApplication(updatedpackage.application_id);
});
}
}
export default ApplicationsStore;