-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilter.ts
62 lines (58 loc) · 1.82 KB
/
filter.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
import { Subject } from "@prisma/client";
const allSubjects: Subject[] = [
"Algebra",
"Combinatorics",
"Geometry",
"NumberTheory",
];
export type Filter = {
subjects: Subject[];
search: string;
archived: boolean;
page: number;
unsolvedOnly: boolean;
};
export function parseFilter(searchParams: {
[key: string]: string | string[] | undefined;
}): Filter {
const subjectString =
typeof searchParams.subject === "string" ? searchParams.subject : "";
const subjects = allSubjects.filter((subject) =>
subjectString.toLowerCase().includes(subject[0].toLowerCase()),
);
const search =
typeof searchParams.search === "string" ? searchParams.search : "";
const archived =
typeof searchParams.archived === "string" &&
searchParams.archived === "true";
const page =
typeof searchParams.page === "string" ? parseInt(searchParams.page, 10) : 1;
const unsolvedOnly =
typeof searchParams.unsolvedOnly === "string" &&
searchParams.unsolvedOnly === "true";
return { subjects, search, archived, page, unsolvedOnly };
}
// TODO: escape special characters
export function filterToString(filter: Filter): string {
const queryParams = new URLSearchParams();
if (filter.subjects !== undefined && filter.subjects.length > 0) {
const subjectString = filter.subjects
.map((s) => s[0].toLowerCase())
.join("");
queryParams.set("subject", subjectString);
}
if (filter.search !== "") {
queryParams.set("search", filter.search);
}
if (filter.archived) {
queryParams.set("archived", "true");
}
if (filter.page !== undefined && filter.page !== 1) {
queryParams.set("page", filter.page.toString());
}
if (filter.unsolvedOnly) {
queryParams.set("unsolvedOnly", "true");
}
const queryString = queryParams.toString();
return queryString ? `?${queryString}` : "";
}