export const chatFileUploadSize = 10;

export const imageExtensions = [
  "png",
  "webp",
  "jpg",
  "jpeg",
  "gif",
  "avif",
  "tiff",
  "svg",
];
export const videoExtensions = ["mp4", "webm", "ogg"];
export const fileExtensions = ["txt", "pdf", "xlsx", "docx", "pptx", "sheet"];
export const iconMapping = {
  pdf: "assets/chat/pdf-icon.png",
  xlsx: "assets/chat/xlsx-icon.png",
  docx: "assets/chat/docx-icon.png",
  pptx: "assets/chat/pptx-icon.png",
  txt: "assets/chat/txtFile.png",
  default: "assets/chat/corrupted-image-icon.png",
};

export const ratingOptions = [
  {
    title: "Spam or Unsolicited Messages",
    description: "Sending irrelevant messages that disrupt communication.",
  },
  {
    title: "Harassment or Abusive Language",
    description:
      "Using offensive, inappropriate, or abusive language that violates platform policies.",
  },
  {
    title: "Fraudulent Activity",
    description:
      "Attempting to scam or mislead by providing false information or deceptive offers.",
  },
  {
    title: "Sharing Confidential Information",
    description:
      "Sharing proprietary or sensitive information without permission, jeopardizing business or privacy.",
  },
  {
    title: "Illegal Activities",
    description:
      "Promoting illegal activities such as selling prohibited items or money laundering.",
  },
  {
    title: "Violation of Platform Policies/Ethics",
    description:
      "Breaking platform-specific rules, like bypassing transaction processes or sharing contact info outside the platform.",
  },
  {
    title: "Phishing or Malicious Links",
    description:
      "Sending phishing messages or links to malicious websites to steal sensitive information.",
  },
  {
    title: "Inappropriate Content",
    description:
      "Sharing offensive or irrelevant content, including images or files that breach platform standards.",
  },
  {
    title: "Other",
    description: "",
  },
];
