export const projects = [
    { id: "1", name: "Bliss Homes Phase 1", city: "Mumbai", type: "Residential" },
    { id: "2", name: "Bliss Homes Phase 2", city: "Mumbai", type: "Residential" },
    { id: "3", name: "Satyaja Prelude Tower A", city: "Pune", type: "Residential" },
    { id: "4", name: "Satyaja Prelude Tower B", city: "Pune", type: "Residential" },
    { id: "5", name: "Bliss Commercial Plaza", city: "Mumbai", type: "Commercial" },
    { id: "6", name: "Satyaja Retail Spaces", city: "Pune", type: "Commercial" },
  ]
  
export const initialProjectCharges = [
    {
      id: "1",
      projectSelection: "all",
      specificProject: "",
      projectName: "All Projects",
      chargeName: "Water & Electricity Charges",
      chargeType: "fixed",
      chargeValue: 50000,
      status: "active",
    },
    {
      id: "2",
      projectSelection: "specific",
      specificProject: "1",
      projectName: "Bliss Homes Phase 1",
      chargeName: "Stamp Duty",
      chargeType: "percentage",
      chargeValue: 5,
      status: "active",
    },
    {
      id: "3",
      projectSelection: "all",
      specificProject: "",
      projectName: "All Projects",
      chargeName: "Registration Charges",
      chargeType: "percentage",
      chargeValue: 1,
      status: "active",
    },
    {
      id: "4",
      projectSelection: "specific",
      specificProject: "3",
      projectName: "Satyaja Prelude Tower A",
      chargeName: "GST",
      chargeType: "percentage",
      chargeValue: 18,
      status: "active",
    },
    {
      id: "5",
      projectSelection: "all",
      specificProject: "",
      projectName: "All Projects",
      chargeName: "Legal Fees",
      chargeType: "fixed",
      chargeValue: 25000,
      status: "active",
    },
    {
      id: "6",
      projectSelection: "specific",
      specificProject: "5",
      projectName: "Bliss Commercial Plaza",
      chargeName: "Maintenance Deposit",
      chargeType: "sq_ft",
      chargeValue: 50,
      status: "active",
    },
  ]

export const PROJECT_CHARGE_ACTION_TYPE = {
    EDIT: "edit",
    DUPLICATE: "duplicate",
    DELETE: "delete",
  } as const;

export const projectsOptions = [
    { value: "p1", label: "Project A" },
    { value: "p2", label: "Project B" },
  ];

export const projectSelectionOptions = [
    { value: "all", label: "All Project" },
    { value: "specific", label: "Specific Project" },
  ];