Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add admin dashboard #812

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 77 additions & 42 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

173 changes: 173 additions & 0 deletions frontend/src/AgroRentAI/RentAdminDashboard.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
import React, { useState, useEffect } from 'react';
import { Plus, Edit, Trash, BarChart, Bell } from 'lucide-react';

const RentAdminDashboard = () => {
const [products, setProducts] = useState([]);
const [orders, setOrders] = useState([]);
const [users, setUsers] = useState([]);
const [analytics, setAnalytics] = useState({
popularProducts: [],
revenue: '$0',
rentalFrequency: [],
userBehavior: [],
});

// Fetch data
useEffect(() => {
const fetchData = async () => {
const productData = await fetchProducts();
const orderData = await fetchOrders();
const userData = await fetchUsers();
const analyticsData = await fetchAnalytics();

setProducts(productData);
setOrders(orderData);
setUsers(userData);
setAnalytics(analyticsData);
};

fetchData();
}, []);

// Mock API calls
const fetchProducts = async () => {
return [
{ id: 1, name: 'Tractor', price: '$300', category: 'Heavy Machinery', availability: 'In Stock' },
{ id: 2, name: 'Lawn Mower', price: '$100', category: 'Gardening', availability: 'In Stock' },
];
};

const fetchOrders = async () => {
return [
{ id: 1, item: 'Tractor', user: 'John Doe', status: 'Pending Approval', returnDate: '2024-12-01' },
{ id: 2, item: 'Lawn Mower', user: 'Jane Smith', status: 'Active', returnDate: '2024-11-15' },
];
};

const fetchUsers = async () => {
return [
{ id: 1, name: 'John Doe', email: 'john@example.com', feedback: 'Excellent service!' },
{ id: 2, name: 'Jane Smith', email: 'jane@example.com', feedback: 'Very helpful!' },
];
};

const fetchAnalytics = async () => {
return {
popularProducts: ['Tractor', 'Lawn Mower'],
revenue: '$1200',
rentalFrequency: ['Daily', 'Weekly'],
userBehavior: ['Frequently rented Tractor and Plow'],
};
};

const handleAddProduct = () => {
// Add product logic
};

const handleUpdateProduct = (id) => {
// Update product logic
};

const handleDeleteProduct = (id) => {
setProducts(products.filter((product) => product.id !== id));
};

const handleOrderApproval = (id) => {
setOrders(orders.map((order) => (order.id === id ? { ...order, status: 'Approved' } : order)));
};

const handleSendNotification = () => {
// Send notification logic
};

return (
<div className="min-h-screen bg-gray-100 p-8">
<h1 className="text-3xl font-extrabold tracking-tight text-green-900 mb-8 mt-16">Admin Dashboard</h1>

{/* Product Management Section */}
<div className="bg-gradient-to-r from-green-50 to-green-100 rounded-lg shadow-lg p-6 mb-8">
<h2 className="text-2xl text-center text-green-500 font-bold mb-4">Product Management</h2>
<button onClick={handleAddProduct} className="inline-block bg-green-600 text-white px-6 py-3 rounded-md hover:bg-green-500 transition-colors duration-300 mb-4">
<Plus className="inline w-4 h-4 mr-1" /> Add Product
</button>
<div>
{products.map((product) => (
<div key={product.id} className="flex justify-between items-center border-b py-4">
<div>
<p className="text-lg text-green-700">{product.name}</p>
<p className="text-green-600">{product.price} - {product.category} - {product.availability}</p>
</div>
<div className="flex items-center">
<button onClick={() => handleUpdateProduct(product.id)} className="bg-green-600 text-white px-3 py-2 rounded-md hover:bg-green-500 transition-colors duration-300 mr-2">
<Edit className="w-4 h-4" /> Edit
</button>
<button onClick={() => handleDeleteProduct(product.id)} className="bg-red-600 text-white px-3 py-2 rounded-md hover:bg-red-500 transition-colors duration-300">
<Trash className="w-4 h-4" /> Delete
</button>
</div>
</div>
))}
</div>
</div>

{/* Order Management Section */}
<div className="bg-gradient-to-r from-green-50 to-green-100 rounded-lg shadow-lg p-6 mb-8">
<h2 className="text-2xl text-center text-green-500 font-bold mb-4">Order Management</h2>
<div>
{orders.map((order) => (
<div key={order.id} className="flex justify-between items-center border-b py-4">
<div>
<p className="text-lg text-green-700">{order.item}</p>
<p className="text-green-600">User: {order.user} - Status: {order.status} - Return Date: {order.returnDate}</p>
</div>
<button onClick={() => handleOrderApproval(order.id)} className="inline-block bg-green-600 text-white px-6 py-3 rounded-md hover:bg-green-500 transition-colors duration-300">
Approve
</button>
</div>
))}
</div>
</div>

{/* User Management Section */}
<div className="bg-gradient-to-r from-green-50 to-green-100 rounded-lg shadow-lg p-6 mb-8">
<h2 className="text-2xl text-center text-green-500 font-bold mb-4">User Management</h2>
<div>
{users.map((user) => (
<div key={user.id} className="flex justify-between items-center border-b py-4">
<div>
<p className="text-lg text-green-700">{user.name}</p>
<p className="text-green-600">Email: {user.email}</p>
<p className="text-green-600">Feedback: {user.feedback}</p>
</div>
</div>
))}
</div>
</div>

{/* Analytics & Reporting Section */}
<div className="bg-gradient-to-r from-green-50 to-green-100 rounded-lg shadow-lg p-6 mb-8">
<h2 className="text-2xl text-center text-green-500 font-bold mb-4">Analytics & Reporting</h2>
<div>
<p className="text-lg text-green-700">Revenue: {analytics.revenue}</p>
<p className="text-green-700">Popular Products: {analytics.popularProducts.join(', ')}</p>
<p className="text-green-700">Rental Frequency: {analytics.rentalFrequency.join(', ')}</p>
<p className="text-green-700">User Behavior: {analytics.userBehavior.join(', ')}</p>
<button className="bg-green-600 text-white px-6 py-3 mt-4 rounded-md hover:bg-green-500 transition-colors duration-300">
<BarChart className="inline w-4 h-4 mr-1" /> View Detailed Report
</button>
</div>
</div>

{/* Notifications Section */}
<div className="bg-gradient-to-r from-green-50 to-green-100 rounded-lg shadow-lg p-6 mb-8">
<h2 className="text-2xl text-center text-green-500 font-bold mb-4">Notifications</h2>
<p className="text-green-600">Send reminders and alerts to users.</p>
<button onClick={handleSendNotification} className="inline-block bg-green-600 text-white px-6 py-3 mt-4 rounded-md hover:bg-green-500 transition-colors duration-300">
<Bell className="inline w-4 h-4 mr-1" /> Send Notifications
</button>
</div>
</div>
);
};

export default RentAdminDashboard;
4 changes: 3 additions & 1 deletion frontend/src/MainContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import ElectricalElectronicsShops from './components/ElectricalElectronicsShops'
import HeroSectionRent from './AgroRentAI/HeroSectionRent';
import NavigateProducts from './AgroRentAI/NavigateProducts';
import RentUserDashboard from './AgroRentAI/RentUserDashboard';
import RentAdminDashboard from './AgroRentAI/RentAdminDashboard';
//AgroShopAI
import HomeShop from './AgroShopAI/pages/HomeShop';
import ShopFooter from './AgroShopAI/components/ShopFooter';
Expand Down Expand Up @@ -142,6 +143,7 @@ const MainContent = () => {
<Route path="/NavigateProducts" element={<NavigateProducts />} />
<Route path="/AgriProducts" element={<AgriProductListing/>} />
<Route path="/RentUserDashboard" element={<RentUserDashboard/>} />
<Route path="/RentAdminDashboard" element={<RentAdminDashboard/>} />
<Route path="*" element={<NotFound />} />
{/* AgroShopAI Routes */}
<Route path="/AgroShop" element={<HomeShop/>} />
Expand All @@ -152,7 +154,7 @@ const MainContent = () => {
<Route path="/AgroShop/Wishlist" element={<Wishlist/>} />
<Route path="/AgroShop/Profile" element={<ShopProfile/>} />
{/* Footer Links */}
<Route path="/AgroShop/cancellation-return" element={<CancelAndReturnPolicy/>} />
<Route path="/AgroShop/cancellation-return" element={<CancelAndReturnPolicy/>} />~
<Route path="/AgroShop/terms-of-use" element={<TermsOfUse/>} />
</Routes>
{checkShop ? <ShopFooter/> : <Footer/>}
Expand Down
Loading