Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat show no of filters applied #118

Merged
38 changes: 36 additions & 2 deletions src/common/search/FilterPlays.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const FilterPlaysModalBody = ({ filterQuery, setFilterQuery }) => {
<select
className="form-control"
onChange={(event) =>
setFilterQuery({ ...filterQuery, tags: [event.target.value] })
setFilterQuery({ ...filterQuery, tags: event.target.value !== "" ? [event.target.value] : [] })
}
value={filterQuery.tags[0]}
>
Expand Down Expand Up @@ -70,6 +70,31 @@ const FilterPlaysModalBody = ({ filterQuery, setFilterQuery }) => {
);
};

const getAppliedFilter = (filterObject) => {
//for single filter to check whether filter has been applied
const noOfLevelsApplied =
filterObject?.level !== undefined && filterObject.level.trim() !== ""
? 1
: 0;
const noOfcreatorsApplied =
filterObject.creator !== undefined && filterObject.creator.trim() !== ""
? 1
: 0;
let totalTags = noOfLevelsApplied +
noOfcreatorsApplied;

//if the appiled filter is an array form. Useful for handling multi filter

if (filterObject?.tags || filterObject?.labels || filterObject?.creators) {
totalTags +=
filterObject?.tags?.length ? filterObject.tags.length : 0 +
filterObject?.labels?.length ? filterObject.labels.length : 0 +
filterObject?.creators?.length ? filterObject.creators.length : 0;
}

return totalTags;
};

const FilterPlays = () => {
const location = useLocation();
const navigate = useNavigate();
Expand All @@ -80,19 +105,26 @@ const FilterPlays = () => {
labels: [],
creators: [],
});
const [noOfAppliedFilter, setnoOfAppliedFilter] = useState(0);

useBackListener(({ action }) => {
if (action === "POP") {
console.log("POP");
setModifiedFilterQuery({
level: "",
tags: [],
creator: "",
labels: [],
atapas marked this conversation as resolved.
Show resolved Hide resolved
creators: [],
});
setFilterQuery({
level: "",
tags: [],
creator: "",
labels: [],
creators: [],
atapas marked this conversation as resolved.
Show resolved Hide resolved
});
setnoOfAppliedFilter(0);
}
if (action === "PUSH") {
console.log("PUSH");
Expand All @@ -107,12 +139,14 @@ const FilterPlays = () => {
creator: "",
});
}
setnoOfAppliedFilter(0);
});
const handleFilter = (event) => {
event.preventDefault();
console.log("filterQuery", filterQuery);
console.log("modifiedFilterQuery", modifiedFilterQuery);
setFilterQuery(modifiedFilterQuery);
setnoOfAppliedFilter(getAppliedFilter(modifiedFilterQuery));
if (location.pathname !== "/plays") {
navigate("/plays", { replace: true });
}
Expand Down Expand Up @@ -140,7 +174,7 @@ const FilterPlays = () => {
className="btn-filter"
title="Filter Plays"
>
{/*<div className="badge">8</div>*/}
<div className="badge">{noOfAppliedFilter}</div>
atapas marked this conversation as resolved.
Show resolved Hide resolved
<RiFilterFill
className="icon"
size="28px"
Expand Down