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

Fix: Update Trainee Dashboard #528

Merged
merged 1 commit into from
Nov 20, 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
200 changes: 197 additions & 3 deletions package-lock.json

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

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"homepage": "https://github.com/atlp-rwanda/atlp-pulse-fn#readme",
"dependencies": {
"@babel/preset-react": "^7.22.5",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
Expand All @@ -44,8 +44,10 @@
"@heroicons/react": "^1.0.6",
"@iconify/react": "^3.2.2",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.14.0",
"@mui/material": "^5.16.7",
"@mui/styled-engine": "^5.13.2",
"@mui/styled-engine-sc": "^6.1.3",
"@mui/x-charts": "^7.19.0",
"@mui/x-data-grid": "^5.17.26",
"@react-pdf-viewer/core": "^3.12.0",
"@tanstack/react-table": "^8.20.5",
Expand Down Expand Up @@ -110,6 +112,7 @@
"recharts": "^2.13.3",
"sheetjs-style": "^0.15.8",
"sinon": "^14.0.2",
"styled-components": "^6.1.13",
"subscriptions-transport-ws": "^0.11.0",
"tailwindcss": "^3.3.3",
"url-polyfill": "^1.1.12",
Expand Down
2 changes: 1 addition & 1 deletion src/components/DashHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function DashHeader() {
</div>
<div className="flex items-center h-full lg:w-full">
<Link
to="/super-admin"
to="/"
className="flex flex-row lg:px-5 text-dark dark:text-dark-text-fill"
>
<LogoIcon />
Expand Down
19 changes: 11 additions & 8 deletions src/components/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,24 @@ function DataTable({ data, columns, title, loading, className }: TableData) {

return (
<div
className={`relative font-serif bg-indigo-100 dark:bg-dark-bg shadow-lg h-fit px-5 py-8 rounded-md w-[100%] overflow-scroll "lg:ml-60 mx-auto"} mb-10 ${className}`}
className={`relative font-serif bg-indigo-100 dark:bg-dark-bg shadow-lg h-fit px-5 md:py-4 lg:py-5 rounded-md w-[100%] overflow-auto custom-scrollbar "lg:ml-60 mx-auto"} lg:mb-10 ${className}`}
>
<div className="flex flex-col md:flex-row items-center justify-between pb-6 space-y-4 md:space-y-0">
<div>
<h2 className="text-lg md:text-xl font-semibold text-gray-800 dark:text-white">
{t(title)}
</h2>
<input
{/* Uncomment if you want a filter input */}
{/* <input
value={filterInput}
aria-label="Filter table data"
placeholder="Filter"
className="px-4 py-2 mt-4 font-sans text-xs md:text-sm border rounded outline-none border-primary dark:bg-neutral-600 dark:text-white w-full sm:w-52 md:w-96"
onChange={handleFilterChange}
/>
/> */}
</div>
</div>
<div className="overflow-x-auto">
<div className="overflow-x-auto custom-scrollbar">
<table
className="min-w-full leading-normal text-xs md:text-sm"
{...getTableProps()}
Expand All @@ -94,7 +95,9 @@ function DataTable({ data, columns, title, loading, className }: TableData) {
<tr {...headerGroup.getHeaderGroupProps()} key={headerGroup.id}>
{headerGroup.headers.map((column) => (
<th
className={`thead ${column.isSorted ? 'sort-asc' : ''}`}
className={`thead w-1/${columns.length} text-center ${
column.isSorted ? 'sort-asc' : ''
}`}
{...column.getHeaderProps(column.getSortByToggleProps())}
key={column.id}
>
Expand All @@ -113,15 +116,15 @@ function DataTable({ data, columns, title, loading, className }: TableData) {
<tr
className={`border-b dark:border-gray-700 ${
row.index % 2 === 0
? 'bg-light-bg dark:bg-neutral-600'
: 'bg-white dark:bg-dark-bg'
? 'bg-gray-600 dark:bg-neutral-600'
: 'bg-transparent'
}`}
{...row.getRowProps()}
key={row.id}
>
{row.cells.map((cell) => (
<td
className="data-cell px-4 py-2"
className={`w-1/${columns.length} data-cell px-4 py-2 text-center`}
{...cell.getCellProps()}
key={cell.column.id}
>
Expand Down
Loading
Loading