Skip to content

Commit 87a8ae5

Browse files
Kalash ShahKalash Shah
Kalash Shah
authored and
Kalash Shah
committedJan 30, 2023
🐛 fixing contest categorisation and sorting them according to start date
1 parent d66e656 commit 87a8ae5

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed
 

‎graphql/contest.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ type ClistContest {
1111
}
1212

1313
type GetContestOutput {
14+
active: [ClistContest!]!
1415
today: [ClistContest!]!
1516
tomorrow: [ClistContest!]!
1617
week: [ClistContest!]!

‎src/contest/contest.service.ts

+34-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { BadRequestException } from '@nestjs/common';
1010
export class ContestService {
1111
constructor(private readonly prisma: PrismaService) {}
1212

13+
/**
14+
* It fetches all the contests from clist.by and sorts them into different categories according to their start date.
15+
* @param {string} token - The token that is generated when a user logs in.
16+
*/
1317
async getContests(token: string): Promise<GetContestOutput> {
1418
await decode(token, this.prisma);
1519
try {
@@ -18,21 +22,46 @@ export class ContestService {
1822
);
1923
const contests: ClistContest[] = res.data.objects;
2024
const result: GetContestOutput = {
25+
active: [],
2126
today: [],
2227
tomorrow: [],
2328
week: [],
2429
upcoming: [],
2530
};
31+
contests.sort(
32+
(a, b) => new Date(a.start).getTime() - new Date(b.start).getTime(),
33+
);
2634
for (const contest of contests) {
2735
contest.start = new Date(contest.start);
28-
contest.end = new Date(contest.end);
29-
if (contest.start.getDate() === new Date().getDate()) {
36+
const today = new Date();
37+
const tomorrow = new Date();
38+
const week = new Date();
39+
tomorrow.setDate(tomorrow.getDate() + 1);
40+
week.setDate(week.getDate() + 7);
41+
let isActive = false;
42+
if (contest.start < today) {
43+
isActive = true;
44+
result.active.push(contest);
45+
}
46+
if (
47+
contest.start.getDate() === today.getDate() &&
48+
contest.start.getMonth() === today.getMonth() &&
49+
contest.start.getFullYear() === today.getFullYear()
50+
)
3051
result.today.push(contest);
31-
} else if (contest.start.getDate() === new Date().getDate() + 1) {
52+
else if (
53+
contest.start.getDate() === tomorrow.getDate() &&
54+
contest.start.getMonth() === tomorrow.getMonth() &&
55+
contest.start.getFullYear() === tomorrow.getFullYear()
56+
)
3257
result.tomorrow.push(contest);
33-
} else if (contest.start.getDate() <= new Date().getDate() + 7) {
58+
else if (
59+
contest.start.getDate() <= week.getDate() &&
60+
contest.start.getMonth() <= week.getMonth() &&
61+
contest.start.getFullYear() <= week.getFullYear()
62+
)
3463
result.week.push(contest);
35-
} else result.upcoming.push(contest);
64+
else if (!isActive) result.upcoming.push(contest);
3665
}
3766
return result;
3867
} catch (error) {

‎src/graphql.types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ export class ClistContest {
162162
}
163163

164164
export class GetContestOutput {
165+
active: ClistContest[];
165166
today: ClistContest[];
166167
tomorrow: ClistContest[];
167168
week: ClistContest[];

0 commit comments

Comments
 (0)
Please sign in to comment.