Operations dashboard screens are added
This commit is contained in:
@@ -36,6 +36,8 @@ import {
|
||||
Cog,
|
||||
} from "lucide-react";
|
||||
|
||||
//Side bar Drop Down menu
|
||||
|
||||
export const SIDEBAR_ITEMS = [
|
||||
{
|
||||
title: "Overview",
|
||||
@@ -126,6 +128,8 @@ export const SIDEBAR_ITEMS = [
|
||||
},
|
||||
];
|
||||
|
||||
//Overview dashboard data
|
||||
|
||||
export const chartData = [
|
||||
{ month: 'J', height: 'h-24' },
|
||||
{ month: 'F', height: 'h-16' },
|
||||
@@ -179,3 +183,23 @@ export const TICKETS_DATA = [
|
||||
{ title: "More water dispensers", type: "Complaint", status: "CLOSED" },
|
||||
];
|
||||
|
||||
//Tabs used in Operations dashboards
|
||||
|
||||
export const equipmentTabs: string[] = [
|
||||
'Equipment Groups',
|
||||
'Site-Wise Equipment',
|
||||
'PPM Checklist',
|
||||
'AMC Checklist',
|
||||
'PPM Schedule',
|
||||
'AMC Schedule',
|
||||
'Maintenance Calendar'
|
||||
];
|
||||
export const helpdeskTtabs: string[] = ['Location', 'Technical',
|
||||
'Missed', 'Departments', 'HSQE'];
|
||||
|
||||
|
||||
export const Reqeusttabs: string[] = [
|
||||
'TFM Requests',
|
||||
'Engineering',
|
||||
'Schedule Complaints'
|
||||
];
|
||||
@@ -2,8 +2,14 @@ import { LucideProps } from "lucide-react";
|
||||
import { ComponentType } from "react";
|
||||
import { colorMap } from "./constant";
|
||||
|
||||
|
||||
|
||||
// Types and interfaces used in login Page
|
||||
export type Step = "login" | "verify" | "forgot";
|
||||
|
||||
export interface AuthLayoutProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export interface Props {
|
||||
onBack?: () => void;
|
||||
@@ -11,6 +17,17 @@ export type Step = "login" | "verify" | "forgot";
|
||||
onForgotPassword?:()=>void;
|
||||
item?: any;
|
||||
}
|
||||
export interface FormProps {
|
||||
label: string;
|
||||
value?: string;
|
||||
type?: string;
|
||||
placeholder?:string
|
||||
}
|
||||
|
||||
|
||||
// Overview dashboard interface used
|
||||
|
||||
|
||||
interface Activity {
|
||||
time: string;
|
||||
text: string;
|
||||
@@ -54,6 +71,7 @@ export interface StatusProgressProps {
|
||||
barColor?: string;
|
||||
}
|
||||
|
||||
// For footer banner
|
||||
export interface InfoBannerProps {
|
||||
boldText?: string;
|
||||
normalText?: string;
|
||||
|
||||
Reference in New Issue
Block a user