Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 | import useNiceModal from "@common/Modal/ModalFactory/hooks/useNiceModal";
import { Stack, styled } from "@mui/material";
import { palette } from "@palette";
import React, { useMemo } from "react";
import { useForm } from "react-hook-form";
import ChipsContainer from "@common/TableFilters/WrapperWithDateRange";
import CustomVolumePopup from "@common/TableFilters/CustomVolumePopup";
import Placeholder from "assets/images/Placeholder.png";
import {
businessClassificationType,
defaultValuesProvidersFilter,
DefaultValuesTypeProviderFilters,
enterpriseStatusArray,
getApprovedMerchantsArray,
getProcessedArray,
getTransactionsArray,
QUERYOBJECTKEYS_PROVIDERS_FILTERS,
UnderwritingScoreValuesPercentage,
} from "./constants";
import { isArray, isEmpty, isEqual } from "lodash";
import Chip from "@common/TableFilters/Chip";
import { StarIcon } from "@assets/icons";
import { Switch_V2 } from "@common/Switch";
import { findByIdAndModify } from "@utils/helpers";
import { FilterObjectTypes } from "types/utils.types";
import {
getCustomProcessingLabel,
getProcessingAmount,
} from "@common/TableFilters/utils";
import { SelectorOption } from "@common/TableFilters/SelectorOption";
import { useAppDispatch, useAppSelector } from "@redux/hooks";
import {
resetFilterByKey,
selectFiltersObject,
setFilterByKey,
} from "@redux/slices/dynamicFilterSlice";
import { QKEY_LIST_ENTERPRISE_STATS } from "@constants/queryKeys";
import { selectMerchantStatusName } from "@redux/slices/enterprise/merchants";
import { StatusNames } from "@components/Merchants/MerchantList/MerchantStatusFilters";
import SectionItem from "@common/TableFilters/SectionItem";
import UpTrendIconV2 from "@assets/icons/UpTrendIconV2";
import {
StyledAvatar,
StyledDivider,
} from "@common/TableFilters/hooks/useFilterSections";
import DownTrendIconV2 from "@assets/icons/DownTrendIconV2";
import useUserReducer from "@hooks/Reducers/useUserReducer";
import AssigneesSelector from "@common/TableFilters/AssigneesSelector";
import ListItem from "@common/TableFilters/ListItem";
export default function useProviderFilter() {
const { open, onClose, SlideProps } = useNiceModal();
const statusName = useAppSelector(selectMerchantStatusName);
const {
img: currUserImg,
id: currUserId,
email: currUserEmail,
} = useUserReducer();
const isProviderUnderwriting =
StatusNames?.enterpriseUnderwriting === statusName;
const filterObject = useAppSelector((state) =>
selectFiltersObject(state, QKEY_LIST_ENTERPRISE_STATS),
) as DefaultValuesTypeProviderFilters;
const methods = useForm<DefaultValuesTypeProviderFilters>({
defaultValues: isEmpty(filterObject)
? defaultValuesProvidersFilter
: filterObject,
});
const values = methods.watch();
const dispatch = useAppDispatch();
const isObjectsEqual = isEqual(
values,
isEmpty(filterObject) ? defaultValuesProvidersFilter : filterObject,
);
const canClearObj = isEqual(values, defaultValuesProvidersFilter);
const onSubmit = (data: any) => {
dispatch(
setFilterByKey({
filterKey: QKEY_LIST_ENTERPRISE_STATS,
params: data,
}),
);
onClose();
};
const actions = {
primaryAction: {
label: "Apply filters",
disabled: isObjectsEqual,
sx: {
fontSize: "18px",
lineHeight: "18px",
padding: "12px 24px",
},
},
secondaryAction: {
label: "Clear all filters",
onClick: () => {
methods.reset(defaultValuesProvidersFilter);
dispatch(
resetFilterByKey({
filterKey: QKEY_LIST_ENTERPRISE_STATS,
}),
);
},
sx: {
fontSize: "18px",
lineHeight: "18px",
padding: "12px 24px",
color: palette.filled.red,
},
hidden: canClearObj,
},
};
const handleMultiSelect = (
fieldName: QUERYOBJECTKEYS_PROVIDERS_FILTERS.underwriterEmail,
value: any,
) => {
const currentValues: any =
!!values[fieldName] && Array.isArray(values[fieldName])
? (values[fieldName] as SelectorOption[])
: [];
// replace form value if the value param is an array
if (Array.isArray(value)) {
methods.setValue(fieldName, value);
return;
}
if (
currentValues &&
currentValues.find((item: any) => item.id === value.id)
) {
methods.setValue(
fieldName,
currentValues?.filter((item: any) => item.id !== value.id),
);
} else {
const vals = currentValues ? [...currentValues, value] : [value];
methods.setValue(fieldName, vals);
}
};
const renderAmountFlow = ({
key,
array,
prefix,
}: {
key:
| QUERYOBJECTKEYS_PROVIDERS_FILTERS.Transactions
| QUERYOBJECTKEYS_PROVIDERS_FILTERS.Processed
| QUERYOBJECTKEYS_PROVIDERS_FILTERS.approved_merchants;
array: {
label: string;
value: string;
}[];
prefix?: string;
}) => {
return (
<Wrapper>
{array?.map((option) => {
const selectedValue = values?.[key];
const isCustom =
(selectedValue?.label?.toLowerCase().includes("custom") &&
option?.label === "Custom") ||
false;
const isSelected = selectedValue?.label === option?.label || isCustom;
const isMoney = key === QUERYOBJECTKEYS_PROVIDERS_FILTERS?.Processed;
return (
<Chip
key={option.value}
item={
isCustom
? {
label: selectedValue?.label || "Custom",
value: option.value,
}
: option
}
selected={isSelected}
onSelect={() => {
methods.setValue(key, isSelected ? {} : option);
}}
{...(option.value === "custom" && {
PopupComponent: (e) => (
<CustomVolumePopup {...e} isMoney={isMoney} />
),
popupCallback: (e) =>
handleSaveProcessingVolume({
...e,
key: key,
prefix: key,
isMoney,
}),
})}
/>
);
})}
</Wrapper>
);
};
const renderChipsArray = ({
arr,
key,
}: {
arr: any[];
key:
| QUERYOBJECTKEYS_PROVIDERS_FILTERS.enterpriseStatus
| QUERYOBJECTKEYS_PROVIDERS_FILTERS.businessClassification;
}) => {
return (
<Wrapper>
{arr?.map((option) => {
const selectedArray = values?.[key] || [];
if (!isArray(selectedArray)) return;
const isSelected = selectedArray?.find(
(item: any) => item.value === option.value,
);
return (
<Chip
key={option.value}
item={option}
selected={!!isSelected}
allowMultiSelect
onSelect={() => {
const newArray = findByIdAndModify(
selectedArray as FilterObjectTypes[],
option,
);
methods.setValue(key, newArray, {
shouldDirty: true,
});
}}
/>
);
})}
</Wrapper>
);
};
const filterSections = useMemo(() => {
const watchList = {
title: "Watchlist only",
description: "See providers only in the watchlist",
startIcon: <StarIcon fill={palette.neutral[80]} />,
endElement: (
<Switch_V2
size="small"
containerProps={{ alignItems: "initial" }}
name={QUERYOBJECTKEYS_PROVIDERS_FILTERS.watchlist}
checked={Boolean(values.watchlist)}
onChange={(e, checked) =>
methods.setValue(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.watchlist,
checked ? checked : "",
)
}
/>
),
};
const enterpriseStatus = {
title: "Provider Status",
description: "View providers based on their current status",
children: renderChipsArray({
arr: enterpriseStatusArray,
key: QUERYOBJECTKEYS_PROVIDERS_FILTERS.enterpriseStatus,
}),
};
const businessClassification = {
title: "Business Classification Type",
description: "Filter providers by business classification type",
children: renderChipsArray({
arr: businessClassificationType,
key: QUERYOBJECTKEYS_PROVIDERS_FILTERS.businessClassification,
}),
};
const Processed = {
title: "Processed",
description: "See providers with a specific processed range",
children: renderAmountFlow({
key: QUERYOBJECTKEYS_PROVIDERS_FILTERS.Processed,
array: getProcessedArray(QUERYOBJECTKEYS_PROVIDERS_FILTERS.Processed),
}),
};
const Transactions = {
title: "Transactions",
description: "Total number of transactions",
children: renderAmountFlow({
key: QUERYOBJECTKEYS_PROVIDERS_FILTERS.Transactions,
array: getTransactionsArray(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.Transactions,
),
}),
};
const ApprovedMerchants = {
title: "Approved Merchants",
description: "Total number of approved merchants",
children: renderAmountFlow({
key: QUERYOBJECTKEYS_PROVIDERS_FILTERS.approved_merchants,
array: getApprovedMerchantsArray(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.approved_merchants,
),
}),
};
const signupDate = {
title: "Creation Date",
description: "See providers that signed up within a specific date range",
children: (
<Wrapper>
<ChipsContainer
dateName={QUERYOBJECTKEYS_PROVIDERS_FILTERS.createdAt}
selectedDate={values?.signupDate}
rangeSaveCallback={(val) =>
methods.setValue(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.signupDate,
val,
{
shouldDirty: true,
},
)
}
/>
</Wrapper>
),
};
const underwritingScore = {
title: "Underwriting Score",
description: "Specify merchants based on certain underwriting scores",
children: (
<Stack direction="column">
<SectionItem
containerStyle={{ paddingInline: 0 }}
startIcon={<UpTrendIconV2 />}
title="Score exceeds 80%"
description="See merchants with score of 80% or higher"
endElement={
<Switch_V2
size="small"
containerProps={{ alignItems: "initial" }}
checked={
values?.[
QUERYOBJECTKEYS_PROVIDERS_FILTERS
.underwritingChallengeScorePercentage
] === UnderwritingScoreValuesPercentage.overEighty
}
onChange={(e, checked) =>
methods.setValue(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.underwritingChallengeScorePercentage,
checked ? UnderwritingScoreValuesPercentage.overEighty : "",
)
}
/>
}
/>
<StyledDivider />
<SectionItem
startIcon={<DownTrendIconV2 />}
containerStyle={{ paddingInline: 0 }}
title="Score below 80%"
description="See merchants with score of 80% or lower"
endElement={
<Switch_V2
size="small"
containerProps={{ alignItems: "initial" }}
checked={
values?.[
QUERYOBJECTKEYS_PROVIDERS_FILTERS
.underwritingChallengeScorePercentage
] === UnderwritingScoreValuesPercentage.belowEighty
}
onChange={(e, checked) =>
methods.setValue(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.underwritingChallengeScorePercentage,
checked
? UnderwritingScoreValuesPercentage.belowEighty
: "",
)
}
/>
}
/>
</Stack>
),
};
const assignToObj = {
title: "Assigned to me",
description: "See merchants that are assigned to you",
startIcon: <StyledAvatar src={currUserImg || Placeholder} />,
endElement: (
<Switch_V2
size="small"
containerProps={{ alignItems: "initial" }}
checked={Boolean(
values.underwriterEmail?.find(
(item) => item.value === currUserEmail,
),
)}
onChange={(e, checked) =>
handleMultiSelect(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.underwriterEmail,
{
label: currUserEmail,
value: currUserEmail,
id: `${currUserId}`,
},
)
}
/>
),
children: (
<Stack gap={1}>
<StyledDivider />
<SectionItem
containerStyle={{ padding: 0 }}
title="Other Assignees"
description="See merchants that are assigned to specific assignees"
endElement={
<AssigneesSelector
id={currUserId}
selectedValues={values?.underwriterEmail}
handleMultiSelect={handleMultiSelect as any}
type="underwriting_admin"
/>
}
/>
<Stack spacing="6px" paddingTop={1}>
{!!values?.underwriterEmail &&
values.underwriterEmail
?.filter((item) => item.value !== currUserEmail)
.map((item: SelectorOption) => (
<ListItem
key={item.label}
item={item}
onDelete={(val) =>
handleMultiSelect(
QUERYOBJECTKEYS_PROVIDERS_FILTERS.underwriterEmail,
val,
)
}
/>
))}
</Stack>
</Stack>
),
};
return isProviderUnderwriting
? [
watchList,
underwritingScore,
businessClassification,
assignToObj,
signupDate,
]
: [
watchList,
enterpriseStatus,
businessClassification,
Processed,
Transactions,
ApprovedMerchants,
signupDate,
];
}, [values, isProviderUnderwriting]);
const handleSaveProcessingVolume = (param: {
from: number | undefined;
to: number | undefined;
key: string;
prefix?: string;
isMoney: boolean;
}) => {
const factor = param.isMoney ? 100 : 1;
const stringValue = getProcessingAmount({
...(typeof param.from === "number" && {
amount: param.from * factor,
}),
...(typeof param.to === "number" && { secondAmount: param.to * factor }),
modifier: "is between",
prefix: param?.prefix,
});
const customLabel = getCustomProcessingLabel(
param?.from,
param?.to,
param?.isMoney,
);
methods.setValue(param?.key as any, {
label: customLabel,
value: stringValue,
});
};
return {
open,
onClose,
SlideProps,
methods,
onSubmit,
actions,
filterSections,
};
}
const Wrapper = styled(Stack)(() => ({
display: "flex",
flexDirection: "row",
spacing: "8px",
flexWrap: "wrap",
gap: "8px",
}));
|