-
Notifications
You must be signed in to change notification settings - Fork 6
/
ProjectsFilters.tsx
182 lines (159 loc) · 5.33 KB
/
ProjectsFilters.tsx
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
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2022-2023 Dyne.org foundation <[email protected]>.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import { useTranslation } from "next-i18next";
import { useRouter } from "next/router";
import { useState } from "react";
// Select components
import { Button, Card, Stack, Text } from "@bbtgnn/polaris-interfacer";
import { getOptionValue } from "components/brickroom/utils/BrSelectUtils";
import SearchUsers from "./SearchUsers";
import SelectProjectType from "./SelectProjectType";
import SelectTags from "./SelectTags";
import BrUserDisplay from "./brickroom/BrUserDisplay";
import PCardWithAction from "./polaris/PCardWithAction";
//
export interface ProjectsFiltersProps {
hidePrimaryAccountable?: boolean;
hideConformsTo?: boolean;
children?: React.ReactNode;
}
export const ProjectFilters = ["conformsTo", "tags", "primaryAccountable"] as const;
export type ProjectFilter = typeof ProjectFilters[number];
export type QueryFilters<T> = Record<ProjectFilter, T>;
//
export default function ProjectsFilters(props: ProjectsFiltersProps) {
const { hidePrimaryAccountable = false, hideConformsTo = false, children } = props;
const { t } = useTranslation("lastUpdatedProps");
const router = useRouter();
/* Filters */
// Getting query values
const query = router.query as QueryFilters<string>;
// Converts query value in string array
function getFilterValues(filter: ProjectFilter): Array<string> {
if (!query[filter]) return [];
else return query[filter].split(",");
}
// Creating state and loading it them with existing values
const [queryFilters, setQueryFilters] = useState<QueryFilters<Array<string>>>(() => {
return {
conformsTo: getFilterValues("conformsTo"),
tags: getFilterValues("tags"),
primaryAccountable: getFilterValues("primaryAccountable"),
};
});
/* Filters logic */
function applyFilters() {
for (let f of ProjectFilters) {
if (queryFilters[f].length > 0) query[f] = queryFilters[f].join(",");
else delete query[f];
}
router.push({
pathname: router.pathname,
query,
});
}
function clearFilters() {
setQueryFilters({
conformsTo: [],
tags: [],
primaryAccountable: [],
});
router.replace({
pathname: router.pathname,
query: {},
});
}
/* */
return (
<Card sectioned>
<Stack vertical>
{/* Heading */}
<Text as="h2" variant="heading2xl">
{t("filters") + ":"}
</Text>
{/* Filters */}
{children}
{!hideConformsTo && (
<SelectProjectType
label={t("Type")}
onChange={v => {
setQueryFilters({
...queryFilters,
// @ts-ignore
conformsTo: v.map(getOptionValue),
});
}}
isMulti
defaultValueRaw={queryFilters.conformsTo}
id="type"
/>
)}
<SelectTags
label={t("Tags")}
tags={queryFilters.tags}
setTags={tags => {
setQueryFilters({
...queryFilters,
tags: tags.map(decodeURI),
});
}}
/>
{!hidePrimaryAccountable && (
<SearchUsers
onSelect={c => {
setQueryFilters({
...queryFilters,
// @ts-ignore
primaryAccountable: [...queryFilters.primaryAccountable, c.id],
});
}}
excludeIDs={queryFilters.primaryAccountable}
/>
)}
{queryFilters.primaryAccountable.length && (
<Stack vertical spacing="tight">
<Text variant="bodyMd" as="p">
{t("Selected contributors")}
</Text>
{queryFilters.primaryAccountable.map(contributorId => (
<PCardWithAction
key={contributorId}
onClick={() => {
setQueryFilters({
...queryFilters,
// @ts-ignore
primaryAccountable: queryFilters.primaryAccountable.filter(e => e !== contributorId),
});
}}
>
<BrUserDisplay userId={contributorId} />
</PCardWithAction>
))}
</Stack>
)}
{/* Control buttons */}
<div className="flex gap-2">
<Button data-test="btn-reset" onClick={clearFilters} size="large" fullWidth>
{t("reset")}
</Button>
<Button primary data-test="btn-apply" onClick={applyFilters} size="large" fullWidth>
{t("apply")}
</Button>
</div>
</Stack>
</Card>
);
}