This repository was archived by the owner on Mar 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathchallenges.js
200 lines (174 loc) · 5.19 KB
/
challenges.js
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
import { createActions } from "redux-actions";
import service from "../services/challenges";
import * as util from "../utils/challenge";
import * as constants from "../constants";
async function doGetChallenges(filter) {
return service.getChallenges(filter);
}
async function getAllActiveChallenges(filter) {
const BUCKET_ALL_ACTIVE_CHALLENGES = constants.FILTER_BUCKETS[0];
let page;
if (util.isDisplayingBucket(filter, BUCKET_ALL_ACTIVE_CHALLENGES)) {
page = filter.page;
} else {
page = 1;
}
const allActiveFilter = {
...util.createChallengeCriteria(filter),
...util.createAllActiveChallengeCriteria(),
page,
};
return doGetChallenges(allActiveFilter);
}
async function getOpenForRegistrationChallenges(filter) {
const BUCKET_OPEN_FOR_REGISTRATION = constants.FILTER_BUCKETS[1];
let page;
if (util.isDisplayingBucket(filter, BUCKET_OPEN_FOR_REGISTRATION)) {
page = filter.page;
} else {
page = 1;
}
const openForRegistrationFilter = {
...util.createChallengeCriteria(filter),
...util.createOpenForRegistrationChallengeCriteria(),
page,
};
return doGetChallenges(openForRegistrationFilter);
}
async function getClosedChallenges(filter) {
const BUCKET_CLOSED_CHALLENGES = constants.FILTER_BUCKETS[1];
let page;
if (util.isDisplayingBucket(filter, BUCKET_CLOSED_CHALLENGES)) {
page = filter.page;
} else {
page = 1;
}
const closedFilter = {
...util.createChallengeCriteria(filter),
...util.createClosedChallengeCriteria(),
page,
};
return doGetChallenges(closedFilter);
}
async function getRecommendedChallenges(filter) {
let result = [];
result.meta = { total: 0 };
if (result.length === 0) {
const failbackFilter = { ...filter };
result = await getOpenForRegistrationChallenges(failbackFilter);
result.loadingRecommendedChallengesError = true;
}
return result;
}
function doFilterBySubSommunities(challenges) {
return challenges;
}
function doFilterByPrizeFrom(challenges) {
return challenges;
}
function doFilterByPrizeTo(challenges) {
return challenges;
}
async function getChallenges(filter, change) {
const FILTER_BUCKETS = constants.FILTER_BUCKETS;
const BUCKET_ALL_ACTIVE_CHALLENGES = FILTER_BUCKETS[0];
const BUCKET_OPEN_FOR_REGISTRATION = FILTER_BUCKETS[1];
const BUCKET_CLOSED_CHALLENGES = FILTER_BUCKETS[2];
const filterChange = change;
const bucket = filter.bucket;
const getChallengesByBuckets = async (f) => {
return FILTER_BUCKETS.includes(f.bucket)
? Promise.all([
getAllActiveChallenges(f),
f.recommended
? getRecommendedChallenges(f)
: getOpenForRegistrationChallenges(f),
getClosedChallenges(f),
])
: [[], [], []];
};
if (!filterChange) {
let [
allActiveChallenges,
openForRegistrationChallenges,
closedChallenges,
] = await getChallengesByBuckets(filter);
let challenges;
let openForRegistrationCount;
let total;
let loadingRecommendedChallengesError;
switch (bucket) {
case BUCKET_ALL_ACTIVE_CHALLENGES:
challenges = allActiveChallenges;
break;
case BUCKET_OPEN_FOR_REGISTRATION:
challenges = openForRegistrationChallenges;
break;
case BUCKET_CLOSED_CHALLENGES:
challenges = closedChallenges;
break;
}
openForRegistrationCount = openForRegistrationChallenges.meta.total;
total = challenges.meta.total;
loadingRecommendedChallengesError =
challenges.loadingRecommendedChallengesError;
return {
challenges,
total,
openForRegistrationCount,
loadingRecommendedChallengesError,
allActiveChallenges,
openForRegistrationChallenges,
closedChallenges,
};
}
if (!util.checkRequiredFilterAttributes(filter)) {
return { challenges: [], challengesFiltered: [], total: 0 };
}
let allActiveChallenges;
let openForRegistrationChallenges;
let closedChallenges;
let challenges;
let openForRegistrationCount;
let total;
let loadingRecommendedChallengesError;
if (util.shouldFetchChallenges(filterChange)) {
[
allActiveChallenges,
openForRegistrationChallenges,
closedChallenges,
] = await getChallengesByBuckets(filter);
switch (bucket) {
case BUCKET_ALL_ACTIVE_CHALLENGES:
challenges = allActiveChallenges;
break;
case BUCKET_OPEN_FOR_REGISTRATION:
challenges = openForRegistrationChallenges;
break;
case BUCKET_CLOSED_CHALLENGES:
challenges = closedChallenges;
break;
}
}
openForRegistrationCount = openForRegistrationChallenges.meta.total;
total = challenges.meta.total;
loadingRecommendedChallengesError =
challenges.loadingRecommendedChallengesError;
if (util.shouldFilterChallenges(filterChange)) {
challenges = doFilterBySubSommunities(challenges);
challenges = doFilterByPrizeFrom(challenges);
challenges = doFilterByPrizeTo(challenges);
}
return {
challenges,
total,
openForRegistrationCount,
loadingRecommendedChallengesError,
allActiveChallenges,
openForRegistrationChallenges,
closedChallenges,
};
}
export default createActions({
GET_CHALLENGES: getChallenges,
});