// Product data model and mock data store
export interface Product {
id: string;
name: string;
description: string;
price: number;
category: string;
stock: number;
createdAt: string;
updatedAt: string;
}
export interface Order {
orderId: string;
productId: string;
productName: string;
quantity: number;
unitPrice: number;
totalPrice: number;
status: "created" | "processing" | "shipped" | "delivered" | "cancelled";
createdAt: string;
}
// Mock product catalog
export const products: Product[] = [
{
id: "prod-001",
name: "Widget Pro",
description: "Professional-grade widget for enterprise use",
price: 29.99,
category: "electronics",
stock: 150,
createdAt: "2025-01-01T00:00:00Z",
updatedAt: "2025-12-15T10:30:00Z"
},
{
id: "prod-002",
name: "Gadget Plus",
description: "Advanced gadget with smart features",
price: 49.99,
category: "electronics",
stock: 75,
createdAt: "2025-02-15T00:00:00Z",
updatedAt: "2025-11-20T14:45:00Z"
},
{
id: "prod-003",
name: "Tool Master 3000",
description: "Multi-purpose tool for all your needs",
price: 19.99,
category: "tools",
stock: 200,
createdAt: "2025-03-10T00:00:00Z",
updatedAt: "2025-12-01T09:00:00Z"
},
{
id: "prod-004",
name: "Smart Sensor Kit",
description: "IoT sensor kit with cloud connectivity",
price: 89.99,
category: "electronics",
stock: 50,
createdAt: "2025-04-20T00:00:00Z",
updatedAt: "2025-12-10T16:20:00Z"
},
{
id: "prod-005",
name: "Precision Wrench Set",
description: "High-quality wrench set for professionals",
price: 34.99,
category: "tools",
stock: 120,
createdAt: "2025-05-05T00:00:00Z",
updatedAt: "2025-11-28T11:15:00Z"
},
{
id: "prod-006",
name: "Wireless Charger Hub",
description: "Fast charging hub for multiple devices",
price: 59.99,
category: "electronics",
stock: 80,
createdAt: "2025-06-12T00:00:00Z",
updatedAt: "2025-12-05T13:30:00Z"
},
{
id: "prod-007",
name: "Safety Goggles Pro",
description: "Industrial-grade safety goggles",
price: 24.99,
category: "safety",
stock: 300,
createdAt: "2025-07-08T00:00:00Z",
updatedAt: "2025-12-12T08:45:00Z"
},
{
id: "prod-008",
name: "Digital Multimeter",
description: "Professional digital multimeter with auto-ranging",
price: 79.99,
category: "electronics",
stock: 60,
createdAt: "2025-08-22T00:00:00Z",
updatedAt: "2025-11-15T17:00:00Z"
}
];
// Mock orders store (starts empty)
export const orders: Order[] = [];