2024-11-05 23:42:59 +05:30
|
|
|
// Dashboard.js
|
|
|
|
|
import React, { useState } from "react";
|
|
|
|
|
import { FaPlus } from "react-icons/fa";
|
|
|
|
|
import PollTableRow from "../components/PollTableRow/PollTableRow";
|
|
|
|
|
|
|
|
|
|
function Dashboard() {
|
|
|
|
|
const [showPollAddForm, setShowPollAddForm] = useState(false);
|
|
|
|
|
|
|
|
|
|
const pollData = [
|
|
|
|
|
{ _id: "1", title: "Poll 1", description: "Description of Poll 1", totalVotes: 120, published: true },
|
|
|
|
|
{ _id: "2", title: "Poll 2", description: "Description of Poll 2", totalVotes: 45, published: false },
|
|
|
|
|
// Add more poll data as needed
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
2024-11-05 23:50:55 +05:30
|
|
|
<div className="flex flex-col lg:flex-row min-h-screen bg-base-200">
|
2024-11-05 23:42:59 +05:30
|
|
|
{showPollAddForm && (
|
|
|
|
|
<div className="fixed inset-0 bg-gray-800 bg-opacity-75 flex items-center justify-center z-50">
|
|
|
|
|
{/* Poll Add Form Component would go here */}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* User Profile Sidebar */}
|
2024-11-05 23:50:55 +05:30
|
|
|
<aside className="w-full lg:w-1/4 bg-slate-800 rounded-md m-4 bg-opacity-50 shadow-lg p-4 flex flex-col items-center">
|
2024-11-05 23:42:59 +05:30
|
|
|
<img
|
|
|
|
|
src="https://via.placeholder.com/150" // Replace with actual path
|
|
|
|
|
alt="User Profile"
|
|
|
|
|
className="rounded-full h-24 w-24 object-cover mb-4"
|
|
|
|
|
/>
|
|
|
|
|
<h2 className="text-2xl font-bold text-center text-white">@manikmaity</h2>
|
|
|
|
|
<p className="mt-2 text-center text-gray-400">manikmaity156@gmail.com</p>
|
|
|
|
|
<button className="btn btn-primary mt-4 w-full">Edit Profile</button>
|
|
|
|
|
<button className="btn btn-error btn-outline mt-4 w-full">Logout</button>
|
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
|
|
{/* Dashboard Main Content */}
|
|
|
|
|
<main className="w-full lg:w-3/4 p-6">
|
|
|
|
|
{/* Dashboard Header */}
|
|
|
|
|
<div className="mb-6">
|
|
|
|
|
<h1 className="text-4xl font-bold text-white">Poll Dashboard</h1>
|
|
|
|
|
<p className="text-lg text-gray-300">Manage your polls, view results, and edit as needed.</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Add New Poll Button */}
|
|
|
|
|
<div className="flex justify-end mb-4">
|
|
|
|
|
<button className="btn btn-primary" onClick={() => setShowPollAddForm(!showPollAddForm)}>
|
|
|
|
|
Add New Poll <FaPlus />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Polls Table */}
|
|
|
|
|
<div className="overflow-x-auto">
|
|
|
|
|
<table className="table w-full bg-gray-800 text-white">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>#</th>
|
|
|
|
|
<th>Title</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
<th>Total Votes</th>
|
|
|
|
|
<th>Published</th>
|
|
|
|
|
<th>Actions</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{pollData.map((poll, index) => (
|
|
|
|
|
<PollTableRow key={poll._id} poll={poll} index={index} /> // Replace with actual path
|
|
|
|
|
))}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Dashboard;
|