changes in phase 2
This commit is contained in:
parent
093eed99b2
commit
5e61c94f23
@ -146,6 +146,12 @@ const AdminHeader = () => {
|
|||||||
iconActive={configActiveSrc}
|
iconActive={configActiveSrc}
|
||||||
iconInactive={configInactiveSrc}
|
iconInactive={configInactiveSrc}
|
||||||
/>
|
/>
|
||||||
|
<NavItem
|
||||||
|
to="/manufacturing-index"
|
||||||
|
label="Manufacturing Index"
|
||||||
|
iconActive={configActiveSrc}
|
||||||
|
iconInactive={configInactiveSrc}
|
||||||
|
/>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div className="hidden lg:flex items-center gap-3 ml-auto">
|
<div className="hidden lg:flex items-center gap-3 ml-auto">
|
||||||
@ -240,6 +246,12 @@ const AdminHeader = () => {
|
|||||||
iconActive={configActiveSrc}
|
iconActive={configActiveSrc}
|
||||||
iconInactive={configInactiveSrc}
|
iconInactive={configInactiveSrc}
|
||||||
/>
|
/>
|
||||||
|
<NavItem
|
||||||
|
to="/manufacturing-index"
|
||||||
|
label="Manufacturing"
|
||||||
|
iconActive={configActiveSrc}
|
||||||
|
iconInactive={configInactiveSrc}
|
||||||
|
/>
|
||||||
<NavItem
|
<NavItem
|
||||||
to="/admin/users"
|
to="/admin/users"
|
||||||
label="Users"
|
label="Users"
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import React, { useState, useMemo, useEffect } from 'react';
|
import React, { useState, useMemo, useEffect } from 'react';
|
||||||
|
import AdminHeader from '@/components/admin/AdminHeader';
|
||||||
import {
|
import {
|
||||||
IconButton,
|
IconButton,
|
||||||
Dialog,
|
Dialog,
|
||||||
@ -10,8 +11,10 @@ import Table from '@/components/common/Table';
|
|||||||
import {
|
import {
|
||||||
FiberManualRecord as FiberManualRecordIcon,
|
FiberManualRecord as FiberManualRecordIcon,
|
||||||
KeyboardArrowRight as KeyboardArrowRightIcon,
|
KeyboardArrowRight as KeyboardArrowRightIcon,
|
||||||
InfoOutlined as InfoOutlinedIcon
|
InfoOutlined as InfoOutlinedIcon,
|
||||||
|
NavigateNext as NavigateNextIcon
|
||||||
} from '@mui/icons-material';
|
} from '@mui/icons-material';
|
||||||
|
import { Breadcrumbs, Link } from '@mui/material';
|
||||||
import Card from '@/components/common/Card';
|
import Card from '@/components/common/Card';
|
||||||
import { getManufacturingIndex, getManufacturingMonthlyOverview } from '@/services/manufacturingIndex/ManufacturingIndex';
|
import { getManufacturingIndex, getManufacturingMonthlyOverview } from '@/services/manufacturingIndex/ManufacturingIndex';
|
||||||
|
|
||||||
@ -59,12 +62,6 @@ const ManufacturingIndex = () => {
|
|||||||
totalItems: 0
|
totalItems: 0
|
||||||
});
|
});
|
||||||
|
|
||||||
// Month name to number mapping
|
|
||||||
const monthMap = {
|
|
||||||
'Jan': 1, 'Feb': 2, 'Mar': 3, 'Apr': 4,
|
|
||||||
'May': 5, 'Jun': 6, 'Jul': 7, 'Aug': 8,
|
|
||||||
'Sep': 9, 'Oct': 10, 'Nov': 11, 'Dec': 12
|
|
||||||
};
|
|
||||||
|
|
||||||
// Fetch data from API
|
// Fetch data from API
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -348,7 +345,9 @@ const ManufacturingIndex = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-gray-100">
|
<div className="min-h-screen w-full bg-gray-50">
|
||||||
|
<AdminHeader />
|
||||||
|
<div className="max-w-[1280px] mx-auto px-4 py-6">
|
||||||
{/* Popup Dialog */}
|
{/* Popup Dialog */}
|
||||||
<Dialog
|
<Dialog
|
||||||
open={isPopupOpen}
|
open={isPopupOpen}
|
||||||
@ -449,7 +448,19 @@ const ManufacturingIndex = () => {
|
|||||||
</Dialog>
|
</Dialog>
|
||||||
|
|
||||||
{/* Main UI */}
|
{/* Main UI */}
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
|
<div className="w-full py-6">
|
||||||
|
{/* Breadcrumbs */}
|
||||||
|
<nav className="mb-6 text-sm text-[#8F9299] flex items-center gap-2">
|
||||||
|
<Link
|
||||||
|
to="/admin/dashboard"
|
||||||
|
className="font-bold flex items-center gap-1 !text-black no-underline hover:underline hover:!text-black"
|
||||||
|
>
|
||||||
|
Dashboard
|
||||||
|
<img src="/assets/images/Breadcrumb-vector.svg" alt="" className="ml-1 w-3 h-3" />
|
||||||
|
</Link>
|
||||||
|
<span className="text-[#92722A] font-medium">Manufacturing Index</span>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<div className="mb-6">
|
<div className="mb-6">
|
||||||
<Card className="p-6 bg-white rounded-lg shadow">
|
<Card className="p-6 bg-white rounded-lg shadow">
|
||||||
<div className="flex flex-col md:flex-row justify-between items-start md:items-start gap-4">
|
<div className="flex flex-col md:flex-row justify-between items-start md:items-start gap-4">
|
||||||
@ -622,6 +633,7 @@ const ManufacturingIndex = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user