All files / src/features/Merchants/GiveCreateMerchantPanel/components BasicInfoForm.tsx

63.73% Statements 58/91
70.65% Branches 65/92
62.96% Functions 17/27
65.88% Lines 56/85

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 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644                                                                                            3x 261x   261x 261x         261x 261x 261x     261x   261x           261x   261x 18x                 261x 18x 18x     261x   18x 18x         261x 27x     27x 27x       261x 16x       261x 261x         261x           261x 261x 98x   163x     261x                                                                                                                                                                                                                                                                                                                                                       1x     1x                                                       4x 4x   4x 4x       4x                                                                                                                                                                                                                                                                                                           261x                       4731x   3620x                   261x                                         3x           390x       390x                                                             3x           80x     80x 8x 8x 8x 8x     80x                                                     80x       80x                                              
import { EnterprisesSelect } from "@common/BusinessProfileInputs";
import { Box, Grid } from "@mui/material";
import { checkPortals } from "@utils/routing";
import { useCallback, useEffect, useRef } from "react";
import { useFormContext } from "react-hook-form";
 
import {
  TClassificationsAPIResponse,
  useBusinessClassification,
} from "@components/Signup/Forms/hooks/useBusinessClassification";
import {
  BUSINESS_PURPOSE_FIELD,
  DESCRIPTOR_PREFIX,
  MERCHANT_PERMALINK_FIELD,
  SLUG_MAX_CHARACTER_LENGTH,
} from "@constants/constants";
import { generateBillingDescriptor } from "@utils/helpers";
import { removeSpecialChars } from "@utils/slug";
import { debounce } from "lodash";
import { HFGiveInput } from "shared/HFInputs/HFGiveInput/HFGiveInput";
import GiveText from "shared/Text/GiveText";
import NameInput from "features/Merchants/MerchantSidePanel/components/NameInput/NameInput";
import MCCInput from "features/Merchants/MerchantSidePanel/components/UnderwriterRiskAnalystAssignCard/MCCInput";
import HFGiveSelect from "shared/HFInputs/HFGiveSelect/HFGiveSelect";
import { HFGiveTelephone } from "shared/HFInputs/HFGiveTelephone/HFGiveTelephone";
import WebsiteInput from "features/Merchants/MerchantSidePanel/components/WebsiteInput/WebsiteInput";
import HFGiveCustomAmount from "shared/HFInputs/HFGiveCustomAmount/HFGiveCustomAmount";
import { InverseHFCheckbox } from "shared/HFInputs/HFGiveCheckbox/HFGiveCheckbox";
import AvatarUpload from "./AvatarUpload";
import { styled } from "theme/v2/Provider";
import GiveMotionWrapper from "shared/Motion/GiveMotionWrapper";
import { useCustomThemeV2 } from "theme/hooks/useCustomThemeV2";
import {
  ENTER_COUNTRIES_OUTSIDE_USA,
  SERVICE_OUTSIDE_USA_CANADA_STRING,
} from "@constants/stringConstants";
import { useGetFeatureFlagValues } from "FeatureFlags/useGetFeatureFlagValues";
import ProcessorInput from "@features/Merchants/MerchantSidePanel/components/UnderwriterRiskAnalystAssignCard/ProcessorInput";
import { useAvatarUpload } from "../hooks/useAvatarUpload";
import useCheckEnvironment from "@hooks/common/useCheckEnvironment";
 
type Props = {
  modifyMerchant: boolean;
  isProvider?: boolean;
};
 
const BasicInfoForm = ({ modifyMerchant, isProvider }: Props) => {
  const { isAcquirerPortal } = checkPortals();
  const { isMerchantProcessorEnabled, isMerchantOnboardingModalEnabled } =
    useGetFeatureFlagValues();
  const { domain } = useCheckEnvironment();
  const {
    setValue,
    watch,
    formState: { errors },
  } = useFormContext();
  const values = watch();
  const { merchantInfo } = values;
 
  const showProcessor =
    isMerchantProcessorEnabled && isAcquirerPortal && !isProvider;
 
  const { handleChangeImage, handleDeleteImage, previewUrl } = useAvatarUpload({
    setValue,
    fieldName: "merchantInfo.thumbnail",
  });
 
  const phoneHelper =
    (errors?.merchantInfo as any)?.servicePhoneNumber?.message || "";
 
  const handleChangeBillingDescriptor = useCallback((descriptor: string) => {
    setValue(
      "merchantInfo.billingDescriptor",
      generateBillingDescriptor(descriptor),
      {
        shouldDirty: true,
      },
    );
  }, []);
 
  const handleChangeSlug = useCallback((slug: string) => {
    const updatedSlug = removeSpecialChars(slug, SLUG_MAX_CHARACTER_LENGTH);
    setValue("merchantInfo.merchantSlug", updatedSlug, { shouldDirty: true });
  }, []);
 
  const handleUpdate = useCallback(
    debounce((merchantName: string) => {
      handleChangeBillingDescriptor(merchantName);
      handleChangeSlug(merchantName);
    }, 500),
    [],
  );
 
  useEffect(() => {
    handleUpdate(values.merchantInfo.merchantName);
 
    // Clean up function
    return () => {
      handleUpdate.cancel();
    };
  }, [values.merchantInfo.merchantName]);
 
  const classificationsParser = (res: TClassificationsAPIResponse) =>
    res?.data?.map(({ name, displayName }) => ({
      value: name,
      label: `${displayName}`,
    }));
  const { isMobileView } = useCustomThemeV2();
  const { data: classificationOptions } = useBusinessClassification(
    isProvider ? "manage_submerchants" : "accept_payments",
    classificationsParser,
  );
 
  const withNoPaddingLeft = !isMobileView && {
    "&.MuiGrid-item ": {
      paddingLeft: "0px !important",
    },
  };
 
  const domainPrefix = (() => {
    if (!isProvider && merchantInfo.enterpriseID) {
      return `${merchantInfo.enterpriseSlug}`;
    }
    return "";
  })();
 
  const nodeList = [
    {
      node: (
        <NameInput
          label={isProvider ? "Provider Name" : "Merchant name"}
          name="merchantInfo.merchantName"
          isMerchantName
        />
      ),
      sm: 12,
    },
 
    {
      node: (
        <GiveText color="secondary" variant="bodyS">
          Billing Descriptor
        </GiveText>
      ),
      xs: 6,
      sx: { alignSelf: "center" },
    },
    {
      node: (
        <Box sx={{ wordBreak: "break-all" }}>
          <GiveText
            variant="bodyS"
            color="secondary"
            component="span"
            pl={0}
            ml={0}
          >
            {DESCRIPTOR_PREFIX}*
          </GiveText>
          <GiveText variant="bodyS" component="span" pl={0} ml={0}>
            <EditableText
              isUpperCase
              text={values.merchantInfo.billingDescriptor}
              onChange={(e) => handleChangeBillingDescriptor(e.target.value)}
              onSubmit={() => {
                if (
                  !values.merchantInfo.billingDescriptor ||
                  values.merchantInfo.billingDescriptor?.length < 3
                ) {
                  handleChangeBillingDescriptor(
                    values.merchantInfo.merchantName,
                  );
                  return;
                }
              }}
            />
          </GiveText>
        </Box>
      ),
      xs: 6,
      sx: withNoPaddingLeft,
    },
    {
      node: (
        <GiveText color="secondary" variant="bodyS">
          {MERCHANT_PERMALINK_FIELD}
        </GiveText>
      ),
      xs: 6,
      sx: { alignSelf: "center" },
    },
    {
      node: (
        <Box sx={{ wordBreak: "break-all" }}>
          <GiveText variant="bodyS" color="secondary" component="span">
            https://
            <GiveText variant="bodyS" color="primary" component="span">
              {isProvider ? (
                <>
                  <EditableTextPrefix
                    text={merchantInfo.merchantSlug}
                    onChange={(value) => handleChangeSlug(value)}
                    onSubmit={() => {
                      if (!merchantInfo.merchantSlug) {
                        handleChangeSlug(merchantInfo.merchantName);
                      }
                    }}
                  />
                </>
              ) : (
                domainPrefix
              )}
            </GiveText>
            {domainPrefix || (merchantInfo.merchantSlug && isProvider)
              ? "."
              : ""}
            {domain}givepayments.com{isProvider ? "" : "/"}
          </GiveText>
          {merchantInfo.merchantName && !isProvider && (
            <GiveText variant="bodyS" component="span">
              <EditableText
                text={merchantInfo.merchantSlug}
                onChange={(e) => handleChangeSlug(e.target.value)}
                onSubmit={() => {
                  if (!merchantInfo.merchantSlug) {
                    handleChangeSlug(merchantInfo.merchantName);
                  }
                }}
              />
            </GiveText>
          )}
        </Box>
      ),
      xs: 6,
      sx: withNoPaddingLeft,
    },
    {
      node: (
        <EnterprisesSelect
          name="merchantInfo.enterpriseID"
          slug="merchantInfo.enterpriseSlug"
          phone="merchantInfo.enterprisePhone"
          enterpriseName="merchantInfo.enterprise"
          imageUrl="merchantInfo.enterpriseImageUrl"
          isConfirmModal={Boolean(values.linkedBankAccountID)}
          isRebranded
        />
      ),
      sm: 12,
      hidden: !isAcquirerPortal || isProvider,
    },
    ...(modifyMerchant
      ? [
          {
            node: (
              <HFGiveSelect
                label="Classification"
                name="merchantInfo.classification"
                options={classificationOptions}
                placeholder="Select an option"
                useContextualMenu
                contextualMenuProps={
                  !isMobileView
                    ? {
                        color: "tertiary",
                        texture: "blurred",
                        menuWidth: 518,
                      }
                    : {}
                }
              />
            ),
            sm: 12,
          },
          {
            node: (
              <HFGiveInput
                name="merchantInfo.classificationDescription"
                label="Describe your business"
                multiline
                rows={6}
                fullWidth
              />
            ),
            sm: 12,
            hidden:
              !isProvider || values.merchantInfo.classification !== "other",
          },
        ]
      : []),
    ...(showProcessor
      ? [
          {
            node: (
              <ProcessorInput
                name="merchantInfo.processor"
                processorValue={values.merchantInfo.processor}
                onChange={(val) => {
                  setValue("merchantInfo.processor", val, {
                    shouldValidate: true,
                  });
                  setValue("merchantInfo.category", undefined);
                }}
                withoutConfirm
                controlled
              />
            ),
            sm: 12,
          },
        ]
      : []),
    {
      node: (
        <MCCInput
          placeholder="Select an option"
          name="merchantInfo.category"
          enterpriseID={values.merchantInfo.enterpriseID}
          categoryCodeID={values.merchantInfo.category}
          processor={values.merchantInfo.processor}
          disabledByProcessor={
            showProcessor &&
            (!values.merchantInfo.processor ||
              !values.merchantInfo.enterpriseID)
          }
          withAPI={false}
          isProvider={isProvider}
          disableAlert
          isAcquirer={isAcquirerPortal}
          setFormValue={(val, label) => {
            setValue("merchantInfo.category", val, { shouldDirty: true });
            const labelValues = label?.split("-");
            //this is to have the name and code of the category, not just the id, bc we need to show it in agreement
            Eif (labelValues) {
              setValue(
                "merchantInfo.categoryCodeName",
                labelValues?.[1]?.trim(),
              );
              setValue("merchantInfo.categoryCodeId", labelValues?.[0]?.trim());
            }
          }}
          setLocalRiskValue={(val) =>
            setValue("merchantInfo.category", val, { shouldDirty: true })
          }
          contextualMenuProps={{
            anchorOrigin: {
              vertical: "bottom",
              horizontal: "center",
            },
            transformOrigin: {
              vertical: 0,
              horizontal: "center",
            },
          }}
        />
      ),
      sm: 12,
      hidden: !modifyMerchant,
    },
    {
      node: (
        <HFGiveTelephone
          label={`${isProvider ? "Provider" : "Merchant"} Phone Number`}
          name="merchantInfo.servicePhoneNumber"
          helperText={
            phoneHelper && !isProvider
              ? "If empty, Provider’s number will be used instead "
              : ""
          }
          fullWidth
        />
      ),
      sm: 12,
      hidden: !modifyMerchant,
    },
    {
      node: (
        <WebsiteInput
          name="merchantInfo.websiteURL"
          label={isProvider ? "Business Website" : "Website URL"}
          placeholder=" "
        />
      ),
 
      sm: 12,
      hidden: !modifyMerchant,
    },
 
    {
      node: (
        <WebsiteInput
          name="merchantInfo.socialMediaURL"
          label="Business Social Media"
          placeholder=""
        />
      ),
 
      sm: 12,
      hidden:
        !modifyMerchant || isProvider || !isMerchantOnboardingModalEnabled,
    },
    {
      node: (
        <HFGiveCustomAmount
          name="merchantInfo.estimatedAnnualRevenue"
          label="Estimated Annual Revenue"
          bounded={false}
          currency="usd"
          min={0}
        />
      ),
      sm: 12,
      hidden: !modifyMerchant,
    },
    {
      node: (
        <HFGiveCustomAmount
          name="merchantInfo.averageTicketAmount"
          label="Average Ticket Amount"
          bounded={false}
          currency="usd"
          min={0}
        />
      ),
 
      sm: 12,
      hidden: !modifyMerchant,
    },
    {
      node: (
        <HFGiveCustomAmount
          name="merchantInfo.highTicketAmount"
          label="High Ticket Amount"
          bounded={false}
          currency="usd"
          min={0}
        />
      ),
 
      sm: 12,
      hidden: !modifyMerchant,
    },
    {
      node: (
        <HFGiveInput
          name="merchantInfo.description"
          label={BUSINESS_PURPOSE_FIELD}
          placeholder="  "
          multiline
          rows={6}
          fullWidth
          inputProps={{
            maxLength: "600",
          }}
          helperText={`${values.merchantInfo.description?.length}/600`}
        />
      ),
      sm: 12,
      hidden: !modifyMerchant,
    },
    {
      sm: 12,
      node: (
        <InverseHFCheckbox
          name="merchantInfo.serviceCountriesOutUSCanada"
          label={SERVICE_OUTSIDE_USA_CANADA_STRING}
        />
      ),
      hidden: !modifyMerchant,
    },
    {
      node: (
        <HFGiveInput
          name="merchantInfo.countriesServicedOutside"
          label="List countries, outside USA, where my business  has offices"
          placeholder={ENTER_COUNTRIES_OUTSIDE_USA}
          multiline
          minRows={1}
          maxRows={6}
          fullWidth
        />
      ),
      sm: 12,
      hidden:
        !modifyMerchant || !values.merchantInfo.serviceCountriesOutUSCanada,
    },
  ];
 
  return (
    <Container>
      <GiveMotionWrapper delay={100}>
        <AvatarUpload
          previewUrl={previewUrl}
          handleChange={handleChangeImage}
          handleDelete={handleDeleteImage}
        />
      </GiveMotionWrapper>
      <GiveMotionWrapper delay={100}>
        <Grid container spacing={2}>
          {nodeList
            .filter((node) => !node.hidden)
            .map(({ node, sm, sx = {}, xs }, index) => (
              <Grid key={index} item xs={xs || 12} sm={sm || 6}>
                {node}
              </Grid>
            ))}
        </Grid>
      </GiveMotionWrapper>
    </Container>
  );
};
 
const Container = styled(Box)(({ theme }) => ({
  margin: "0 20px",
  backgroundColor: theme.palette.surface?.primary,
  padding: "20px",
  borderRadius: "20px",
  display: "flex",
  flexDirection: "column",
  gap: "24px",
 
  "& .dzu-dropzone": {
    borderRadius: "8px !important",
  },
}));
 
type EditableTextProps = {
  text: string | React.ReactNode;
  isUpperCase?: boolean;
  onChange?: React.ChangeEventHandler<HTMLInputElement | HTMLTextAreaElement>;
  onSubmit?: () => void;
};
 
const EditableText = ({
  text,
  isUpperCase = false,
  onChange,
  onSubmit,
}: EditableTextProps) => {
  const onBlur = () => {
    if (onSubmit) onSubmit();
  };
 
  return (
    <Box
      component="span"
      sx={{
        display: "inline-block",
        "& input": {
          border: "none",
          background: "transparent",
          padding: 0,
          margin: 0,
          fontFamily: "inherit",
          fontSize: "inherit",
          color: "inherit",
          textTransform: isUpperCase ? "uppercase" : "none",
          outline: "none",
          width: "100%",
          "&:focus": {
            outline: "none",
          },
        },
      }}
    >
      <input value={text as string} onChange={onChange} onBlur={onBlur} />
    </Box>
  );
};
 
type EditableTextPrefixProps = Omit<EditableTextProps, "onChange"> & {
  onChange?: (value: string) => void;
};
 
const EditableTextPrefix = ({
  text,
  isUpperCase = false,
  onChange,
  onSubmit,
}: EditableTextPrefixProps) => {
  const divRef = useRef<HTMLDivElement>(null);
 
  // Sync external updates only when NOT focused
  useEffect(() => {
    const el = divRef.current;
    Iif (!el) return;
    Iif (document.activeElement === el) return;
    el.innerText = (text as string) ?? "";
  }, [text]);
 
  const handleInput = (e: React.FormEvent<HTMLDivElement>) => {
    const el = divRef.current;
    if (!el) return;
 
    const selection = window.getSelection();
    const range = selection?.rangeCount ? selection.getRangeAt(0) : null;
    const caretOffset = range ? range.startOffset : el.innerText.length;
 
    const rawValue = el.innerText;
    const sanitized = removeSpecialChars(rawValue);
 
    // Only write back if sanitization changed something
    if (rawValue !== sanitized) {
      el.innerText = sanitized;
 
      // Restore caret position
      const newPos = Math.min(caretOffset, sanitized.length);
      const newRange = document.createRange();
      newRange.setStart(el.firstChild || el, newPos);
      newRange.collapse(true);
      selection?.removeAllRanges();
      selection?.addRange(newRange);
    }
 
    onChange?.(sanitized);
  };
 
  const handleBlur = () => {
    onSubmit?.();
  };
 
  return (
    <Box
      ref={divRef}
      contentEditable
      suppressContentEditableWarning
      spellCheck={false}
      autoCorrect="off"
      autoCapitalize="off"
      onInput={handleInput}
      onBlur={handleBlur}
      sx={{
        display: "inline",
        whiteSpace: "break-spaces",
        wordBreak: "break-all",
        textTransform: isUpperCase ? "uppercase" : "none",
        background: "transparent",
        outline: "none",
      }}
    />
  );
};
 
export default BasicInfoForm;