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 | import { Stack } from "@mui/material";
import GiveButton from "@shared/Button/GiveButton";
import { SubmitHandler, UseFormReturn } from "react-hook-form";
import { ReasonType } from "../components/types";
import { TChallengeTypeName } from "../../types";
import GiveTooltip from "@shared/Tooltip/GiveTooltip";
import { BPVAA_DISABLED_TEXT } from "features/Merchants/MerchantSidePanel/constants";
import { ACTION_DENY_MESSAGE } from "@constants/permissions";
import { useUnderwriterPermissions } from "features/Permissions/AccessControl/hooks";
type ChallengeButtonsProps = {
isChallengeDone: boolean;
hasRejectButton: boolean;
methods: UseFormReturn<ReasonType>;
id: number;
challengeType: TChallengeTypeName;
handleClose: () => void;
onReject: (id: number, reason: string, type: TChallengeTypeName) => void;
onApprove: (id: number, reason: string, type: TChallengeTypeName) => void;
doneDisabled?: boolean;
isChallengeRejected?: boolean;
};
const ChallengeButtons = ({
doneDisabled,
isChallengeDone,
hasRejectButton,
methods,
id,
challengeType,
handleClose,
onReject,
onApprove,
isChallengeRejected,
}: ChallengeButtonsProps) => {
const onDone: SubmitHandler<ReasonType> = async (data) => {
onApprove(id, data.reason, challengeType);
};
const onClickReject: SubmitHandler<ReasonType> = async (data) => {
onReject(id, data.reason, challengeType);
};
const { isUpdateChallengeAllowed } = useUnderwriterPermissions();
return (
<Stack gap="12px" flexDirection="row">
{(isChallengeDone || isChallengeRejected) && (
<GiveButton
label="Close"
variant="filled"
size="large"
onClick={handleClose}
/>
)}
{hasRejectButton && !isChallengeRejected && !isChallengeDone && (
<GiveTooltip
disableHoverListener={isUpdateChallengeAllowed}
color="default"
title={ACTION_DENY_MESSAGE}
placement="top"
>
<GiveButton
onClick={methods.handleSubmit(onClickReject)}
label="Reject"
variant="ghost"
size="large"
color="destructive"
disabled={!isUpdateChallengeAllowed}
/>
</GiveTooltip>
)}
{(!isChallengeDone || isChallengeRejected) && (
<GiveTooltip
disableHoverListener={!doneDisabled && isUpdateChallengeAllowed}
color="default"
title={
isUpdateChallengeAllowed ? BPVAA_DISABLED_TEXT : ACTION_DENY_MESSAGE
}
placement="top"
>
<GiveButton
label="Done"
variant="filled"
size="large"
onClick={methods.handleSubmit(onDone)}
disabled={doneDisabled || !isUpdateChallengeAllowed}
/>
</GiveTooltip>
)}
</Stack>
);
};
export default ChallengeButtons;
|