'use client';

import { useEffect, useMemo, useState } from 'react';
import Link from 'next/link';
import { useParams, useRouter } from 'next/navigation';
import { Button, buttonVariants } from '@/components/ui/shadcn/button';
import { cn } from '@/lib/utils';
import Modal from '@/components/ui/Modal';
import SearchSelect from '@/components/ui/SearchSelect';
import toast from 'react-hot-toast';
import {
  useCreateCategoryMutation,
  useCreateMaterialLogMutation,
  useCreateMaterialMutation,
  useCreateMaterialUomMutation,
  useCreatePriceLogMutation,
  useCreateUnitMutation,
  useCreateWarehouseMutation,
  useDeleteMaterialUomMutation,
  useGetMaterialAssemblyQuery,
  useGetCategoriesQuery,
  useGetMaterialByIdQuery,
  useGetMaterialLogsQuery,
  useGetMaterialsQuery,
  useGetPriceLogsQuery,
  useGetStockValuationQuery,
  useGetUnitsQuery,
  useGetWarehousesQuery,
  useUpsertMaterialAssemblyMutation,
  useUpdateMaterialMutation,
  type Material,
} from '@/store/hooks';

interface ChangeLogValue {
  from: string | number | null;
  to: string | number | null;
}

interface MaterialLogEntry {
  id: string;
  action: 'created' | 'updated' | string;
  timestamp: string;
  changedBy?: string | null;
  changes: Record<string, ChangeLogValue>;
}

interface PriceLogEntry {
  id: string;
  source: 'manual' | string;
  previousPrice: number;
  currentPrice: number;
  changedBy?: string | null;
  timestamp: string;
  notes?: string | null;
}

interface BasicOption {
  id: string;
  name: string;
}

interface DraftAssemblyComponent {
  componentMaterialId: string;
  quantity: string;
}

interface UploadedAsset {
  url: string;
  fileName: string;
  mimeType: string;
  assetType?: string;
}

interface MaterialStoredFile {
  url: string;
  fileName: string;
  mimeType: string;
}

type MaterialEditorTab = 'details' | 'files' | 'uom' | 'history';
type MaterialUploadType = 'feature-image' | 'photo-gallery' | 'document';
type MaterialDeleteTarget =
  | { kind: 'feature-image' }
  | { kind: 'gallery'; index: number; fileName: string }
  | { kind: 'document'; index: number; fileName: string }
  | { kind: 'pending-feature-image'; fileName: string }
  | { kind: 'pending-gallery'; index: number; fileName: string }
  | { kind: 'pending-document'; index: number; fileName: string };

function normalizeStoredFiles(value: unknown): MaterialStoredFile[] {
  if (!Array.isArray(value)) return [];
  return value
    .map((entry) => {
      if (!entry || typeof entry !== 'object') return null;
      const row = entry as Record<string, unknown>;
      const url = typeof row.url === 'string' ? row.url.trim() : '';
      const fileName = typeof row.fileName === 'string' ? row.fileName.trim() : '';
      const mimeType = typeof row.mimeType === 'string' ? row.mimeType.trim() : '';
      if (!url || !fileName || !mimeType) return null;
      return { url, fileName, mimeType };
    })
    .filter(Boolean) as MaterialStoredFile[];
}

const STOCK_TYPE_OPTIONS = [
  'Raw Material',
  'Work In Progress',
  'Finished Goods',
  'Semi-finished',
  'Consumable',
  'Stock Assembly',
  'Non-Stock',
  'Other',
].map((label) => ({ id: label, label }));

function formatNumber(value?: number | null) {
  if (value === undefined || value === null) return '-';
  return new Intl.NumberFormat('en-US', { maximumFractionDigits: 3 }).format(value);
}

function inputClassName() {
  return 'w-full rounded-md border border-border bg-background px-3 py-2.5 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring';
}

function extractErrorMessage(error: unknown, fallback: string) {
  if (
    typeof error === 'object' &&
    error !== null &&
    'data' in error &&
    typeof (error as { data?: unknown }).data === 'object' &&
    (error as { data?: { error?: unknown } }).data?.error &&
    typeof (error as { data?: { error?: unknown } }).data?.error === 'string'
  ) {
    return (error as { data: { error: string } }).data.error;
  }
  return fallback;
}

function SectionShell({
  title,
  description,
  children,
}: {
  title: string;
  description?: string;
  children: React.ReactNode;
}) {
  return (
    <section className="rounded-lg border border-border bg-card shadow-sm">
      <div className="border-b border-border px-5 py-4">
        <h2 className="text-sm font-semibold uppercase tracking-wide text-foreground">{title}</h2>
        {description ? <p className="mt-1 text-sm text-muted-foreground">{description}</p> : null}
      </div>
      <div className="p-5">{children}</div>
    </section>
  );
}

function FieldShell({
  label,
  hint,
  children,
  wide,
}: {
  label: string;
  hint?: string;
  children: React.ReactNode;
  wide?: boolean;
}) {
  return (
    <div className={wide ? 'md:col-span-2' : ''}>
      <label className="block text-sm font-medium text-foreground">{label}</label>
      {hint ? <p className="mt-1 text-xs text-muted-foreground">{hint}</p> : null}
      <div className="mt-2">{children}</div>
    </div>
  );
}

function MaterialEditor({
  material,
  units,
  categories,
  warehouses,
  materialLogs,
  priceLogs,
}: {
  material?: Material;
  units: BasicOption[];
  categories: BasicOption[];
  warehouses: BasicOption[];
  materialLogs: MaterialLogEntry[];
  priceLogs: PriceLogEntry[];
}) {
  const router = useRouter();
  const isCreateMode = !material;

  const [updateMaterial, { isLoading: isUpdating }] = useUpdateMaterialMutation();
  const [createMaterial, { isLoading: isCreating }] = useCreateMaterialMutation();
  const [createMaterialUom] = useCreateMaterialUomMutation();
  const [deleteMaterialUom] = useDeleteMaterialUomMutation();
  const [createUnit] = useCreateUnitMutation();
  const [createCategory] = useCreateCategoryMutation();
  const [createWarehouse] = useCreateWarehouseMutation();
  const [createMaterialLog] = useCreateMaterialLogMutation();
  const [createPriceLog] = useCreatePriceLogMutation();
  const [upsertMaterialAssembly] = useUpsertMaterialAssemblyMutation();

  const [unitModal, setUnitModal] = useState(false);
  const [categoryModal, setCategoryModal] = useState(false);
  const [warehouseModal, setWarehouseModal] = useState(false);
  const [newUnitName, setNewUnitName] = useState('');
  const [newCategoryName, setNewCategoryName] = useState('');
  const [newWarehouseName, setNewWarehouseName] = useState('');
  const [newWarehouseLocation, setNewWarehouseLocation] = useState('');

  const [name, setName] = useState(material?.name ?? '');
  const [description, setDescription] = useState(material?.description ?? '');
  const [unit, setUnit] = useState(material?.unit ?? '');
  const [category, setCategory] = useState(material?.category ?? '');
  const [warehouse, setWarehouse] = useState(material?.warehouse ?? '');
  const [stockType, setStockType] = useState(material?.stockType ?? '');
  const [allowNegativeConsumption, setAllowNegativeConsumption] = useState(material?.allowNegativeConsumption ?? false);
  const [externalItemName, setExternalItemName] = useState(material?.externalItemName ?? '');
  const [reorderLevel, setReorderLevel] = useState(material?.reorderLevel?.toString() ?? '');
  const [unitCost, setUnitCost] = useState(material?.unitCost?.toString() ?? '');
  const [currentStock, setCurrentStock] = useState('0');
  const [deriveUnitId, setDeriveUnitId] = useState('');
  const [deriveParentId, setDeriveParentId] = useState('');
  const [deriveFactor, setDeriveFactor] = useState('');
  const [assemblyOutputQuantity, setAssemblyOutputQuantity] = useState(material?.assemblyOutputQuantity?.toString() ?? '1');
  const [assemblyOverheadPercent, setAssemblyOverheadPercent] = useState(material?.assemblyOverheadPercent?.toString() ?? '0');
  const [assemblyComponents, setAssemblyComponents] = useState<DraftAssemblyComponent[]>([]);
  const [uploadType, setUploadType] = useState<MaterialUploadType>('feature-image');
  const [selectedUploadFile, setSelectedUploadFile] = useState<File | null>(null);
  const [pendingFeatureImageFile, setPendingFeatureImageFile] = useState<File | null>(null);
  const [pendingGalleryFiles, setPendingGalleryFiles] = useState<File[]>([]);
  const [pendingDocumentFiles, setPendingDocumentFiles] = useState<File[]>([]);
  const [isUploadingAssets, setIsUploadingAssets] = useState(false);
  const [activeTab, setActiveTab] = useState<MaterialEditorTab>('details');
  const [deleteTarget, setDeleteTarget] = useState<MaterialDeleteTarget | null>(null);
  const [existingImageUrl, setExistingImageUrl] = useState(material?.imageUrl ?? '');
  const [existingGalleryFiles, setExistingGalleryFiles] = useState<MaterialStoredFile[]>(
    normalizeStoredFiles(material?.photoGallery)
  );
  const [existingDocumentFiles, setExistingDocumentFiles] = useState<MaterialStoredFile[]>(
    normalizeStoredFiles(material?.documentFiles)
  );

  useEffect(() => {
    if (!material) return;
    setName(material.name ?? '');
    setDescription(material.description ?? '');
    setUnit(material.unit ?? '');
    setCategory(material.category ?? '');
    setWarehouse(material.warehouse ?? '');
    setStockType(material.stockType ?? '');
    setAllowNegativeConsumption(material.allowNegativeConsumption ?? false);
    setExternalItemName(material.externalItemName ?? '');
    setReorderLevel(material.reorderLevel?.toString() ?? '');
    setUnitCost(material.unitCost?.toString() ?? '');
    setAssemblyOutputQuantity(material.assemblyOutputQuantity?.toString() ?? '1');
    setAssemblyOverheadPercent(material.assemblyOverheadPercent?.toString() ?? '0');
    setExistingImageUrl(material.imageUrl ?? '');
    setExistingGalleryFiles(normalizeStoredFiles(material.photoGallery));
    setExistingDocumentFiles(normalizeStoredFiles(material.documentFiles));
    setPendingFeatureImageFile(null);
    setPendingGalleryFiles([]);
    setPendingDocumentFiles([]);
    setSelectedUploadFile(null);
  }, [material, material?.id, material?.updatedAt, material?.unitCost, material?.currentStock]);

  const materialUoms = material?.materialUoms ?? [];
  const availableDerivedUnits = units.filter((entry) => !materialUoms.some((uom) => uom.unitId === entry.id));
  const latestPriceLog = priceLogs[0];
  const isStockAssembly = stockType === 'Stock Assembly';

  const { data: allMaterials = [] } = useGetMaterialsQuery(undefined, {
    refetchOnMountOrArgChange: 30,
  });
  const { data: stockValuation } = useGetStockValuationQuery(undefined, {
    refetchOnMountOrArgChange: 30,
  });
  const { data: materialAssembly } = useGetMaterialAssemblyQuery(material?.id ?? '', {
    skip: isCreateMode || !isStockAssembly,
    refetchOnMountOrArgChange: 30,
  });

  useEffect(() => {
    if (!materialAssembly || isCreateMode || !isStockAssembly) return;
    setAssemblyOutputQuantity(materialAssembly.outputQuantity?.toString() ?? '1');
    setAssemblyOverheadPercent(materialAssembly.overheadPercent?.toString() ?? '0');
    setAssemblyComponents(
      materialAssembly.components.map((row) => ({
        componentMaterialId: row.componentMaterialId,
        quantity: String(row.quantity),
      }))
    );
  }, [materialAssembly, isCreateMode, isStockAssembly]);

  const assemblyMaterialOptions = useMemo(
    () =>
      allMaterials.filter((entry) => entry.id !== material?.id && entry.isActive).map((entry) => ({
        id: entry.id,
        name: entry.name,
        unit: entry.unit,
        unitCost: Number(entry.unitCost ?? 0),
      })),
    [allMaterials, material?.id]
  );
  const assemblyOutputQuantityValue = Math.max(parseFloat(assemblyOutputQuantity) || 1, 0.0001);
  const assemblyOverheadPercentValue = Math.max(parseFloat(assemblyOverheadPercent) || 0, 0);
  const currencyCode = stockValuation?.summary.currencyCode ?? 'AED';
  const assemblyTotalCost = useMemo(
    () =>
      assemblyComponents.reduce((sum, row) => {
        const selected = assemblyMaterialOptions.find((entry) => entry.id === row.componentMaterialId);
        if (!selected) return sum;
        const qty = parseFloat(row.quantity) || 0;
        return sum + qty * selected.unitCost;
      }, 0),
    [assemblyComponents, assemblyMaterialOptions]
  );
  const assemblyTotalCostWithOverhead = assemblyTotalCost * (1 + assemblyOverheadPercentValue / 100);
  const calculatedAssemblyUnitCost = assemblyTotalCostWithOverhead / assemblyOutputQuantityValue;


  const pageTitle = isCreateMode ? 'New material' : material.name;
  const pageSubtitle = isCreateMode
    ? 'Set the stock base, costing, and warehouse defaults in one compact pass.'
    : 'Update stock settings, packaging conversions, and change history.';
  const submitButtonText = isCreateMode ? 'Create Material' : 'Save Changes';
  const isLoading = isCreateMode ? isCreating : isUpdating;
  const tabOptions: Array<{ id: MaterialEditorTab; label: string; hidden?: boolean }> = [
    { id: 'details', label: 'Details' },
    { id: 'files', label: 'Files' },
    { id: 'uom', label: 'UOM', hidden: isCreateMode },
    { id: 'history', label: 'History', hidden: isCreateMode },
  ];

  const uploadMaterialAsset = async (
    file: File,
    assetType: MaterialUploadType
  ): Promise<UploadedAsset> => {
    const formData = new FormData();
    formData.append('file', file);
    formData.append('materialName', name.trim());
    formData.append('assetType', assetType);
    if (material?.id) {
      formData.append('materialId', material.id);
    }

    const res = await fetch('/api/upload/material-asset', {
      method: 'POST',
      body: formData,
    });
    const json = await res.json().catch(() => ({}));
    if (!res.ok) {
      throw new Error(json?.error || `Failed to upload material ${assetType}`);
    }
    return json.data as UploadedAsset;
  };

  const handleAddPendingUpload = () => {
    if (!selectedUploadFile) {
      toast.error('Choose a file first');
      return;
    }
    if (uploadType !== 'document' && !selectedUploadFile.type.startsWith('image/')) {
      toast.error('Feature image and gallery require image files');
      return;
    }

    if (uploadType === 'feature-image') {
      setPendingFeatureImageFile(selectedUploadFile);
    } else if (uploadType === 'photo-gallery') {
      setPendingGalleryFiles((prev) => [...prev, selectedUploadFile]);
    } else {
      setPendingDocumentFiles((prev) => [...prev, selectedUploadFile]);
    }
    setSelectedUploadFile(null);
    toast.success('Added to upload list');
  };

  const confirmDeleteFile = () => {
    if (!deleteTarget) return;

    if (deleteTarget.kind === 'feature-image') {
      setExistingImageUrl('');
    } else if (deleteTarget.kind === 'gallery') {
      setExistingGalleryFiles((prev) => prev.filter((_, idx) => idx !== deleteTarget.index));
    } else if (deleteTarget.kind === 'document') {
      setExistingDocumentFiles((prev) => prev.filter((_, idx) => idx !== deleteTarget.index));
    } else if (deleteTarget.kind === 'pending-feature-image') {
      setPendingFeatureImageFile(null);
    } else if (deleteTarget.kind === 'pending-gallery') {
      setPendingGalleryFiles((prev) => prev.filter((_, idx) => idx !== deleteTarget.index));
    } else if (deleteTarget.kind === 'pending-document') {
      setPendingDocumentFiles((prev) => prev.filter((_, idx) => idx !== deleteTarget.index));
    }

    setDeleteTarget(null);
  };

  const stockStatus = useMemo(() => {
    if (isCreateMode) {
      return { label: 'Draft', tone: 'border-border bg-muted/40 text-foreground' };
    }

    const low =
      typeof material.reorderLevel === 'number' &&
      typeof material.currentStock === 'number' &&
      material.currentStock <= material.reorderLevel;

    return low
      ? { label: 'Low stock watch', tone: 'border-amber-300 bg-amber-50 text-amber-700 dark:border-amber-500/30 dark:bg-amber-500/10 dark:text-amber-200' }
      : { label: 'Healthy stock', tone: 'border-emerald-300 bg-emerald-50 text-emerald-700 dark:border-emerald-500/30 dark:bg-emerald-500/10 dark:text-emerald-200' };
  }, [isCreateMode, material]);

  const handleSave = async () => {
    if (!name.trim()) {
      toast.error('Item Name is required');
      return;
    }
    if (!unit.trim()) {
      toast.error('Unit is required');
      return;
    }
    if (!stockType.trim()) {
      toast.error('Stock Type is required');
      return;
    }
    if (!isStockAssembly && !unitCost.trim()) {
      toast.error('Unit Cost is required');
      return;
    }

    if (isStockAssembly && (!assemblyOutputQuantity.trim() || Number(assemblyOutputQuantity) <= 0)) {
      toast.error('Assembly output quantity must be greater than zero');
      return;
    }
    if (isStockAssembly && Number(assemblyOverheadPercent) < 0) {
      toast.error('Assembly overhead percent cannot be negative');
      return;
    }

    try {
      setIsUploadingAssets(true);
      let imageUrl = existingImageUrl || undefined;
      const galleryFiles = [...existingGalleryFiles];
      const documentFiles = [...existingDocumentFiles];

      if (pendingFeatureImageFile) {
        const uploaded = await uploadMaterialAsset(pendingFeatureImageFile, 'feature-image');
        imageUrl = uploaded.url;
      }

      for (const galleryFile of pendingGalleryFiles) {
        const uploaded = await uploadMaterialAsset(galleryFile, 'photo-gallery');
        galleryFiles.push({
          url: uploaded.url,
          fileName: uploaded.fileName,
          mimeType: uploaded.mimeType,
        });
      }

      for (const documentFile of pendingDocumentFiles) {
        const uploaded = await uploadMaterialAsset(documentFile, 'document');
        documentFiles.push({
          url: uploaded.url,
          fileName: uploaded.fileName,
          mimeType: uploaded.mimeType,
        });
      }

      const payload = {
        name: name.trim(),
        description: description.trim() || undefined,
        unit: unit.trim(),
        category: category.trim() || undefined,
        warehouse: warehouse.trim() || undefined,
        stockType: stockType.trim(),
        allowNegativeConsumption,
        externalItemName: externalItemName.trim() || undefined,
        imageUrl,
        photoGallery: galleryFiles,
        documentFiles,
        ...(isCreateMode && { currentStock: parseFloat(currentStock) || 0 }),
        reorderLevel: reorderLevel ? parseFloat(reorderLevel) : undefined,
        unitCost: isStockAssembly ? calculatedAssemblyUnitCost : unitCost ? parseFloat(unitCost) : undefined,
        assemblyOutputQuantity: parseFloat(assemblyOutputQuantity) || 1,
        assemblyOverheadPercent: parseFloat(assemblyOverheadPercent) || 0,
      };

      if (isCreateMode) {
        const result = await createMaterial(payload).unwrap();

        const changes: Record<string, ChangeLogValue> = {
          name: { from: null, to: name },
          unit: { from: null, to: unit },
          category: { from: null, to: category || null },
          warehouse: { from: null, to: warehouse || null },
          stockType: { from: null, to: stockType },
          allowNegativeConsumption: { from: null, to: allowNegativeConsumption ? 'Yes' : 'No' },
          externalItemName: { from: null, to: externalItemName || null },
        };

        if (description) changes.description = { from: null, to: description };
        if (reorderLevel) changes.reorderLevel = { from: null, to: reorderLevel };
        if (imageUrl) changes.imageUrl = { from: null, to: imageUrl };
        if (galleryFiles.length > 0) changes.photoGallery = { from: null, to: galleryFiles.length };
        if (documentFiles.length > 0) changes.documentFiles = { from: null, to: documentFiles.length };

        await createMaterialLog({
          materialId: result.id,
          action: 'created',
          changes,
        }).unwrap();

        const parsedUnitCost = isStockAssembly ? calculatedAssemblyUnitCost : parseFloat(unitCost) || 0;
        if (parsedUnitCost > 0) {
          await createPriceLog({
            materialId: result.id,
            previousPrice: 0,
            currentPrice: parsedUnitCost,
            source: 'manual',
          }).unwrap();
        }

        if (stockType === 'Stock Assembly') {
          await upsertMaterialAssembly({
            materialId: result.id,
            outputQuantity: parseFloat(assemblyOutputQuantity) || 1,
            overheadPercent: parseFloat(assemblyOverheadPercent) || 0,
            components: assemblyComponents
              .filter((entry) => entry.componentMaterialId && (parseFloat(entry.quantity) || 0) > 0)
              .map((entry) => ({
                componentMaterialId: entry.componentMaterialId,
                quantity: parseFloat(entry.quantity),
              })),
          }).unwrap();
        }

        toast.success('Material created successfully');
        router.push(`/stock/materials/${result.id}`);
        return;
      }

      const previousUnitCost = material.unitCost || 0;
      const newUnitCost = isStockAssembly ? calculatedAssemblyUnitCost : parseFloat(unitCost) || 0;

      await updateMaterial({ id: material.id, data: payload }).unwrap();

      if (stockType === 'Stock Assembly') {
        await upsertMaterialAssembly({
          materialId: material.id,
          outputQuantity: parseFloat(assemblyOutputQuantity) || 1,
          overheadPercent: parseFloat(assemblyOverheadPercent) || 0,
          components: assemblyComponents
            .filter((entry) => entry.componentMaterialId && (parseFloat(entry.quantity) || 0) > 0)
            .map((entry) => ({
              componentMaterialId: entry.componentMaterialId,
              quantity: parseFloat(entry.quantity),
            })),
        }).unwrap();
      }

      const changes: Record<string, ChangeLogValue> = {};
      if (name !== material.name) changes.name = { from: material.name, to: name };
      if (description !== (material.description ?? '')) {
        changes.description = {
          from: material.description || '(empty)',
          to: description || '(empty)',
        };
      }
      if (unit !== material.unit) changes.unit = { from: material.unit, to: unit };
      if (category !== material.category) changes.category = { from: material.category || null, to: category || null };
      if (warehouse !== material.warehouse) changes.warehouse = { from: material.warehouse || null, to: warehouse || null };
      if (stockType !== material.stockType) changes.stockType = { from: material.stockType, to: stockType };
      if (allowNegativeConsumption !== material.allowNegativeConsumption) {
        changes.allowNegativeConsumption = {
          from: material.allowNegativeConsumption ? 'Yes' : 'No',
          to: allowNegativeConsumption ? 'Yes' : 'No',
        };
      }
      if (externalItemName !== material.externalItemName) {
        changes.externalItemName = {
          from: material.externalItemName || null,
          to: externalItemName || null,
        };
      }
      if (reorderLevel !== (material.reorderLevel?.toString() ?? '')) {
        changes.reorderLevel = {
          from: material.reorderLevel ?? 0,
          to: parseFloat(reorderLevel) || 0,
        };
      }
      if ((material.imageUrl ?? '') !== (imageUrl ?? '')) {
        changes.imageUrl = { from: material.imageUrl ?? null, to: imageUrl ?? null };
      }
      const previousGalleryCount = normalizeStoredFiles(material.photoGallery).length;
      const previousDocumentCount = normalizeStoredFiles(material.documentFiles).length;
      if (previousGalleryCount !== galleryFiles.length) {
        changes.photoGallery = { from: previousGalleryCount, to: galleryFiles.length };
      }
      if (previousDocumentCount !== documentFiles.length) {
        changes.documentFiles = { from: previousDocumentCount, to: documentFiles.length };
      }

      if (Object.keys(changes).length > 0) {
        await createMaterialLog({
          materialId: material.id,
          action: 'updated',
          changes,
        }).unwrap();
      }

      if (previousUnitCost !== newUnitCost) {
        await createPriceLog({
          materialId: material.id,
          previousPrice: previousUnitCost,
          currentPrice: newUnitCost,
          source: 'manual',
        }).unwrap();
      }

      toast.success('Material updated successfully');
      setExistingImageUrl(imageUrl ?? '');
      setExistingGalleryFiles(galleryFiles);
      setExistingDocumentFiles(documentFiles);
      setPendingFeatureImageFile(null);
      setPendingGalleryFiles([]);
      setPendingDocumentFiles([]);
      setSelectedUploadFile(null);
    } catch (error: unknown) {
      toast.error(extractErrorMessage(error, isCreateMode ? 'Failed to create material' : 'Failed to update material'));
    } finally {
      setIsUploadingAssets(false);
    }
  };

  const handleCreateUnit = async (e: React.FormEvent) => {
    e.preventDefault();
    if (!newUnitName.trim()) {
      toast.error('Unit name is required');
      return;
    }
    try {
      const newUnit = await createUnit({ name: newUnitName.trim() }).unwrap();
      setUnit(newUnit.name);
      setNewUnitName('');
      setUnitModal(false);
      toast.success('Unit created');
    } catch (error: unknown) {
      toast.error(extractErrorMessage(error, 'Failed to create unit'));
    }
  };

  const handleCreateCategory = async (e: React.FormEvent) => {
    e.preventDefault();
    if (!newCategoryName.trim()) {
      toast.error('Category name is required');
      return;
    }
    try {
      const newCategory = await createCategory({ name: newCategoryName.trim() }).unwrap();
      setCategory(newCategory.name);
      setNewCategoryName('');
      setCategoryModal(false);
      toast.success('Category created');
    } catch (error: unknown) {
      toast.error(extractErrorMessage(error, 'Failed to create category'));
    }
  };

  const handleCreateWarehouse = async (e: React.FormEvent) => {
    e.preventDefault();
    if (!newWarehouseName.trim()) {
      toast.error('Warehouse name is required');
      return;
    }
    try {
      const newWarehouse = await createWarehouse({
        name: newWarehouseName.trim(),
        location: newWarehouseLocation.trim() || undefined,
      }).unwrap();
      setWarehouse(newWarehouse.name);
      setNewWarehouseName('');
      setNewWarehouseLocation('');
      setWarehouseModal(false);
      toast.success('Warehouse created');
    } catch (error: unknown) {
      toast.error(extractErrorMessage(error, 'Failed to create warehouse'));
    }
  };

  return (
    <div className="flex w-full min-w-0 flex-col gap-5">
      <header className="flex w-full min-w-0 flex-col gap-4 border-b border-border pb-4 lg:flex-row lg:items-end lg:justify-between">
        <div className="min-w-0 max-w-3xl space-y-1">
          <Link
            href="/stock/materials"
            className={cn(
              buttonVariants({ variant: 'link', size: 'sm' }),
              'h-auto p-0 text-xs font-medium uppercase tracking-wide text-muted-foreground',
            )}
          >
            Stock / Materials
          </Link>
          <div className="flex flex-wrap items-center gap-3">
            <h1 className="text-xl font-semibold tracking-tight text-foreground">{pageTitle}</h1>
            <span className={cn('inline-flex rounded-full border px-2.5 py-1 text-xs font-medium', stockStatus.tone)}>
              {stockStatus.label}
            </span>
          </div>
          <p className="max-w-3xl text-sm leading-relaxed text-muted-foreground">{pageSubtitle}</p>
        </div>

        <div className="flex shrink-0 flex-wrap gap-2">
          {!isCreateMode ? (
            <Button variant="outline" size="sm" onClick={() => router.push('/stock/materials')}>
              Back to materials
            </Button>
          ) : null}
          <Button variant="secondary" size="sm" onClick={() => router.back()}>
            Cancel
          </Button>
          <Button size="sm" onClick={handleSave} disabled={isLoading || isUploadingAssets}>
            {isLoading || isUploadingAssets ? 'Saving…' : submitButtonText}
          </Button>
        </div>
      </header>

      <div className="grid gap-3 sm:grid-cols-2 xl:grid-cols-4">
        {[
          {
            label: 'Base unit',
            value: unit || material?.unit || '-',
            note: isCreateMode ? 'Used for stock and transaction storage' : 'Current stock base',
          },
          {
            label: 'Current stock',
            value: isCreateMode ? currentStock || '0' : formatNumber(material?.currentStock),
            note:
              !isCreateMode && material?.reorderLevel !== undefined
                ? `Reorder at ${formatNumber(material.reorderLevel)}`
                : 'Opening stock while creating',
          },
          {
            label: 'Unit cost',
            value:
              unitCost || material?.unitCost !== undefined
                ? `${currencyCode} ${Number(unitCost || material?.unitCost || 0).toFixed(2)}`
                : '-',
            note: latestPriceLog ? `Latest change ${new Date(latestPriceLog.timestamp).toLocaleDateString()}` : 'Manual cost baseline',
          },
          {
            label: 'UOM chain',
            value: String(materialUoms.length),
            note: materialUoms.some((entry) => entry.isBase) ? 'Base and derived units configured' : 'Create base UOM after save',
          },
        ].map((item) => (
          <div key={item.label} className="rounded-lg border border-border bg-card px-4 py-3 shadow-sm">
            <p className="text-[11px] font-medium uppercase tracking-wide text-muted-foreground">{item.label}</p>
            <p className="mt-2 text-xl font-semibold text-foreground">{item.value}</p>
            <p className="mt-1 text-xs text-muted-foreground">{item.note}</p>
          </div>
        ))}
      </div>

      <section className="rounded-lg border border-border bg-card p-2 shadow-sm sm:p-3">
        <div className="flex flex-wrap gap-2">
          {tabOptions
            .filter((tab) => !tab.hidden)
            .map((tab) => (
              <button
                key={tab.id}
                type="button"
                onClick={() => setActiveTab(tab.id)}
                className={cn(
                  'rounded-lg border px-3 py-2 text-sm font-medium transition-colors',
                  activeTab === tab.id
                    ? 'border-primary bg-primary/10 text-foreground shadow-sm'
                    : 'border-border bg-card text-muted-foreground hover:bg-muted/50 hover:text-foreground',
                )}
              >
                {tab.label}
              </button>
            ))}
        </div>
      </section>

      <div className="grid gap-4 xl:grid-cols-[minmax(0,1fr)_18rem]">
        <div className="space-y-4">
          {activeTab === 'details' ? (
          <SectionShell
            title="Material details"
            description="Keep the core stock settings close together so edits take one pass."
          >
            <div className="grid gap-4 md:grid-cols-2">
              <FieldShell label="Item name" hint="Primary inventory label used across transactions." wide>
                <input
                  value={name}
                  onChange={(e) => setName(e.target.value)}
                  className={inputClassName()}
                  placeholder="e.g. Fiberglass Mat 300gsm"
                  autoFocus={isCreateMode}
                />
              </FieldShell>

              <FieldShell label="Description" hint="Optional note for teams and imports." wide>
                <textarea
                  value={description}
                  onChange={(e) => setDescription(e.target.value)}
                  className={inputClassName()}
                  rows={3}
                />
              </FieldShell>

              <FieldShell label="Base unit" hint="Inventory and dispatch quantities resolve back to this unit.">
                <div className="flex gap-2">
                  <SearchSelect
                    items={units.map((entry) => ({ id: entry.name, label: entry.name }))}
                    value={unit}
                    onChange={setUnit}
                    placeholder="Select unit"
                    openOnFocus
                    dropdownInPortal
                    inputProps={{ className: inputClassName() }}
                  />
                  <Button type="button" size="sm" variant="secondary" onClick={() => setUnitModal(true)}>
                    New
                  </Button>
                </div>
              </FieldShell>

              <FieldShell label="Stock type" hint="Used to separate raw, WIP, and finished items.">
                <SearchSelect
                  items={STOCK_TYPE_OPTIONS}
                  value={stockType}
                  onChange={(nextType) => {
                    setStockType(nextType);
                    if (nextType !== 'Stock Assembly') {
                      setAssemblyComponents([]);
                    }
                  }}
                  placeholder="Select stock type"
                  openOnFocus
                  dropdownInPortal
                  inputProps={{ className: inputClassName() }}
                />
              </FieldShell>

              <FieldShell
                label="Negative consumption"
                hint="Allow dispatching below zero stock. Useful for reconciled or later-costed items."
              >
                <label className="flex min-h-[46px] items-center justify-between rounded-xl border border-border bg-muted/40 px-3 py-2.5 text-sm text-foreground dark:border-border dark:bg-muted/30">
                  <span>{allowNegativeConsumption ? 'Allowed' : 'Blocked at zero stock'}</span>
                  <input
                    type="checkbox"
                    checked={allowNegativeConsumption}
                    onChange={(e) => setAllowNegativeConsumption(e.target.checked)}
                    className="h-4 w-4 rounded border-border text-primary focus:ring-2 focus:ring-ring"
                  />
                </label>
              </FieldShell>

              <FieldShell label="Category">
                <div className="flex gap-2">
                  <SearchSelect
                    items={categories.map((entry) => ({ id: entry.name, label: entry.name }))}
                    value={category}
                    onChange={setCategory}
                    placeholder="Select category"
                    openOnFocus
                    dropdownInPortal
                    inputProps={{ className: inputClassName() }}
                  />
                  <Button type="button" size="sm" variant="secondary" onClick={() => setCategoryModal(true)}>
                    New
                  </Button>
                </div>
              </FieldShell>

              <FieldShell
                label="Default warehouse"
                hint="Used as the default in receipts/dispatch lines. You can still override per line."
              >
                <div className="flex gap-2">
                  <SearchSelect
                    items={[
                      ...warehouses.map((entry) => ({ id: entry.name, label: entry.name })),
                      ...(warehouse && !warehouses.some((entry) => entry.name === warehouse)
                        ? [{ id: warehouse, label: `${warehouse} (current)` }]
                        : []),
                    ]}
                    value={warehouse}
                    onChange={setWarehouse}
                    placeholder="Select warehouse"
                    openOnFocus
                    dropdownInPortal
                    inputProps={{ className: inputClassName() }}
                  />
                  <Button type="button" size="sm" variant="secondary" onClick={() => setWarehouseModal(true)}>
                    New
                  </Button>
                </div>
              </FieldShell>

              <FieldShell label="External item name" hint="Optional code or linked accounting label.">
                <input
                  value={externalItemName}
                  onChange={(e) => setExternalItemName(e.target.value)}
                  className={inputClassName()}
                  placeholder="e.g. QuickBooks item code"
                />
              </FieldShell>

              {isCreateMode ? (
                <FieldShell label="Opening stock" hint="Starting quantity in the selected base unit.">
                  <input
                    type="number"
                    min="0"
                    step="0.001"
                    value={currentStock}
                    onChange={(e) => setCurrentStock(e.target.value)}
                    className={inputClassName()}
                  />
                </FieldShell>
              ) : (
                <FieldShell label="Current stock" hint="Read-only current quantity in the base unit.">
                  <div className="rounded-xl border border-border bg-muted/40 px-3 py-2.5 text-sm font-medium text-emerald-700 dark:border-border dark:bg-muted/30 dark:text-emerald-300">
                    {formatNumber(material.currentStock)}
                  </div>
                </FieldShell>
              )}

              <FieldShell label={`Unit cost (${currencyCode})`}>
                <input
                  type="number"
                  min="0"
                  step="0.01"
                  value={isStockAssembly ? calculatedAssemblyUnitCost.toFixed(4) : unitCost}
                  onChange={(e) => setUnitCost(e.target.value)}
                  className={inputClassName()}
                  disabled={isStockAssembly}
                />
              </FieldShell>

              {isStockAssembly ? (
                <FieldShell
                  label="Assembly output quantity"
                  hint="Total quantity produced by one assembly batch (in base unit)."
                >
                  <input
                    type="number"
                    min="0.0001"
                    step="0.001"
                    value={assemblyOutputQuantity}
                    onChange={(e) => setAssemblyOutputQuantity(e.target.value)}
                    className={inputClassName()}
                  />
                </FieldShell>
              ) : null}

              {isStockAssembly ? (
                <FieldShell
                  label="Assembly overhead (%)"
                  hint="Add labour/tools cost as a percentage on total component cost."
                >
                  <input
                    type="number"
                    min="0"
                    step="0.01"
                    value={assemblyOverheadPercent}
                    onChange={(e) => setAssemblyOverheadPercent(e.target.value)}
                    className={inputClassName()}
                  />
                </FieldShell>
              ) : null}

              <FieldShell label="Reorder level">
                <input
                  type="number"
                  min="0"
                  step="0.001"
                  value={reorderLevel}
                  onChange={(e) => setReorderLevel(e.target.value)}
                  className={inputClassName()}
                />
              </FieldShell>
            </div>

            <div className="mt-5 flex flex-wrap justify-end gap-3 border-t border-border pt-4 dark:border-border">
              <Button type="button" variant="ghost" onClick={() => router.back()}>
                Cancel
              </Button>
              <Button onClick={handleSave} disabled={isLoading || isUploadingAssets}>
                {isLoading || isUploadingAssets ? 'Saving…' : submitButtonText}
              </Button>
            </div>

            {isStockAssembly ? (
              <div className="mt-5 border-t border-border pt-4 dark:border-border">
                <h3 className="text-sm font-semibold text-foreground">Assembly components</h3>
                <p className="mt-1 text-xs text-muted-foreground">
                  Build this stock item from existing materials. Cost updates automatically from component costs.
                </p>
                <div className="mt-4 space-y-3">
                  {assemblyComponents.map((row, index) => {
                    const selected = assemblyMaterialOptions.find((entry) => entry.id === row.componentMaterialId);
                    const lineCost = (parseFloat(row.quantity) || 0) * (selected?.unitCost ?? 0);
                    return (
                      <div
                        key={`${row.componentMaterialId}-${index}`}
                        className="grid gap-3 rounded-xl border border-border bg-muted/40 p-3 dark:border-border dark:bg-muted/30 lg:grid-cols-[1.2fr_0.7fr_0.8fr_auto]"
                      >
                        <SearchSelect
                          items={assemblyMaterialOptions.map((entry) => ({
                            id: entry.id,
                            label: `${entry.name} (${entry.unit})`,
                          }))}
                          value={row.componentMaterialId}
                          onChange={(nextId) =>
                            setAssemblyComponents((prev) =>
                              prev.map((entry, entryIndex) =>
                                entryIndex === index ? { ...entry, componentMaterialId: nextId } : entry
                              )
                            )
                          }
                          placeholder="Select stock item"
                          openOnFocus
                          dropdownInPortal
                          inputProps={{ className: inputClassName() }}
                        />
                        <input
                          type="number"
                          min="0.0001"
                          step="0.001"
                          value={row.quantity}
                          onChange={(e) =>
                            setAssemblyComponents((prev) =>
                              prev.map((entry, entryIndex) =>
                                entryIndex === index ? { ...entry, quantity: e.target.value } : entry
                              )
                            )
                          }
                          className={inputClassName()}
                          placeholder="Qty"
                        />
                        <div className="flex items-center rounded-xl border border-border bg-card px-3 py-2 text-sm text-foreground dark:border-border">
                          {currencyCode} {lineCost.toFixed(4)}
                        </div>
                        <Button
                          type="button"
                          variant="ghost"
                          onClick={() =>
                            setAssemblyComponents((prev) => prev.filter((_, entryIndex) => entryIndex !== index))
                          }
                        >
                          Remove
                        </Button>
                      </div>
                    );
                  })}
                </div>
                <div className="mt-3 flex flex-wrap items-center gap-3">
                  <Button
                    type="button"
                    size="sm"
                    variant="secondary"
                    onClick={() => setAssemblyComponents((prev) => [...prev, { componentMaterialId: '', quantity: '' }])}
                  >
                    Add component
                  </Button>
                  <p className="text-sm font-medium text-foreground">
                    Input: {currencyCode} {assemblyTotalCost.toFixed(4)} | Overhead: {assemblyOverheadPercentValue.toFixed(2)}% | Total: {currencyCode} {assemblyTotalCostWithOverhead.toFixed(4)} | Output: {assemblyOutputQuantityValue.toFixed(3)} {unit || material?.unit || ''}
                  </p>
                </div>
              </div>
            ) : null}
          </SectionShell>
          ) : null}

          {activeTab === 'files' ? (
            <SectionShell
              title="Material files"
              description="Upload feature image, gallery photos, and documents with one dropdown uploader."
            >
              <div className="grid gap-3 rounded-xl border border-border bg-muted/40 p-4 dark:border-border dark:bg-muted/30 lg:grid-cols-[12rem_minmax(0,1fr)_auto]">
                <select
                  value={uploadType}
                  onChange={(e) => setUploadType(e.target.value as MaterialUploadType)}
                  className={inputClassName()}
                >
                  <option value="feature-image">Feature Image</option>
                  <option value="photo-gallery">Photo Gallery</option>
                  <option value="document">Documents</option>
                </select>
                <input
                  type="file"
                  accept={uploadType === 'document' ? '.pdf,.doc,.docx,.xls,.xlsx,.txt,image/*' : 'image/jpeg,image/png,image/webp'}
                  onChange={(e) => setSelectedUploadFile(e.target.files?.[0] ?? null)}
                  className={inputClassName()}
                />
                <Button type="button" variant="secondary" onClick={handleAddPendingUpload}>
                  Add
                </Button>
              </div>

              <div className="mt-5 grid gap-4 lg:grid-cols-[minmax(0,1fr)_20rem]">
                <div className="rounded-xl border border-border bg-muted/40 p-4 dark:border-border dark:bg-muted/30">
                  <div className="flex items-center justify-between gap-3">
                    <h3 className="text-sm font-semibold text-foreground">Feature image preview</h3>
                    {existingImageUrl ? (
                      <Button
                        type="button"
                        size="sm"
                        variant="destructive"
                        onClick={() => setDeleteTarget({ kind: 'feature-image' })}
                      >
                        Delete
                      </Button>
                    ) : null}
                  </div>
                  {pendingFeatureImageFile ? (
                    <div className="mt-2 flex items-center justify-between gap-2 rounded-lg border border-amber-200 bg-amber-50 px-3 py-2 text-xs text-amber-700 dark:border-amber-500/30 dark:bg-amber-500/10 dark:text-amber-200">
                      <span>Pending update: {pendingFeatureImageFile.name}</span>
                      <Button
                        type="button"
                        size="sm"
                        variant="ghost"
                        onClick={() =>
                          setDeleteTarget({ kind: 'pending-feature-image', fileName: pendingFeatureImageFile.name })
                        }
                      >
                        Remove
                      </Button>
                    </div>
                  ) : null}
                  {existingImageUrl ? (
                    <a href={existingImageUrl} target="_blank" rel="noreferrer" className="mt-3 block">
                      <img src={existingImageUrl} alt={`${name || 'Material'} image`} className="max-h-64 w-full rounded-lg border border-border object-contain dark:border-border" />
                    </a>
                  ) : (
                    <p className="mt-3 text-sm text-muted-foreground">No uploaded image yet.</p>
                  )}
                </div>

                <div className="rounded-xl border border-border bg-muted/40 p-4 dark:border-border dark:bg-muted/30">
                  <h3 className="text-sm font-semibold text-foreground">Pending uploads</h3>
                  <div className="mt-3 space-y-2">
                    {!pendingFeatureImageFile && pendingGalleryFiles.length === 0 && pendingDocumentFiles.length === 0 ? (
                      <p className="text-sm text-muted-foreground">No pending uploads.</p>
                    ) : (
                      <>
                        {pendingFeatureImageFile ? (
                          <div className="rounded-lg border border-border bg-card px-3 py-2 text-sm dark:border-border dark:bg-card">
                            Feature Image: {pendingFeatureImageFile.name}
                          </div>
                        ) : null}
                        {pendingGalleryFiles.map((entry, idx) => (
                          <div key={`${entry.name}-${idx}`} className="flex items-center justify-between gap-2 rounded-lg border border-border bg-card px-3 py-2 text-sm dark:border-border dark:bg-card">
                            <span>Gallery: {entry.name}</span>
                            <Button
                              type="button"
                              size="sm"
                              variant="ghost"
                              onClick={() => setDeleteTarget({ kind: 'pending-gallery', index: idx, fileName: entry.name })}
                            >
                              Remove
                            </Button>
                          </div>
                        ))}
                        {pendingDocumentFiles.map((entry, idx) => (
                          <div key={`${entry.name}-${idx}`} className="flex items-center justify-between gap-2 rounded-lg border border-border bg-card px-3 py-2 text-sm dark:border-border dark:bg-card">
                            <span>Document: {entry.name}</span>
                            <Button
                              type="button"
                              size="sm"
                              variant="ghost"
                              onClick={() => setDeleteTarget({ kind: 'pending-document', index: idx, fileName: entry.name })}
                            >
                              Remove
                            </Button>
                          </div>
                        ))}
                      </>
                    )}
                  </div>
                </div>
              </div>

              <div className="mt-5 grid gap-4 lg:grid-cols-2">
                <div className="rounded-xl border border-border bg-muted/40 p-4 dark:border-border dark:bg-muted/30">
                  <h3 className="text-sm font-semibold text-foreground">Photo gallery</h3>
                  <div className="mt-3 space-y-2">
                    {existingGalleryFiles.length === 0 ? (
                      <p className="text-sm text-muted-foreground">No gallery photos uploaded.</p>
                    ) : (
                      existingGalleryFiles.map((entry, idx) => (
                        <div key={entry.url} className="flex items-center justify-between gap-2 rounded-lg border border-border bg-card px-3 py-2 text-sm dark:border-border dark:bg-card">
                          <a href={entry.url} target="_blank" rel="noreferrer" className="truncate underline">
                            {entry.fileName}
                          </a>
                          <Button
                            type="button"
                            size="sm"
                            variant="destructive"
                            onClick={() => setDeleteTarget({ kind: 'gallery', index: idx, fileName: entry.fileName })}
                          >
                            Delete
                          </Button>
                        </div>
                      ))
                    )}
                  </div>
                </div>
                <div className="rounded-xl border border-border bg-muted/40 p-4 dark:border-border dark:bg-muted/30">
                  <h3 className="text-sm font-semibold text-foreground">Documents</h3>
                  <div className="mt-3 space-y-2">
                    {existingDocumentFiles.length === 0 ? (
                      <p className="text-sm text-muted-foreground">No documents uploaded.</p>
                    ) : (
                      existingDocumentFiles.map((entry, idx) => (
                        <div key={entry.url} className="flex items-center justify-between gap-2 rounded-lg border border-border bg-card px-3 py-2 text-sm dark:border-border dark:bg-card">
                          <a href={entry.url} target="_blank" rel="noreferrer" className="truncate underline">
                            {entry.fileName}
                          </a>
                          <Button
                            type="button"
                            size="sm"
                            variant="destructive"
                            onClick={() => setDeleteTarget({ kind: 'document', index: idx, fileName: entry.fileName })}
                          >
                            Delete
                          </Button>
                        </div>
                      ))
                    )}
                  </div>
                </div>
              </div>

              <div className="mt-5 flex justify-end">
                <Button onClick={handleSave} disabled={isLoading || isUploadingAssets}>
                  {isLoading || isUploadingAssets ? 'Saving…' : submitButtonText}
                </Button>
              </div>
            </SectionShell>
          ) : null}

          {!isCreateMode && activeTab === 'uom' ? (
            <SectionShell
              title="Units of measure"
              description="Define packaging or billing units while keeping all stock in the base unit."
            >
              {materialUoms.length === 0 ? (
                <div className="rounded-xl border border-amber-200 bg-amber-50 p-4 text-sm text-amber-700 dark:border-amber-600/30 dark:bg-amber-950/20 dark:text-amber-100/90">
                  <p>No UOM chain exists yet.</p>
                  <div className="mt-3">
                    <Button
                      type="button"
                      size="sm"
                      variant="secondary"
                      onClick={async () => {
                        const existingUnit = units.find((entry) => entry.name === unit.trim());
                        if (!existingUnit) {
                          toast.error('Select a base unit above that exists in Settings > Units');
                          return;
                        }
                        try {
                          await createMaterialUom({
                            materialId: material.id,
                            body: { mode: 'base', unitId: existingUnit.id },
                          }).unwrap();
                          toast.success('Base UOM created');
                        } catch (error: unknown) {
                          toast.error(extractErrorMessage(error, 'Failed to create base UOM'));
                        }
                      }}
                    >
                      Create base UOM from &quot;{unit || '...'}&quot;
                    </Button>
                  </div>
                </div>
              ) : (
                <div className="overflow-x-auto rounded-xl border border-border dark:border-border">
                  <table className="w-full text-left text-sm text-foreground">
                    <thead className="bg-muted/40 text-xs uppercase tracking-[0.16em] text-muted-foreground">
                      <tr>
                        <th className="px-4 py-3">Unit</th>
                        <th className="px-4 py-3">Role</th>
                        <th className="px-4 py-3">Parent</th>
                        <th className="px-4 py-3">Factor</th>
                        <th className="px-4 py-3">To base</th>
                        <th className="px-4 py-3 text-right">Action</th>
                      </tr>
                    </thead>
                    <tbody>
                      {materialUoms.map((row) => {
                        const parent = materialUoms.find((entry) => entry.id === row.parentUomId);
                        return (
                          <tr key={row.id} className="border-t border-border dark:border-border">
                            <td className="px-4 py-3 font-medium text-foreground">{row.unitName}</td>
                            <td className="px-4 py-3">
                              <span
                                className={[
                                  'inline-flex rounded-full border px-2.5 py-1 text-xs font-medium',
                                  row.isBase
                                    ? 'border-emerald-300 bg-emerald-50 text-emerald-700 dark:border-emerald-500/30 dark:bg-emerald-500/10 dark:text-emerald-200'
                                    : 'border-border bg-muted/40 text-foreground dark:border-border dark:bg-card',
                                ].join(' ')}
                              >
                                {row.isBase ? 'Base' : 'Derived'}
                              </span>
                            </td>
                            <td className="px-4 py-3 text-muted-foreground">{parent?.unitName ?? '-'}</td>
                            <td className="px-4 py-3 font-mono">{row.factorToParent}</td>
                            <td className="px-4 py-3 font-mono text-emerald-700 dark:text-emerald-300">{row.factorToBase}</td>
                            <td className="px-4 py-3 text-right">
                              {!row.isBase ? (
                                <Button
                                  type="button"
                                  size="sm"
                                  variant="ghost"
                                  onClick={async () => {
                                    if (!window.confirm(`Remove UOM "${row.unitName}"?`)) return;
                                    try {
                                      await deleteMaterialUom({ materialId: material.id, uomId: row.id }).unwrap();
                                      toast.success('UOM removed');
                                    } catch (error: unknown) {
                                      toast.error(extractErrorMessage(error, 'Failed to remove'));
                                    }
                                  }}
                                >
                                  Remove
                                </Button>
                              ) : null}
                            </td>
                          </tr>
                        );
                      })}
                    </tbody>
                  </table>
                </div>
              )}

              {materialUoms.some((entry) => entry.isBase) ? (
                <div className="mt-4 grid gap-4 border-t border-border pt-4 dark:border-border lg:grid-cols-[1.1fr_1fr_0.8fr_auto]">
                  <FieldShell label="Packaging unit">
                    <SearchSelect
                      items={availableDerivedUnits.map((entry) => ({ id: entry.id, label: entry.name }))}
                      value={deriveUnitId}
                      onChange={setDeriveUnitId}
                      placeholder="Select unit"
                      openOnFocus
                      dropdownInPortal
                      inputProps={{ className: inputClassName() }}
                    />
                  </FieldShell>

                  <FieldShell label="Parent UOM">
                    <SearchSelect
                      items={materialUoms.map((entry) => ({
                        id: entry.id,
                        label: `${entry.unitName}${entry.isBase ? ' (base)' : ` (=${entry.factorToBase} ${material.unit})`}`,
                      }))}
                      value={deriveParentId}
                      onChange={setDeriveParentId}
                      placeholder="Select parent"
                      openOnFocus
                      dropdownInPortal
                      inputProps={{ className: inputClassName() }}
                    />
                  </FieldShell>

                  <FieldShell label="Factor to parent">
                    <input
                      type="number"
                      min="0.0001"
                      step="any"
                      value={deriveFactor}
                      onChange={(e) => setDeriveFactor(e.target.value)}
                      placeholder="e.g. 190"
                      className={inputClassName()}
                    />
                  </FieldShell>

                  <div className="flex items-end">
                    <Button
                      type="button"
                      onClick={async () => {
                        const factor = parseFloat(deriveFactor);
                        if (!deriveUnitId || !deriveParentId || !factor || factor <= 0) {
                          toast.error('Select unit, parent, and a positive factor');
                          return;
                        }
                        try {
                          await createMaterialUom({
                            materialId: material.id,
                            body: {
                              mode: 'derived',
                              unitId: deriveUnitId,
                              parentUomId: deriveParentId,
                              factorToParent: factor,
                            },
                          }).unwrap();
                          setDeriveUnitId('');
                          setDeriveParentId('');
                          setDeriveFactor('');
                          toast.success('UOM added');
                        } catch (error: unknown) {
                          toast.error(extractErrorMessage(error, 'Failed to add UOM'));
                        }
                      }}
                    >
                      Add conversion
                    </Button>
                  </div>
                </div>
              ) : null}
            </SectionShell>
          ) : null}

          {!isCreateMode && activeTab === 'history' ? (
            <SectionShell
              title="Change history"
              description="Recent field changes and pricing adjustments stay visible in one place."
            >
              <div className="grid gap-4 xl:grid-cols-2">
                <div>
                  <h3 className="mb-3 text-sm font-medium text-foreground">Material edits</h3>
                  <div className="space-y-3">
                    {materialLogs.length === 0 ? (
                      <p className="text-sm text-muted-foreground">No edits yet.</p>
                    ) : (
                      materialLogs.map((log) => (
                        <div key={log.id} className="rounded-xl border border-border bg-muted/40 p-3 dark:border-border dark:bg-muted/30">
                          <div className="flex items-center justify-between gap-3">
                            <span className="text-sm font-medium text-emerald-700 dark:text-emerald-300">
                              {log.action === 'created' ? 'Created' : 'Updated'}
                            </span>
                            <span className="text-xs text-muted-foreground">{new Date(log.timestamp).toLocaleString()}</span>
                          </div>
                          <p className="mt-1 text-xs text-muted-foreground">
                            Changed by <span className="text-foreground">{log.changedBy || 'System'}</span>
                          </p>
                          <div className="mt-3 space-y-2">
                            {Object.entries(log.changes).map(([key, value]) => (
                              <div key={key} className="rounded-lg border border-border bg-card px-3 py-2 text-xs text-foreground dark:border-border">
                                <span className="font-medium text-foreground">{key}</span>{' '}
                                <span className="text-red-600 dark:text-red-300">{String(value.from)}</span>{' '}
                                <span className="text-muted-foreground">→</span>{' '}
                                <span className="text-emerald-700 dark:text-emerald-300">{String(value.to)}</span>
                              </div>
                            ))}
                          </div>
                        </div>
                      ))
                    )}
                  </div>
                </div>

                <div>
                  <h3 className="mb-3 text-sm font-medium text-foreground">Price history</h3>
                  <div className="space-y-3">
                    {priceLogs.length === 0 ? (
                      <p className="text-sm text-muted-foreground">No price changes.</p>
                    ) : (
                      priceLogs.map((log) => (
                        <div key={log.id} className="rounded-xl border border-border bg-muted/40 p-3 text-sm dark:border-border dark:bg-muted/30">
                          <div className="flex items-center justify-between gap-3">
                            <span className="font-medium text-foreground">
                              {log.source === 'manual' ? 'Manual update' : 'Bill-linked'}
                            </span>
                            <span className={log.currentPrice > log.previousPrice ? 'text-red-600 dark:text-red-300' : 'text-emerald-700 dark:text-emerald-300'}>
                              {currencyCode} {log.previousPrice} → {currencyCode} {log.currentPrice}
                            </span>
                          </div>
                          <p className="mt-2 text-xs text-muted-foreground">{new Date(log.timestamp).toLocaleString()}</p>
                          <p className="mt-1 text-xs text-muted-foreground">
                            Changed by <span className="text-foreground">{log.changedBy || 'System'}</span>
                          </p>
                          {log.notes ? <p className="mt-2 text-xs italic text-muted-foreground">{log.notes}</p> : null}
                        </div>
                      ))
                    )}
                  </div>
                </div>
              </div>
            </SectionShell>
          ) : null}
        </div>

        <aside className="space-y-4 xl:sticky xl:top-4 xl:self-start">
          <SectionShell title="Quick summary" description="Key numbers stay pinned while you edit.">
            <div className="space-y-4">
              {[
                { label: 'Stock on hand', value: isCreateMode ? currentStock || '0' : formatNumber(material.currentStock) },
                { label: 'Reorder level', value: reorderLevel || formatNumber(material?.reorderLevel) },
                {
                  label: 'Unit cost',
                  value: unitCost
                    ? `${currencyCode} ${Number(unitCost || 0).toFixed(2)}`
                    : material?.unitCost !== undefined
                      ? `${currencyCode} ${Number(material.unitCost || 0).toFixed(2)}`
                      : '-',
                },
                { label: 'Warehouse', value: warehouse || material?.warehouse || '-' },
              ].map((item) => (
                <div key={item.label} className="rounded-xl border border-border bg-muted/40 px-3 py-3 dark:border-border dark:bg-muted/30">
                  <p className="text-xs uppercase tracking-[0.16em] text-muted-foreground">{item.label}</p>
                  <p className="mt-1 text-sm font-medium text-foreground">{item.value}</p>
                </div>
              ))}
            </div>
          </SectionShell>

          <SectionShell title="Setup notes" description="Operational reminders for stock and conversion setup.">
            <div className="space-y-3 text-sm text-muted-foreground">
              <p>Stock is always stored in the base unit, even when dispatch uses packaging units.</p>
              <p>Create the material first, then add drum, pallet, or bundle conversions in the UOM section.</p>
              <p>Price changes are logged automatically whenever unit cost is updated.</p>
            </div>
          </SectionShell>
        </aside>
      </div>

      <Modal isOpen={unitModal} onClose={() => setUnitModal(false)} title="Create New Unit">
        <form onSubmit={handleCreateUnit} className="space-y-4">
          <input
            type="text"
            required
            value={newUnitName}
            onChange={(e) => setNewUnitName(e.target.value)}
            placeholder="e.g. kg, meter, liter"
            className={inputClassName()}
            autoFocus
          />
          <div className="flex gap-3">
            <Button type="button" variant="ghost" onClick={() => setUnitModal(false)} className="flex-1">
              Cancel
            </Button>
            <Button type="submit" className="flex-1">
              Create
            </Button>
          </div>
        </form>
      </Modal>

      <Modal isOpen={categoryModal} onClose={() => setCategoryModal(false)} title="Create New Category">
        <form onSubmit={handleCreateCategory} className="space-y-4">
          <input
            type="text"
            required
            value={newCategoryName}
            onChange={(e) => setNewCategoryName(e.target.value)}
            placeholder="e.g. Resin, Steel"
            className={inputClassName()}
            autoFocus
          />
          <div className="flex gap-3">
            <Button type="button" variant="ghost" onClick={() => setCategoryModal(false)} className="flex-1">
              Cancel
            </Button>
            <Button type="submit" className="flex-1">
              Create
            </Button>
          </div>
        </form>
      </Modal>

      <Modal isOpen={warehouseModal} onClose={() => setWarehouseModal(false)} title="Create New Warehouse">
        <form onSubmit={handleCreateWarehouse} className="space-y-4">
          <input
            type="text"
            required
            value={newWarehouseName}
            onChange={(e) => setNewWarehouseName(e.target.value)}
            placeholder="e.g. Main Warehouse"
            className={inputClassName()}
            autoFocus
          />
          <input
            type="text"
            value={newWarehouseLocation}
            onChange={(e) => setNewWarehouseLocation(e.target.value)}
            placeholder="Location (optional)"
            className={inputClassName()}
          />
          <div className="flex gap-3">
            <Button type="button" variant="ghost" onClick={() => setWarehouseModal(false)} className="flex-1">
              Cancel
            </Button>
            <Button type="submit" className="flex-1">
              Create
            </Button>
          </div>
        </form>
      </Modal>

      <Modal
        isOpen={Boolean(deleteTarget)}
        onClose={() => setDeleteTarget(null)}
        title="Delete file?"
        size="sm"
      >
        <div className="space-y-4">
          <p className="text-sm text-muted-foreground">
            This will remove the file from this material record after you save changes. This action cannot be undone.
          </p>
          <div className="flex justify-end gap-2">
            <Button type="button" variant="ghost" onClick={() => setDeleteTarget(null)}>
              Cancel
            </Button>
            <Button type="button" variant="destructive" onClick={confirmDeleteFile}>
              Delete
            </Button>
          </div>
        </div>
      </Modal>
    </div>
  );
}

export default function MaterialDetailPage() {
  const params = useParams();
  const materialId = params.id as string;
  const isCreateMode = materialId === 'new';

  const { data: material, isLoading: isLoadingMaterial } = useGetMaterialByIdQuery(materialId, {
    skip: isCreateMode,
    refetchOnMountOrArgChange: 30,
  });
  const { data: units = [] } = useGetUnitsQuery(undefined, {
    refetchOnMountOrArgChange: 30,
  });
  const { data: categories = [] } = useGetCategoriesQuery(undefined, {
    refetchOnMountOrArgChange: 30,
  });
  const { data: warehouses = [] } = useGetWarehousesQuery(undefined, {
    refetchOnMountOrArgChange: 30,
  });
  const { data: materialLogs = [] } = useGetMaterialLogsQuery(materialId, {
    skip: isCreateMode,
    refetchOnMountOrArgChange: 30,
  });
  const { data: priceLogs = [] } = useGetPriceLogsQuery(materialId, {
    skip: isCreateMode,
    refetchOnMountOrArgChange: 30,
  });

  if (!isCreateMode && isLoadingMaterial) {
    return (
      <div className="flex min-h-[40vh] items-center justify-center py-12 text-sm text-muted-foreground">Loading material…</div>
    );
  }

  if (!isCreateMode && !material) {
    return (
      <div className="flex min-h-[40vh] items-center justify-center py-12 text-sm text-muted-foreground">Material not found.</div>
    );
  }

  return (
    <MaterialEditor
      key={material?.id ?? 'new'}
      material={material}
      units={units}
      categories={categories}
      warehouses={warehouses}
      materialLogs={materialLogs as unknown as MaterialLogEntry[]}
      priceLogs={priceLogs as unknown as PriceLogEntry[]}
    />
  );
}
