All files / src/components/ProfilePage/BusinessProfileSetup BusinessAddressStep.tsx

88.46% Statements 23/26
80% Branches 16/20
100% Functions 4/4
88.46% Lines 23/26

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                                                                                                  19x                   24x 24x   24x           24x           24x               24x     24x   24x 24x   24x   24x     24x       24x                 24x   24x   24x             24x 1x         24x                   26x                                                                                                                 24x                                                                                 19x                                          
import { ProvinceInput, ZipCodeInput } from "@common/AddressInputs";
import { RHFInput } from "@common/Input";
import { RHFSelect } from "@common/Select";
import useCountryCodes from "@hooks/common/useCountryCodes";
import { Box, Grid, Stack } from "@mui/material";
import * as Yup from "yup";
import { VALIDATION_MESSAGES } from "@validation/messages";
import {
  ProfileSetupFormActions,
  ProfileSetupFormContainer,
  ProfileSetupFormTitle,
} from "../form.components";
import { palette } from "@palette";
import { ArrowDownChevron } from "@assets/icons";
import { FormProvider, SubmitHandler, useForm } from "react-hook-form";
import { RHFStreetAddress } from "@common/RHFStreetAddress";
import { gridItemsRenderer } from "@utils/rendering/nodesRenderers";
import { TBusinessStepsCommons } from "@components/ProfilePage/BusinessProfileSetupNew/types";
import { yupResolver } from "@hookform/resolvers/yup";
import usePercentageUpdate from "./hooks/usePercentageUpdate";
import { DynamicReturnType } from "./helpers/refineData";
import { useAccessControl } from "features/Permissions/AccessControl";
import RESOURCE_BASE, {
  CREATE_DENY_MESSAGE,
  EDIT_DENY_MESSAGE,
  OPERATIONS,
} from "@constants/permissions";
import { checkPortals } from "@utils/routing";
import { LINKED_BP_TOOLTIP_MESSAGE } from "@constants/stringConstants";
import { createStreetAddressValidator } from "@validation/address/streetValidator";
import { buildZipSchema } from "@validation/address/zipValidator";
import { createStateValidator } from "@validation/address/stateValidator";
import { createCityValidation } from "@validation/address/cityValidator";
import { createCountryValidator } from "@validation/address/countryValidator";
 
interface IProps extends TBusinessStepsCommons {
  canEdit: boolean;
  data: DynamicReturnType["businessAddress"];
  legalEntityId?: any;
}
 
type IFormInputs = {
  country: string;
  address: string;
  city: string;
  state: string;
  zip: string;
};
 
const BusinessAddressStep = ({
  handleBack,
  submitHandler,
  statusBar,
  updateStatusBar,
  isSubmitting,
  canEdit,
  data,
  legalEntityId,
}: IProps) => {
  const { selectCountriesList } = useCountryCodes();
  const { isEnterprisePortal } = checkPortals();
 
  const isAddLEAllowed = useAccessControl({
    resource: RESOURCE_BASE.LEGAL_ENTITY,
    operation: OPERATIONS.CREATE,
    withPortal: true,
  });
 
  const isUpdateLEAllowed = useAccessControl({
    resource: RESOURCE_BASE.LEGAL_ENTITY,
    operation: OPERATIONS.UPDATE,
    withPortal: true,
  });
 
  const isEditMerchantAllowed = useAccessControl({
    resource: isEnterprisePortal
      ? RESOURCE_BASE.ENTERPRISE
      : RESOURCE_BASE.MERCHANT,
    operation: OPERATIONS.UPDATE,
  });
 
  const hasNoPermissions =
    !isEditMerchantAllowed ||
    (legalEntityId && !isUpdateLEAllowed) ||
    (!legalEntityId && !isAddLEAllowed);
  const disableInput = !canEdit || hasNoPermissions;
 
  const getTooltipMessage = () => {
    Iif ((legalEntityId && !isUpdateLEAllowed) || !isEditMerchantAllowed) {
      return EDIT_DENY_MESSAGE;
    } else Iif (!legalEntityId && !isAddLEAllowed) {
      return CREATE_DENY_MESSAGE;
    } else Iif (!canEdit) {
      return LINKED_BP_TOOLTIP_MESSAGE;
    } else {
      return "";
    }
  };
 
  const methods = useForm<IFormInputs>({
    mode: "onChange",
    resolver: yupResolver(schema),
    defaultValues: data,
  });
 
  const {
    watch,
    formState: { dirtyFields, isDirty },
  } = methods;
 
  const values = watch();
 
  usePercentageUpdate<IFormInputs>(
    values,
    dirtyFields,
    schema,
    updateStatusBar,
  );
 
  const onSubmit: SubmitHandler<IFormInputs> = async (data) => {
    submitHandler("businessAddress", data, {
      makeApiCall: isDirty,
    });
  };
 
  const inputs = [
    {
      node: (
        <RHFSelect
          name="country"
          label="Choose country"
          disabled
          options={selectCountriesList}
          SelectProps={{
            IconComponent: () => (
              <ArrowDownChevron
                width={16}
                height={9}
                color={palette.gray[300]}
              />
            ),
          }}
        />
      ),
    },
    {
      node: (
        <RHFStreetAddress
          name="address"
          label="Street address"
          placeholder="Enter Street Address..."
          fullWidth
          disabled={disableInput}
        />
      ),
    },
    {
      node: (
        <RHFInput
          name="city"
          label="City"
          placeholder="Enter city..."
          fullWidth
          disabled={disableInput}
        />
      ),
      md: 4,
    },
    {
      node: (
        <ProvinceInput
          name="state"
          isUS={values.country === "US"}
          disabled={disableInput}
        />
      ),
      md: 4,
    },
    {
      node: (
        <ZipCodeInput
          name="zip"
          label="ZIP"
          placeholder="Enter Zip Code"
          letterSpacing="4px"
          disabled={disableInput}
        />
      ),
      md: 4,
    },
  ];
 
  return (
    <FormProvider {...methods}>
      <Box
        component="form"
        flexGrow={1}
        id="business-profile-form"
        display="flex"
        onSubmit={methods.handleSubmit(onSubmit)}
      >
        <ProfileSetupFormContainer>
          <Stack
            direction="column"
            gap={4}
            alignItems="flex-start"
            height="min-content"
          >
            <ProfileSetupFormTitle title="Add business address" />
            <Grid container spacing="12px">
              {gridItemsRenderer(inputs, {
                show: disableInput,
                message: getTooltipMessage(),
              })}
            </Grid>
          </Stack>
          <ProfileSetupFormActions
            secondaryAction={{
              onClick: handleBack,
            }}
            primaryAction={{
              disabled: isSubmitting,
              children: "Next",
            }}
          />
        </ProfileSetupFormContainer>
      </Box>
    </FormProvider>
  );
};
 
export default BusinessAddressStep;
 
const schema = Yup.object().shape({
  country: createCountryValidator({
    required: true,
    message: VALIDATION_MESSAGES.REQUIRED,
  }),
  address: createStreetAddressValidator(),
  city: createCityValidation({
    required: true,
    customRequiredMessage: VALIDATION_MESSAGES.REQUIRED,
  }),
 
  state: createStateValidator({
    required: true,
    requiredMessage: VALIDATION_MESSAGES.REQUIRED,
  }),
  zip: buildZipSchema({
    usFormatOnly: true,
    allowNull: false,
    message: "Invalid ZIP format",
  }),
});