All files / src/componentsV2/AccountProfile/AccountDetails utils.tsx

66.66% Statements 4/6
33.33% Branches 1/3
100% Functions 1/1
66.66% Lines 4/6

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                              1x         1x       7x       7x                    
import { CheckCircleIcon, SpinnerIcon } from "@phosphor-icons/react";
import { CustomPalette } from "@theme/v2/palette.interface";
 
interface BEStatusObject {
  [key: string]: BEStatus;
}
 
export interface EmailCardProps {
  email: string;
  status: BEStatus;
  disabled?: boolean;
}
 
export type BEStatus = "pending" | "verified";
 
export const BEStatus: BEStatusObject = {
  pending: "pending",
  verified: "verified",
};
 
export const getStatus = (
  status: BEStatus,
  palette: CustomPalette,
): { text: BEStatus; icon?: React.ReactNode } => {
  switch (status) {
    case "pending":
      return { text: status, icon: <SpinnerIcon /> };
    case "verified":
      return {
        text: status,
        icon: (
          <CheckCircleIcon fill={palette.primitive?.success[50]} weight="fill" />
        ),
      };
    default:
      return { text: status, icon: <SpinnerIcon /> };
  }
};