All files / src/features/GiveOnboarding/pages/Business/Owners BusinessOwnerItem.tsx

95.23% Statements 20/21
56.75% Branches 21/37
87.5% Functions 7/8
95.23% Lines 20/21

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                                                                              10x               8x       8x 2x             8x                                                             10x                     8x                                     10x 64x                                                   10x                             8x 8x         8x 8x                         8x       8x                                                             8x       64x                                                                                 10x                 16x                        
import { Box, Divider, Grid, Stack } from "@mui/material";
import { TMerchantDocument } from "@components/Merchants/MerchantPreview/data.types";
import { IFileWithMeta } from "react-dropzone-uploader";
import GiveCollapsableComponent from "@features/Merchants/MerchantSidePanel/GiveMerchantFile/businessOwners/GiveCollapsableComponent";
import GiveText from "@shared/Text/GiveText";
import GiveButton from "@shared/Button/GiveButton";
import { PencilSimpleIcon, TrashIcon } from "@phosphor-icons/react";
import { ReactNode } from "react";
import { getCountryNameFromCode } from "@utils/country_dial_codes";
import {
  formatSSN,
  getOwnershipPercentageLabel,
} from "@features/Merchants/MerchantSidePanel/GiveMerchantFile/hooks/helpers";
import { formatInUTCMoment, isEmptyPhone } from "@utils/date.helpers";
import { getServicePhoneNumber } from "@utils/helpers";
import { BOIDDisplay } from "@features/Merchants/MerchantSidePanel/GiveMerchantFile/businessOwners/BOIDDisplay";
import { NewOnboardingTBusinessOwner } from "@components/common/BusinessOwners/types";
import { renderBODeps } from "@components/ProfilePage/BusinessProfileSetupNew/utils/principal.utils";
import { useGetFeatureFlagValues } from "FeatureFlags/useGetFeatureFlagValues";
 
interface Props {
  owner: NewOnboardingTBusinessOwner;
  businessType: string;
  onEdit: (owner: NewOnboardingTBusinessOwner) => void;
  onDelete: ({
    ownerID,
    firstName,
    lastName,
  }: {
    ownerID: number;
    firstName: string;
    lastName: string;
  }) => void;
  idFile?: TMerchantDocument | IFileWithMeta;
  merchantId?: number;
  isFirst?: boolean;
  isLast?: boolean;
}
 
export const BusinessOwnerItem = ({
  owner,
  businessType,
  onEdit,
  onDelete,
  idFile,
  merchantId,
}: Props) => {
  const handleEdit = () => {
    onEdit(owner);
  };
 
  const handleDelete = () => {
    onDelete({
      ownerID: owner.id as number,
      firstName: owner.firstName,
      lastName: owner.lastName,
    });
  };
 
  return (
    <GiveCollapsableComponent
      isFirst={true}
      isLast={true}
      title={
        <OwnerHeader
          firstName={owner.firstName}
          lastName={owner.lastName}
          businessType={businessType}
          ownership={owner.ownershipPercentage}
        />
      }
      sx={{
        "& .MuiAccordionSummary-content, & .MuiAccordionSummary-root": {
          padding: "0px",
        },
      }}
      withExpandIcon={true}
    >
      <OwnerBody
        businessType={businessType}
        owner={owner}
        onEdit={handleEdit}
        onDelete={handleDelete}
        idFile={idFile}
        merchantId={merchantId}
      />
    </GiveCollapsableComponent>
  );
};
 
const OwnerHeader = ({
  firstName,
  lastName,
  businessType,
  ownership,
}: {
  firstName?: string;
  lastName?: string;
  businessType: string;
  ownership?: number | string;
}) => (
  <Stack>
    <GiveText>{`${firstName} ${lastName}`}</GiveText>
    <GiveText color="secondary" fontSize={14}>
      {getOwnershipPercentageLabel(
        businessType,
        ownership ?? "",
        "",
        " Ownership",
      )}
    </GiveText>
  </Stack>
);
 
interface DetailItemProps {
  label: string;
  value?: string | ReactNode;
  fullWidth?: boolean;
}
 
const DetailsItem = ({ label, value, fullWidth }: DetailItemProps) => (
  <Grid item xs={12} sm={fullWidth ? 12 : 6} sx={{ pb: 1 }}>
    <GiveText
      fontSize={14}
      color="secondary"
      sx={{ display: "block", mb: 0.5 }}
    >
      {label}
    </GiveText>
    {typeof value === "string" ? (
      <GiveText
        sx={{
          wordBreak: "break-word",
          overflowWrap: "break-word",
          whiteSpace: "normal",
        }}
        fontWeight={400}
        fontSize={14}
      >
        {value || "-"}
      </GiveText>
    ) : (
      value
    )}
  </Grid>
);
 
const OwnerBody = ({
  owner,
  businessType,
  onEdit,
  onDelete,
  idFile,
  merchantId,
}: {
  owner: NewOnboardingTBusinessOwner;
  businessType: string;
  onEdit: () => void;
  onDelete: () => void;
  idFile?: TMerchantDocument | IFileWithMeta;
  merchantId?: number;
}) => {
  const { isMerchantOnboardingModalEnabled } = useGetFeatureFlagValues();
  const { shouldUseSSN } = renderBODeps(
    owner,
    isMerchantOnboardingModalEnabled,
  );
 
  const isSSN = owner?.taxIDNumberLast4;
  const docType = shouldUseSSN
    ? {
        label: isSSN ? "SSN" : "EIN",
        value: formatSSN(
          (isSSN ? owner?.taxIDNumberLast4 : owner?.taxIDNumberLast4) || "",
        ),
      }
    : {
        label:
          owner.docIDNumberType === "passport_id" ? "Passport" : "National ID",
        value: ("•••• " + owner.docIDNumberLast4) as string,
      };
 
  const ownerPhone = !isEmptyPhone(owner?.phoneNumber)
    ? getServicePhoneNumber(owner?.phoneNumber, { format: true })
    : "-";
 
  const details: DetailItemProps[] = [
    { label: "Full Name", value: `${owner.firstName} ${owner.lastName}` },
    { label: "Email", value: owner.email },
    {
      label: "Ownership Percentage",
      value:
        getOwnershipPercentageLabel(
          businessType,
          owner.ownershipPercentage ?? "",
        ) || "-",
    },
    docType,
    {
      label: "Date of Birth",
      value: owner?.dateOfBirth ? formatInUTCMoment(owner.dateOfBirth) : "-",
    },
    { label: "Business Owner Phone", value: ownerPhone },
    {
      label: "Country of Citizenship",
      value: owner.citizenship
        ? getCountryNameFromCode(owner.citizenship)
        : "United States",
    },
    {
      label: "Country of Residence",
      value: owner.countryOfResidence
        ? getCountryNameFromCode(owner.countryOfResidence)
        : "United States",
    },
  ];
 
  return (
    <Box>
      <Grid container spacing={2} sx={{ mt: 1, mb: 2 }}>
        {details.map((item) => (
          <DetailsItem key={item.label} label={item.label} value={item.value} />
        ))}
      </Grid>
      <Stack
        direction={{ xs: "column", sm: "row" }}
        spacing={2}
        sx={{ mb: idFile || owner?.idImageURL ? 2 : 0 }}
      >
        <CustomButton
          label="Edit"
          onClick={onEdit}
          icon={<PencilSimpleIcon size={16} />}
        />
        <CustomButton
          label="Delete"
          onClick={onDelete}
          icon={<TrashIcon size={16} />}
        />
      </Stack>
      {(idFile || owner?.idImageURL) && (
        <>
          <Divider sx={{ my: 2 }} />
          <GiveText color="secondary" fontSize={14} sx={{ mb: 1 }}>
            Identity Verification
          </GiveText>
          <BOIDDisplay
            merchantId={merchantId}
            idFile={idFile}
            owner={
              {
                ...owner,
                idImageUrl: owner.idImageURL,
              } as any
            }
          />
        </>
      )}
    </Box>
  );
};
 
const CustomButton = ({
  label,
  onClick,
  icon,
}: {
  label: string;
  onClick: () => void;
  icon: ReactNode;
}) => (
  <GiveButton
    sx={{ width: "100%" }}
    onClick={onClick}
    label={label}
    endIcon={icon}
    variant="filled"
    color="light"
    size="medium"
  />
);
 
export default BusinessOwnerItem;