161 lines
8.2 KiB
React
161 lines
8.2 KiB
React
import { useState } from 'react'
|
|
import { useQuery } from '@tanstack/react-query'
|
|
import queryKeys from '../../services/queryKeys'
|
|
|
|
import BreadcrumbCom from '../breadcrumb/BreadcrumbCom'
|
|
import TablePaginatedWrapper from '../tableWrapper/TablePaginatedWrapper'
|
|
import Icons from '../Icons'
|
|
import { getUsers } from '../../services/siteServices'
|
|
import getDateTimeFromDateString from '../../helpers/getDateTimeFromDateString'
|
|
// import formatNumber from '../../helpers/formatNumber'
|
|
// import getDateTimeFromDateString from '../../helpers/getDateTimeFromDateString';
|
|
// import formatNumber from '../../helpers/formatNumber'
|
|
// import Avatar from '../../assets/user_avatar.jpg'
|
|
|
|
|
|
export default function UsersAdmin() {
|
|
|
|
const [page, setPage] = useState(1)
|
|
const [filter, setFilter] = useState({type: '', id: ''})
|
|
const [willFilter, setWillFilter] = useState(false)
|
|
|
|
const handleFilter = ({target:{name, value}}) => {
|
|
setFilter(prev => ({...prev, [name]:value}))
|
|
}
|
|
|
|
const handleFilterByParams = () => {
|
|
if(filter.type && !filter.id){
|
|
return
|
|
}else if(!filter.type){
|
|
setPage(1)
|
|
setWillFilter(prev => !prev)
|
|
setFilter({type: '', id: ''})
|
|
}else{
|
|
setPage(1)
|
|
setWillFilter(prev => !prev)
|
|
}
|
|
}
|
|
|
|
const {data, isFetching, isError, error} = useQuery({
|
|
queryKey: [...queryKeys.users_admin, page, willFilter],
|
|
queryFn: () => {
|
|
const filterData = filter?.type ? {[filter?.type]: filter.id} : {}
|
|
const reqData = {
|
|
page,
|
|
...filterData
|
|
}
|
|
return getUsers(reqData)
|
|
},
|
|
staleTime: 0 //0 mins
|
|
})
|
|
const usersData = data?.data?.office_users // USERS LIST
|
|
const pagination = data?.data?.pagination
|
|
console.log('DATA', data?.data)
|
|
|
|
return (
|
|
<div className='w-full flex flex-col gap-8'>
|
|
<BreadcrumbCom title='Users Admin' paths={['Dashboard', 'Admin']} />
|
|
|
|
<div className='box bg-white dark:bg-black-box text-black-body dark:text-white-body'>
|
|
{ isError ?
|
|
<p className='text-red-500'>{error?.message}</p>
|
|
:
|
|
<>
|
|
{/* filter section */}
|
|
<div className='px-2 py-2 mb-4 flex flex-col sm:flex-row flex-wrap sm:items-center gap-2' >
|
|
<Icons name='filter' className='text-3xl' />
|
|
<div className='w-full sm:max-w-48'>
|
|
<select name='type' value={filter?.type} className='h-10 w-full p-2 rounded-md' onChange={handleFilter}>
|
|
<option value=''>All</option>
|
|
<option value='name'>Name</option>
|
|
<option value='username'>Username</option>
|
|
</select>
|
|
</div>
|
|
<div className='w-full sm:max-w-48'>
|
|
<input name='id' value={filter?.id} disabled={!filter.type} className={`h-10 w-full p-2 rounded-md outline-none border border-black-aside ${!filter.type && 'opacity-30'}`} onChange={handleFilter} />
|
|
</div>
|
|
<button onClick={handleFilterByParams} disabled={filter.type && !filter.id} className={`h-10 bg-primary px-2 py-1 rounded-md text-white font-medium sm:self-end ${(filter.type && !filter.id) && 'opacity-50'}`}>Submit</button>
|
|
</div>
|
|
{/* end of filter section */}
|
|
|
|
<TablePaginatedWrapper data={usersData} isFetching={isFetching} setPage={setPage} itemsPerPage={pagination?.limit} pagination={pagination}>
|
|
{({ data }) => (
|
|
<>
|
|
<table className="py-2 w-full text-sm">
|
|
<thead className="py-2 text-sm text-slate-500 text-left">
|
|
<tr>
|
|
<th scope="col" className="px-2 py-2">
|
|
ID
|
|
</th>
|
|
<th scope="col" className="px-2">
|
|
Added
|
|
</th>
|
|
<th scope="col" className="px-2">
|
|
Firstname
|
|
</th>
|
|
<th scope="col" className="px-2">
|
|
Lastname
|
|
</th>
|
|
<th scope="col" className="px-2">
|
|
Username
|
|
</th>
|
|
<th scope="col" className="px-2">
|
|
Acct. Level
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{(data && data.length > 0) ? data?.map((item, index) => (
|
|
<tr key={index} className="py-2 border-t border-dashed border-slate-300">
|
|
<td className="px-2 py-2">
|
|
<div className="text-left">
|
|
<div className="text-base font-semibold">{item?.id}</div>
|
|
</div>
|
|
</td>
|
|
<td className="px-2">
|
|
<div className="">
|
|
<div className="text-base font-semibold">{getDateTimeFromDateString(item?.added)}</div>
|
|
</div>
|
|
</td>
|
|
<td className="px-2">
|
|
<div className="text-left">
|
|
<div className="text-base font-semibold">{item?.firstname}</div>
|
|
</div>
|
|
</td>
|
|
<td className="px-2">
|
|
<div className="">
|
|
<div className="text-base font-semibold">{item?.lastname}</div>
|
|
</div>
|
|
</td>
|
|
<td className="px-2">
|
|
<div className="text-left">
|
|
<div className="text-base font-semibold">{item?.username}</div>
|
|
</div>
|
|
</td>
|
|
<td className="px-2">
|
|
<div className="text-left">
|
|
<div className="text-base font-semibold">{item?.acc_level}</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
))
|
|
:
|
|
<tr className="py-2 border-t border-dashed border-slate-300">
|
|
<td className="px-3 py-2" colSpan={6}>
|
|
<div className="flex justify-center items-center">
|
|
No Record Found
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</>
|
|
)}
|
|
</TablePaginatedWrapper>
|
|
</>
|
|
}
|
|
</div>
|
|
</div>
|
|
)
|
|
} |