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 | 22x 22x 1010x 22x 4040x 2794x 1246x 132x 1114x 22x 1010x 1010x 1010x 1010x 1010x 1010x 1010x 1010x 1010x 128x 882x 882x 27x 855x 855x 363x 492x 492x 22x | import UserIconV3 from "@assets/icons/UserIconV3";
import { BankIcon, BusinessProfileIcon } from "@assets/icons/RebrandedIcons";
import ScoreIcon from "@assets/icons/RebrandedIcons/ScoreIcon";
import { MerchantAgreementIcon } from "@assets/icons";
import { palette } from "@palette";
export const renderStatusListIcon = (iconId: string, color: string) => {
switch (iconId) {
case "UserIConV3":
return <UserIconV3 width={24} height={24} color={color} />;
case "BusinessProfileIcon":
return <BusinessProfileIcon width={24} height={24} fill={color} />;
case "ScoreIcon":
return <ScoreIcon width={24} height={24} fill={color} />;
case "BankIcon":
return <BankIcon width={24} height={24} fill={color} />;
case "MerchantAgreementIcon":
return <MerchantAgreementIcon width={24} height={24} fill={color} />;
default:
return <UserIconV3 width={24} height={24} color={color} />;
}
};
type StatusOverviewListProps = {
primaryAccount?: boolean;
businessProfile: boolean;
bankAccount: boolean;
merchantAgreement: boolean;
score?: number;
};
export const statusOverviewList = (
{
bankAccount,
businessProfile,
primaryAccount,
merchantAgreement,
score,
}: StatusOverviewListProps,
isEnterprise?: boolean,
) => [
{
label: "Score",
value: (
<>
Score is <span style={{ fontWeight: 700 }}>{score}%</span>
</>
),
approved: score && score >= 80,
icon: "ScoreIcon",
},
{
label: "Primary Account Holder ID",
value: getOverviewStatusItem("Identity", primaryAccount),
approved: primaryAccount,
icon: "BusinessProfileIcon",
},
{
label: "Business Profile",
value: getOverviewStatusItem("Business profile", businessProfile),
approved: businessProfile,
icon: "UserIConV3",
},
{
label: "Bank Account",
value: getOverviewStatusItem("Bank account", bankAccount),
approved: bankAccount,
icon: "BankIcon",
},
{
label: isEnterprise ? "Provider Agreement" : "Merchant Agreement",
value: getOverviewStatusItem("Agreement", merchantAgreement, "signed"),
approved: merchantAgreement,
icon: "MerchantAgreementIcon",
},
];
export const getOverviewStatusItem = (
label: string,
approved?: boolean,
extension?: string,
) => {
if (approved)
return (
<>
{label}{" "}
<span style={{ fontWeight: 700 }}>
{extension ? `${extension}!` : "approved!"}
</span>
</>
);
if (label === "Bank account")
return (
<>
<span style={{ fontWeight: 700 }}>No</span> bank accounts approved. At
least one bank account must be approved
</>
);
return (
<>
{label} <span style={{ fontWeight: 700 }}>not</span> yet{" "}
{extension || "approved"}
</>
);
};
// TODO: we need to update this function once rebranding is fully implemented
export const getAccountStatus = (
isReadyToApprove: boolean,
statusName: string,
isRebranding = false,
sponsorStatusName?: string,
) => {
const isRefused = statusName === "preapproved_mid_issue";
const isIncomplete =
(!["declined", "suspended", "closed"].includes(statusName) &&
!isReadyToApprove) ||
statusName === "ready_for_underwriting";
const isPending = statusName === "onboarding";
const isOnboarding = statusName === "onboarding";
const isReadyToBeApproved =
isReadyToApprove &&
["has_mid_ready", "preapproved_no_tx", "has_mid_not_ready"].includes(
statusName,
);
const isSponsor = [
"pre_approval",
"auto_approval",
"sponsor_mid_issue",
"ready_for_review",
"pending",
].includes(statusName);
const isKYB = statusName === "ready_for_kyb";
Iif (isRefused) {
return {
label: "Refused by MSP",
color: isRebranding ? "warning" : palette.filled.orange,
bg_color: "#FFF2E9",
};
}
if (isPending)
return {
label: "Pending",
color: "default",
bg_color: "#E5E5E3",
};
Iif (isOnboarding)
return {
label: "Onboarding",
color: "default",
bg_color: "#E5E5E3",
};
if (isSponsor) {
return {
label: "Sponsor",
color: isRebranding ? "warning" : palette.filled.orange,
bg_color: "#FFF3EB",
};
}
Iif (isKYB) {
return {
label: "KYB",
color: "purple",
bg_color: "#EEEAFF",
};
}
if (isIncomplete)
return {
label: isRebranding ? "Underwriting" : "Incomplete",
color: isRebranding ? "info" : palette.neutral[80],
bg_color: "#ECECE9",
};
Iif (isReadyToBeApproved) {
return {
label: "Ready to be Approved",
color: isRebranding ? "info" : "#326EC5",
bg_color: "#9ec8ff4d",
};
}
return accountStatusMap[
statusName as "approved" | "declined" | "suspended" | "closed"
]?.[isRebranding ? "new" : "old"];
};
// TODO: we need to update this object once rebranding is fully implemented
// We need to remove the old object and bg_color from the new object.
// It's still here for now to make sure we don't break the type in other places.
const accountStatusMap = {
approved: {
old: {
label: "Approved",
color: palette.filled.success,
bg_color: "#E6F3EC",
},
new: {
label: "Approved",
color: "success",
bg_color: "#E6F3EC",
},
},
declined: {
old: {
label: "Declined",
color: palette.filled.red,
bg_color: "#F5E0DF",
},
new: {
label: "Declined",
color: "error",
bg_color: "#F5E0DF",
},
},
suspended: {
old: {
label: "Suspended",
color: palette.tag.warning.hover,
bg_color: "#FFF2E9",
},
new: {
label: "Suspended",
color: "warning",
bg_color: "#FFF2E9",
},
},
closed: {
old: {
label: "Closed",
color: palette.filled.red,
bg_color: "#F5E0DF",
},
new: {
label: "Closed",
color: "error",
bg_color: "#F5E0DF",
},
},
};
|