Compare commits

...

3 Commits

Author SHA1 Message Date
victorAnumudu 2eb39b773a loan started list display 2024-05-03 10:48:00 +01:00
victorAnumudu 4e97119644 initial commit 2024-05-03 04:49:59 +01:00
ameye 7bc39a449c Merge branch 'login-new-api' of DigiFi/digifi-bko into master 2024-05-02 16:59:18 +00:00
11 changed files with 67 additions and 34 deletions
+2 -2
View File
@@ -75,7 +75,7 @@ function groupingOnSelect(
function groupingOnSelectAll<T>( function groupingOnSelectAll<T>(
isAllSelected: boolean, isAllSelected: boolean,
setSelected: Dispatch<SetStateAction<Array<ID>>>, setSelected: Dispatch<SetStateAction<Array<ID>>>,
data?: Array<T & {id?: ID}> data?: Array<T & {uid?: ID}>
) { ) {
if (isAllSelected) { if (isAllSelected) {
setSelected([]) setSelected([])
@@ -86,7 +86,7 @@ function groupingOnSelectAll<T>(
return return
} }
setSelected(data.filter((item) => item.id).map((item) => item.id)) setSelected(data.filter((item) => item.uid).map((item) => item.uid))
} }
// Hook // Hook
+2 -1
View File
@@ -1,6 +1,6 @@
import {Dispatch, SetStateAction} from 'react' import {Dispatch, SetStateAction} from 'react'
export type ID = undefined | null | number export type ID = undefined | null | number | string
export type PaginationState = { export type PaginationState = {
page: number page: number
@@ -23,6 +23,7 @@ export type SearchState = {
export type Response<T> = { export type Response<T> = {
data?: T data?: T
records?: Array<any>
payload?: { payload?: {
message?: string message?: string
errors?: { errors?: {
+18
View File
@@ -0,0 +1,18 @@
export function NewDateTimeFormatter(isoDateString:any, addHour = true) {
const date = new Date(isoDateString);
if (addHour) {
date.setTime(date.getTime() + 1 * 60 * 60 * 1000);
}
const formattedDate = date.toLocaleDateString("en-US", {
year: "numeric",
month: "numeric",
day: "numeric",
hour: "2-digit",
minute: "2-digit",
// second: "2-digit",
hour12: true,
timeZone: "UTC",
});
return formattedDate;
}
@@ -54,7 +54,7 @@ const useQueryResponseData = () => {
return [] return []
} }
return response?.data || [] return response?.records || []
} }
const useQueryResponsePagination = () => { const useQueryResponsePagination = () => {
@@ -11,7 +11,7 @@ import {KTCardBody} from '../../../../../../_digifi/helpers'
const UsersTable = () => { const UsersTable = () => {
const users = useQueryResponseData() const users = useQueryResponseData()
console.log('users', users) // console.log('users', users)
const isLoading = useQueryResponseLoading() const isLoading = useQueryResponseLoading()
const data = useMemo(() => users, [users]) const data = useMemo(() => users, [users])
const columns = useMemo(() => usersColumns, []) const columns = useMemo(() => usersColumns, [])
@@ -0,0 +1,12 @@
import {FC} from 'react'
import { NewDateTimeFormatter } from '../../../../../../../_digifi/lib/NewDateTimeFormatter'
type Props = {
added?: string
}
const AddedCell: FC<Props> = ({added}) => (
<div className='badge badge-light fw-bolder'>{NewDateTimeFormatter((added))}</div>
)
export {AddedCell}
@@ -0,0 +1,11 @@
import {FC} from 'react'
type Props = {
agent?: string
}
const AgentCell: FC<Props> = ({agent}) => (
<> {agent && <div className='badge badge-light-success fw-bolder'>{agent}</div>}</>
)
export {AgentCell}
@@ -25,14 +25,14 @@ const UserInfoCell: FC<Props> = ({user}) => (
`text-${user.initials?.state}` `text-${user.initials?.state}`
)} )}
> >
{user.initials?.label} {user.firstname?.substring(0,1).toUpperCase()} {user.lastname?.substring(0,1).toUpperCase()}
</div> </div>
)} )}
</a> </a>
</div> </div>
<div className='d-flex flex-column'> <div className='d-flex flex-column'>
<a href='#' className='text-gray-800 text-hover-primary mb-1'> <a href='#' className='text-gray-800 text-hover-primary mb-1'>
{user.name} {user.firstname} {user.lastname}
</a> </a>
<span>{user.email}</span> <span>{user.email}</span>
</div> </div>
@@ -1,11 +1,11 @@
import {FC} from 'react' import {FC} from 'react'
type Props = { type Props = {
last_login?: string payment_month?: string
} }
const UserLastLoginCell: FC<Props> = ({last_login}) => ( const PaymentMonthCell: FC<Props> = ({payment_month}) => (
<div className='badge badge-light fw-bolder'>{last_login}</div> <div className='badge badge-light fw-bolder'>{payment_month}</div>
) )
export {UserLastLoginCell} export {PaymentMonthCell}
@@ -1,11 +0,0 @@
import {FC} from 'react'
type Props = {
two_steps?: boolean
}
const UserTwoStepsCell: FC<Props> = ({two_steps}) => (
<> {two_steps && <div className='badge badge-light-success fw-bolder'>Enabled</div>}</>
)
export {UserTwoStepsCell}
@@ -1,55 +1,57 @@
import {Column} from 'react-table' import {Column} from 'react-table'
import {UserInfoCell} from './UserInfoCell' import {UserInfoCell} from './UserInfoCell'
import {UserLastLoginCell} from './UserLastLoginCell' import { PaymentMonthCell } from './UserLastLoginCell'
import {UserTwoStepsCell} from './UserTwoStepsCell' import {AgentCell} from './AgentCell'
import {UserActionsCell} from './UserActionsCell' import {UserActionsCell} from './UserActionsCell'
import {UserSelectionCell} from './UserSelectionCell' import {UserSelectionCell} from './UserSelectionCell'
import {UserCustomHeader} from './UserCustomHeader' import {UserCustomHeader} from './UserCustomHeader'
import {UserSelectionHeader} from './UserSelectionHeader' import {UserSelectionHeader} from './UserSelectionHeader'
import {User} from '../../core/_models' import {User} from '../../core/_models'
import { AddedCell } from './AddedCell'
const usersColumns: ReadonlyArray<Column<User>> = [ const usersColumns: ReadonlyArray<Column<User>> = [
{ {
Header: (props) => <UserSelectionHeader tableProps={props} />, Header: (props) => <UserSelectionHeader tableProps={props} />,
id: 'selection', id: 'selection',
Cell: ({...props}) => <UserSelectionCell id={props.data[props.row.index].id} />, Cell: ({...props}) => <UserSelectionCell id={props.data[props.row.index].uid} />,
}, },
{ {
Header: (props) => <UserCustomHeader tableProps={props} title='Name' className='min-w-125px' />, Header: (props) => <UserCustomHeader tableProps={props} title='Name' className='min-w-125px' />,
id: 'name', id: 'firstname',
Cell: ({...props}) => <UserInfoCell user={props.data[props.row.index]} />, Cell: ({...props}) => <UserInfoCell user={props.data[props.row.index]} />,
}, },
{ {
Header: (props) => <UserCustomHeader tableProps={props} title='Amount' className='min-w-125px' />, Header: (props) => <UserCustomHeader tableProps={props} title='Amount' className='min-w-125px' />,
accessor: 'role', accessor: 'loan_amount',
}, },
{ {
Header: (props) => ( Header: (props) => (
<UserCustomHeader tableProps={props} title='Payment Terms' className='min-w-125px' /> <UserCustomHeader tableProps={props} title='Payment Terms' className='min-w-125px' />
), ),
id: 'last_login', id: 'payment_month',
Cell: ({...props}) => <UserLastLoginCell last_login={props.data[props.row.index].last_login} />, Cell: ({...props}) => <PaymentMonthCell payment_month={props.data[props.row.index].payment_month} />,
}, },
{ {
Header: (props) => ( Header: (props) => (
<UserCustomHeader tableProps={props} title='Agent' className='min-w-125px' /> <UserCustomHeader tableProps={props} title='Agent' className='min-w-125px' />
), ),
id: 'two_steps', id: 'sales_agent',
Cell: ({...props}) => <UserTwoStepsCell two_steps={props.data[props.row.index].two_steps} />, Cell: ({...props}) => <AgentCell agent={props.data[props.row.index].sales_agent} />,
}, },
{ {
Header: (props) => ( Header: (props) => (
<UserCustomHeader tableProps={props} title='Added' className='min-w-125px' /> <UserCustomHeader tableProps={props} title='Added' className='min-w-125px' />
), ),
accessor: 'joined_day', id: 'added',
Cell: ({...props}) => <AddedCell added={props.data[props.row.index].added} />,
}, },
{ {
Header: (props) => ( Header: (props) => (
<UserCustomHeader tableProps={props} title='Actions' className='text-end min-w-100px' /> <UserCustomHeader tableProps={props} title='Actions' className='text-end min-w-100px' />
), ),
id: 'actions', id: 'actions',
Cell: ({...props}) => <UserActionsCell id={props.data[props.row.index].id} />, Cell: ({...props}) => <UserActionsCell id={props.data[props.row.index].uid} />,
}, },
] ]
export {usersColumns} export {usersColumns}