import { Building2, ChevronDown, ChevronUp, CirclePause, DollarSign, Funnel, PickaxeIcon, RefreshCw, UserIcon, UsersIcon, Wrench, } from "lucide-react"; import moment from "moment-jalaali"; import { useCallback, useEffect, useRef, useState } from "react"; import toast from "react-hot-toast"; import { Badge } from "~/components/ui/badge"; import { BaseCard } from "~/components/ui/base-card"; import { Button } from "~/components/ui/button"; import { Card, CardContent } from "~/components/ui/card"; import { Checkbox } from "~/components/ui/checkbox"; import { CustomBarChart } from "~/components/ui/custom-bar-chart"; import { Dialog, DialogContent, DialogHeader, DialogTitle, } from "~/components/ui/dialog"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "~/components/ui/table"; import apiService from "~/lib/api"; import { formatNumber } from "~/lib/utils"; import { DashboardLayout } from "../layout"; moment.loadPersian({ usePersianDigits: true }); interface ProcessInnovationData { project_no: string; project_id: string; title: string; project_status: string; project_rating: string; reduce_prevention_production_stops: string; throat_removal: string; amount_currency_reduction: string; Reduce_rate_failure: string; observer: string; // optional detailed fields returned by API project_description?: string; start_date?: string; done_date?: string; approved_budget?: string; } interface ProjectStats { average_project_score: string; count_innovation_process_projects: number; count_throat_removal: number; percent_reducing_breakdowns: string; percent_reduction_value_currency: string; percent_sum_stopping_production: string; percent_throat_removal: string; sum_reducing_breakdowns: number; sum_reduction_value_currency: number; sum_stopping_production: number; } interface SortConfig { field: string; direction: "asc" | "desc"; } enum projectStatus { propozal = "پروپوزال", contract = "پیشنویس قرارداد", inprogress = "در حال انجام", stop = "متوقف شده", mafasa = "مرحله مفاصا", finish = "پایان یافته", } interface InnovationStats { totalProjects: number; averageScore: number; productionStopsPreventionSum: number; // مجموع جلوگیری از توقفات تولید bottleneckRemovalCount: number; // تعداد رفع گلوگاه currencyReductionSum: number; // مجموع کاهش ارز بری (میلیون ریال) frequentFailuresReductionSum: number; // مجموع کاهش خرابی های پرتکرار percentProductionStops: number | string; // درصد مقایسه‌ای جلوگیری از توقفات تولید percentBottleneckRemoval: number | string; // درصد مقایسه‌ای رفع گلوگاه percentCurrencyReduction: number | string; // درصد مقایسه‌ای کاهش ارز بری percentFailuresReduction: number | string; // درصد مقایسه‌ای کاهش خرابی‌های پرتکرار } const columns = [ { key: "select", label: "", sortable: false, width: "50px" }, { key: "project_no", label: "شماره پروژه", sortable: true, width: "140px" }, { key: "title", label: "عنوان پروژه", sortable: true, width: "400px" }, { key: "project_status", label: "وضعیت پروژه", sortable: true, width: "140px", }, { key: "project_rating", label: "امتیاز پروژه", sortable: true, width: "140px", }, { key: "details", label: "جزئیات پروژه", sortable: false, width: "140px" }, ]; export function ProcessInnovationPage() { const [projects, setProjects] = useState([]); const [loading, setLoading] = useState(false); const [loadingMore, setLoadingMore] = useState(false); const [currentPage, setCurrentPage] = useState(1); const [pageSize] = useState(20); const [hasMore, setHasMore] = useState(true); const [totalCount, setTotalCount] = useState(0); const [actualTotalCount, setActualTotalCount] = useState(0); const [statsLoading, setStatsLoading] = useState(false); const [stats, setStats] = useState({ totalProjects: 0, averageScore: 0, productionStopsPreventionSum: 0, bottleneckRemovalCount: 0, currencyReductionSum: 0, frequentFailuresReductionSum: 0, percentProductionStops: 0, percentBottleneckRemoval: 0, percentCurrencyReduction: 0, percentFailuresReduction: 0, }); const [sortConfig, setSortConfig] = useState({ field: "start_date", direction: "asc", }); const [selectedProjects, setSelectedProjects] = useState>( new Set() ); const [detailsDialogOpen, setDetailsDialogOpen] = useState(false); const [selectedProjectDetails, setSelectedProjectDetails] = useState(null); const [stateCard, setStateCard] = useState({ productionstopsprevention: { id: "productionstopsprevention", title: "جلوگیری از توقفات تولید", value: formatNumber( stats.productionStopsPreventionSum.toFixed?.(1) ?? stats.productionStopsPreventionSum ), description: "تن افزایش یافته", icon: CirclePause, color: "text-pr-green", }, bottleneckremoval: { id: "bottleneckremoval", title: "رفع گلوگاه", value: formatNumber(stats.bottleneckRemovalCount), description: "تعداد رفع گلوگاه", icon: Funnel, color: "text-pr-green", }, currencyreduction: { id: "currencyreduction", title: "کاهش ارز بری", value: formatNumber( stats.currencyReductionSum.toFixed?.(0) ?? stats.currencyReductionSum ), description: "دلار کاهش یافته", icon: DollarSign, color: "text-pr-green", }, frequentfailuresreduction: { id: "frequentfailuresreduction", title: "کاهش خرابی های پرتکرار", value: formatNumber( stats.frequentFailuresReductionSum.toFixed?.(1) ?? stats.frequentFailuresReductionSum ), description: "مجموع درصد کاهش خرابی", icon: Wrench, color: "text-pr-green", }, }); const observerRef = useRef(null); const fetchingRef = useRef(false); // Selection handlers const handleSelectAll = () => { if (selectedProjects.size === projects.length) { setSelectedProjects(new Set()); } else { setSelectedProjects(new Set(projects.map((p) => p.project_no))); } }; const handleSelectProject = (projectNo: string) => { const newSelected = new Set(selectedProjects); if (newSelected.has(projectNo)) { newSelected.delete(projectNo); } else { newSelected.add(projectNo); } setSelectedProjects(newSelected); }; const handleProjectDetails = (project: ProcessInnovationData) => { setSelectedProjectDetails(project); setDetailsDialogOpen(true); }; // Stats cards data - computed from projects data const fetchProjects = async (reset = false) => { if (fetchingRef.current) { return; } try { fetchingRef.current = true; if (reset) { setLoading(true); setCurrentPage(1); } else { setLoadingMore(true); } const pageToFetch = reset ? 1 : currentPage; const response = await apiService.select({ ProcessName: "project", OutputFields: [ "project_no", "project_id", "title", "project_status", "project_rating", "throat_removal", "reduce_prevention_production_stops", "amount_currency_reduction", "Reduce_rate_failure", "project_description", "start_date", "done_date", "approved_budget", "observer", ], Sorts: [["start_date", "asc"]], Conditions: [["type_of_innovation", "=", "نوآوری در فرآیند"]], Pagination: { PageNumber: pageToFetch, PageSize: pageSize }, }); if (response.state === 0) { const dataString = response.data; if (dataString && typeof dataString === "string") { try { const parsedData = JSON.parse(dataString); if (Array.isArray(parsedData)) { if (reset) { setProjects(parsedData); setTotalCount(parsedData.length); } else { setProjects((prev) => [...prev, ...parsedData]); setTotalCount((prev) => prev + parsedData.length); } setHasMore(parsedData.length === pageSize); } else { if (reset) { setProjects([]); setTotalCount(0); } setHasMore(false); } } catch (parseError) { console.error("Error parsing project data:", parseError); if (reset) { setProjects([]); setTotalCount(0); } setHasMore(false); } } else { if (reset) { setProjects([]); setTotalCount(0); } setHasMore(false); } } else { toast.error(response.message || "خطا در دریافت اطلاعات پروژه‌ها"); if (reset) { setProjects([]); setTotalCount(0); } setHasMore(false); } } catch (error) { console.error("Error fetching projects:", error); toast.error("خطا در دریافت اطلاعات پروژه‌ها"); if (reset) { setProjects([]); setTotalCount(0); } setHasMore(false); } finally { setLoading(false); setLoadingMore(false); fetchingRef.current = false; } }; const loadMore = useCallback(() => { if (hasMore && !loading) { setCurrentPage((prev) => prev + 1); } }, [hasMore, loading]); useEffect(() => { fetchProjects(true); fetchTotalCount(); }, [sortConfig]); useEffect(() => { fetchStats(); }, [selectedProjects]); useEffect(() => { if (currentPage > 1) { fetchProjects(false); } }, [currentPage]); useEffect(() => { const scrollContainer = document.querySelector(".overflow-auto"); const handleScroll = () => { if (!scrollContainer || !hasMore) return; const { scrollTop, scrollHeight, clientHeight } = scrollContainer; const scrollPercentage = (scrollTop + clientHeight) / scrollHeight; if (scrollPercentage == 1) { loadMore(); } }; if (scrollContainer) { scrollContainer.addEventListener("scroll", handleScroll); } return () => { if (scrollContainer) { scrollContainer.removeEventListener("scroll", handleScroll); } }; }, [loadMore, hasMore, loadingMore]); const handleSort = (field: string) => { fetchingRef.current = false; setSortConfig((prev) => ({ field, direction: prev.field === field && prev.direction === "asc" ? "desc" : "asc", })); setCurrentPage(1); setProjects([]); setHasMore(true); }; const fetchTotalCount = async () => { try { const response = await apiService.select({ ProcessName: "project", OutputFields: ["count(project_no)"], Conditions: [["type_of_innovation", "=", "نوآوری در فرآیند"]], }); if (response.state === 0) { const dataString = response.data; if (dataString && typeof dataString === "string") { try { const parsedData = JSON.parse(dataString); if (Array.isArray(parsedData) && parsedData[0]) { const count = parsedData[0].project_no_count || 0; setActualTotalCount(count); // Keep stats in sync if backend stats not yet loaded setStats((prev) => ({ ...prev, totalProjects: count })); } } catch (parseError) { console.error("Error parsing count data:", parseError); } } } } catch (error) { console.error("Error fetching total count:", error); } }; // Fetch aggregated stats from backend call API (innovation_process_function) const fetchStats = async () => { try { setStatsLoading(true); const raw = await apiService.call({ innovation_process_function: { project_ids: selectedProjects.size > 0 ? Array.from(selectedProjects).join(" , ") : "", }, }); let payload: any = raw?.data; if (typeof payload === "string") { try { payload = JSON.parse(payload); } catch {} } const parseNum = (v: unknown): any => { const convertNumber = typeof v === "number" ? Math.max(0, v) : 0; if (v == null) return 0; if (typeof v === "number") return convertNumber; if (typeof v === "string") { const cleaned = v.replace(/,/g, "").trim(); const n = parseFloat(cleaned); return isNaN(n) ? 0 : convertNumber; } return 0; }; const data: Array = JSON.parse( payload?.innovation_process_function ); const stats = data[0]; const normalized: InnovationStats = { totalProjects: parseNum(stats?.count_innovation_process_projects), averageScore: parseFloat(data[0].average_project_score), productionStopsPreventionSum: parseNum(stats?.sum_stopping_production), bottleneckRemovalCount: parseNum(stats?.count_throat_removal), currencyReductionSum: parseNum(stats?.sum_reduction_value_currency), frequentFailuresReductionSum: parseNum(stats?.sum_reducing_breakdowns), percentProductionStops: stats?.percent_sum_stopping_production, percentBottleneckRemoval: stats?.percent_throat_removal, percentCurrencyReduction: stats?.percent_reduction_value_currency, percentFailuresReduction: stats?.percent_reducing_breakdowns, }; setStateCard((prev) => ({ ...prev, bottleneckremoval: { ...prev.bottleneckremoval, value: formatNumber(normalized.bottleneckRemovalCount), }, productionstopsprevention: { ...prev.productionstopsprevention, value: formatNumber(normalized.productionStopsPreventionSum), }, frequentfailuresreduction: { ...prev.frequentfailuresreduction, value: formatNumber(normalized.frequentFailuresReductionSum), }, currencyreduction: { ...prev.currencyreduction, value: formatNumber(normalized.currencyReductionSum), }, })); setStats(normalized); } catch (error) { console.error("Error fetching stats:", error); } finally { setStatsLoading(false); } }; const formatCurrency = (amount: string | number) => { if (!amount) return "0 ریال"; const numericAmount = typeof amount === "string" ? parseFloat(amount.replace(/,/g, "")) : amount; if (isNaN(numericAmount)) return "0 ریال"; return new Intl.NumberFormat("fa-IR").format(numericAmount) + " ریال"; }; const statusColor = (status: projectStatus): any => { let el = null; switch (status) { case projectStatus.contract: el = "teal"; break; case projectStatus.finish: el = "info"; break; case projectStatus.stop: el = "warning"; break; case projectStatus.inprogress: el = "teal"; break; case projectStatus.mafasa: el = "destructive"; break; case projectStatus.propozal: el = "info"; } return el; }; const renderCellContent = (item: ProcessInnovationData, column: any) => { const value = item[column.key as keyof ProcessInnovationData]; switch (column.key) { case "select": return ( handleSelectProject(item.project_id)} className="data-[state=checked]:bg-pr-green data-[state=checked]:border-pr-green" /> ); case "details": return ( ); case "amount_currency_reduction": return ( {formatCurrency(String(value))} ); case "project_no": return ( {String(value)} ); case "title": return ( {String(value)} ); case "project_status": return (
{String(value)}
); case "project_rating": return ( {formatNumber(String(value))} ); case "reduce_prevention_production_stops": case "throat_removal": case "Reduce_rate_failure": return ( {formatNumber(String(value))} ); default: return {String(value) || "-"}; } }; return (
{/* Stats Cards */}
{/* Stats Grid */}
{loading || statsLoading ? // Loading skeleton for stats cards - matching new design Array.from({ length: 4 }).map((_, index) => (
)) : Object.entries(stateCard).map(([key, card]) => { // map percent values for each card key const percentMap: Record< string, number | string | undefined > = { productionstopsprevention: stats.percentProductionStops, bottleneckremoval: stats.percentBottleneckRemoval, currencyreduction: stats.percentCurrencyReduction, frequentfailuresreduction: stats.percentFailuresReduction, }; const percentValue = percentMap[key]; return (

{card.value}

{card.description}
); })}
{/* Process Impacts Chart */} {/* نمودار با الگوریتم Nice Numbers: مثلاً اگر داده‌ها [10, 35, 63, 18] باشند: - حداکثر: 63، با حاشیه 5% = 66.15 - Nice Max: 75 (گرد و خوانا) - Ticks: [0, 20, 40, 60, 75] این باعث می‌شود نمودار زیباتر و خوانا‌تر باشد */}
{/* Data Table */}
{columns.map((column) => ( {column.key === "select" ? (
) : column.sortable ? ( ) : ( column.label )}
))}
{loading ? ( // Skeleton loading rows (compact) Array.from({ length: 10 }).map((_, index) => ( {columns.map((column) => (
))} )) ) : projects.length === 0 ? ( هیچ پروژه‌ای یافت نشد ) : ( projects.map((project, index) => ( {columns.map((column) => ( {renderCellContent(project, column)} ))} )) )}
{/* Infinite scroll trigger */}
{loadingMore && (
)}
{/* Footer */}
کل پروژه ها :{formatNumber(actualTotalCount)}
میانگین :‌
{formatNumber(((stats.averageScore ?? 0) as number) ?? 0)}
{/* Project Details Dialog */} شرح پروژه
{/* Project Description */}

{selectedProjectDetails?.title}

{selectedProjectDetails?.project_description || "-"}

{/* Project Details */}
جزئیات پروژه

زمان شروع:

{selectedProjectDetails?.start_date ? moment( selectedProjectDetails?.start_date, "YYYY-MM-DD" ).format("YYYY/MM/DD") : "-"}

زمان پایان:

{selectedProjectDetails?.done_date ? moment( selectedProjectDetails?.done_date, "YYYY-MM-DD" ).format("YYYY/MM/DD") : "-"}

هزینه برآورد شده:

{selectedProjectDetails?.approved_budget ? formatNumber( Number( selectedProjectDetails.approved_budget.replaceAll( ",", "" ) ) ) : "-"}

نفر مرتبط:

{selectedProjectDetails?.observer || "-"}
); }