Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a42cd5c65 |
+1
-1
@@ -3,8 +3,8 @@ const RouteLinks = {
|
|||||||
homePage: '/',
|
homePage: '/',
|
||||||
customerPage: '/customer',
|
customerPage: '/customer',
|
||||||
accountDetails: '/account-view/*',
|
accountDetails: '/account-view/*',
|
||||||
subscriptionDetails: '/subscription-view/*',
|
|
||||||
subscriptions: '/subscriptions',
|
subscriptions: '/subscriptions',
|
||||||
|
subscriptionDetails: '/subscription-view/*',
|
||||||
billings: '/billings',
|
billings: '/billings',
|
||||||
recentSignup: '/recent-signup',
|
recentSignup: '/recent-signup',
|
||||||
loansPage: '/loans',
|
loansPage: '/loans',
|
||||||
|
|||||||
+3
-3
@@ -19,8 +19,8 @@ import LoansPage from './pages/LoansPage' // SELECTED LOANS PAGE
|
|||||||
import TransactionDetailsPage from './pages/TransactionDetailsPage'
|
import TransactionDetailsPage from './pages/TransactionDetailsPage'
|
||||||
import AccountDetailsPage from "./pages/AccountDetailsPage";
|
import AccountDetailsPage from "./pages/AccountDetailsPage";
|
||||||
import ProductTemplatePage from "./pages/ProductTemplatePage";
|
import ProductTemplatePage from "./pages/ProductTemplatePage";
|
||||||
import CustomTemplatePage from "./pages/CustomTemplatePage";
|
import CustomTemplatePage from "./pages/CustomTemplatePage"; // TRANSACTION DETAILS PAGE
|
||||||
import SubscriptionDetailsPage from "./pages/SubscriptionDetailsPage"; // TRANSACTION DETAILS PAGE
|
import SubscriptionDetailViewPage from './pages/SubscriptionDetailViewPage' // SUBSCRIPTION DETAIL VIEW PAGE
|
||||||
|
|
||||||
|
|
||||||
// const Home = lazy(() => import('./pages/Home'));
|
// const Home = lazy(() => import('./pages/Home'));
|
||||||
@@ -42,11 +42,11 @@ export default function SiteRoutes() {
|
|||||||
|
|
||||||
<Route path={RouteLinks.productTemplates} element={<ProductTemplatePage/>}/> {`*/PRODUCTS TEMPLATE PAGE*/`}
|
<Route path={RouteLinks.productTemplates} element={<ProductTemplatePage/>}/> {`*/PRODUCTS TEMPLATE PAGE*/`}
|
||||||
<Route path={RouteLinks.customTemplates} element={<CustomTemplatePage/>}/> {`*/CUSTOM TEMPLATES PAGE*/`}
|
<Route path={RouteLinks.customTemplates} element={<CustomTemplatePage/>}/> {`*/CUSTOM TEMPLATES PAGE*/`}
|
||||||
|
<Route path={RouteLinks.subscriptionDetails} element={<SubscriptionDetailViewPage/>}/> {`*/SUBSCRIPTION DETAIL VIEW PAGE*/`}
|
||||||
|
|
||||||
<Route path={RouteLinks.loansPage} element={<LoansPage/>}/> {`*/LOANS PAGE*/`}
|
<Route path={RouteLinks.loansPage} element={<LoansPage/>}/> {`*/LOANS PAGE*/`}
|
||||||
<Route path={RouteLinks.transaction_details_page}
|
<Route path={RouteLinks.transaction_details_page}
|
||||||
element={<TransactionDetailsPage/>}/> {`*/TRANSACTION PAGE*/`}
|
element={<TransactionDetailsPage/>}/> {`*/TRANSACTION PAGE*/`}
|
||||||
<Route path={RouteLinks.subscriptionDetails} element={<SubscriptionDetailsPage/>} />
|
|
||||||
</Route>
|
</Route>
|
||||||
|
|
||||||
{/* ERROR PAGE */}
|
{/* ERROR PAGE */}
|
||||||
|
|||||||
+162
-173
@@ -1,13 +1,13 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {Link} from 'react-router-dom'
|
import {Link} from 'react-router-dom'
|
||||||
import {useQuery} from "@tanstack/react-query";
|
import { useQuery } from "@tanstack/react-query";
|
||||||
import BreadcrumbCom from '../../components/breadcrumb/BreadcrumbCom'
|
import BreadcrumbCom from '../../components/breadcrumb/BreadcrumbCom'
|
||||||
import CustomCounter from '../../components/CustomCounter'
|
import CustomCounter from '../../components/CustomCounter'
|
||||||
import Icons from '../../components/Icons'
|
import Icons from '../../components/Icons'
|
||||||
import formatNumber from '../../helpers/formatNumber'
|
import formatNumber from '../../helpers/formatNumber'
|
||||||
|
|
||||||
import queryKeys from '../../services/queryKeys'
|
import queryKeys from '../../services/queryKeys'
|
||||||
import {getDashData} from '../../services/siteServices'
|
import { getDashData } from '../../services/siteServices'
|
||||||
import getDateFromDateString from '../../helpers/GetDateFromDateString';
|
import getDateFromDateString from '../../helpers/GetDateFromDateString';
|
||||||
import getTimeFromDateString from '../../helpers/GetTimeFromDateString';
|
import getTimeFromDateString from '../../helpers/GetTimeFromDateString';
|
||||||
import localImgLoader from '../../helpers/localImageLoader';
|
import localImgLoader from '../../helpers/localImageLoader';
|
||||||
@@ -15,187 +15,176 @@ import RouteLinks from '../../RouteLinks';
|
|||||||
|
|
||||||
export default function HomeCom() {
|
export default function HomeCom() {
|
||||||
|
|
||||||
const {data, isFetching, isError, error} = useQuery({
|
const {data, isFetching, isError, error} = useQuery({
|
||||||
queryKey: queryKeys.dashboard,
|
queryKey: queryKeys.dashboard,
|
||||||
queryFn: () => getDashData(),
|
queryFn: () => getDashData(),
|
||||||
})
|
})
|
||||||
|
|
||||||
const dashData = data?.data // DASHBOARD DATA
|
const dashData = data?.data // DASHBOARD DATA
|
||||||
|
|
||||||
// console.log('dashData', dashData)
|
// console.log('dashData', dashData)
|
||||||
// loans, payments, recent_transactions [], request_summary
|
// loans, payments, recent_transactions [], request_summary
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='w-full flex flex-col gap-8'>
|
<div className='w-full flex flex-col gap-8'>
|
||||||
<BreadcrumbCom title='Dashboard' paths={['Home', 'Dashboard']}/>
|
<BreadcrumbCom title='Dashboard' paths={['Home', 'Dashboard']} />
|
||||||
|
|
||||||
{(isFetching || isError) ?
|
{(isFetching || isError) ?
|
||||||
<div className='box bg-white dark:bg-black-box text-black-body dark:text-white-body'>
|
<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> :
|
{isError ? <p className='text-red-500'>{error.message}</p> : <p className='text-slate-800'>Loading...</p>}
|
||||||
<p className='text-slate-800'>Loading...</p>}
|
</div>
|
||||||
</div>
|
:
|
||||||
:
|
<div className='grid grid-cols-1 gap-8'>
|
||||||
<div className='grid grid-cols-1 gap-8'>
|
<div className='w-full grid grid-cols-1 xl:grid-cols-3 gap-8'>
|
||||||
<div className='w-full grid grid-cols-1 xl:grid-cols-3 gap-8'>
|
<div className='box min-h-[230] justify-between bg-[#F7D9E3] dark:bg-black-box text-black-body dark:text-white-body'>
|
||||||
<div
|
<p className='text-base sm:text-lg font-bold hover:text-primary'>Subscriptions</p>
|
||||||
className='box min-h-[230] justify-between bg-[#F7D9E3] dark:bg-black-box text-black-body dark:text-white-body'>
|
<div className='flex flex-wrap gap-2 items-end font-bold'>
|
||||||
<p className='text-base sm:text-lg font-bold hover:text-primary'>Subscriptions</p>
|
{/* <p className='text-3xl sm:text-[39px]'><span className='text-xl sm:text-2xl'>{dashData?.loans?.currency_text}</span><CustomCounter targetNumber={dashData?.loans?.value} timeInSeconds='1' /></p> */}
|
||||||
<div className='flex flex-wrap gap-2 items-end font-bold'>
|
<p className='text-xl sm:text-[30px]'><span className='text-lg sm:text-xl'>
|
||||||
{/* <p className='text-3xl sm:text-[39px]'><span className='text-xl sm:text-2xl'>{dashData?.loans?.currency_text}</span><CustomCounter targetNumber={dashData?.loans?.value} timeInSeconds='1' /></p> */}
|
|
||||||
<p className='text-xl sm:text-[30px]'><span className='text-lg sm:text-xl'>
|
|
||||||
{/*{dashData?.loans?.currency_text}*/}
|
{/*{dashData?.loans?.currency_text}*/}
|
||||||
</span><CustomCounter targetNumber={formatNumber(dashData?.loans?.value)} timeInSeconds='1'/>
|
</span><CustomCounter targetNumber={formatNumber(dashData?.loans?.value)} timeInSeconds='1' />
|
||||||
</p>
|
</p>
|
||||||
<p className='sm:text-[13.9px]'>{dashData?.loans?.text}</p>
|
<p className='sm:text-[13.9px]'>{dashData?.loans?.text}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div className='box min-h-[230] justify-between bg-[#CBF0F5] dark:bg-black-box text-black-body dark:text-white-body'>
|
||||||
className='box min-h-[230] justify-between bg-[#CBF0F5] dark:bg-black-box text-black-body dark:text-white-body'>
|
<p className='text-base sm:text-lg font-bold hover:text-primary'>Payments</p>
|
||||||
<p className='text-base sm:text-lg font-bold hover:text-primary'>Payments</p>
|
<div className='flex flex-wrap gap-2 items-end font-bold'>
|
||||||
<div className='flex flex-wrap gap-2 items-end font-bold'>
|
<p className='text-xl sm:text-[30px]'><span className='text-lg sm:text-xl'>
|
||||||
<p className='text-xl sm:text-[30px]'><span className='text-lg sm:text-xl'>
|
|
||||||
{dashData?.payments?.currency_text}
|
{dashData?.payments?.currency_text}
|
||||||
</span><CustomCounter targetNumber={formatNumber(dashData?.payments?.value)} timeInSeconds='1'/>
|
</span><CustomCounter targetNumber={formatNumber(dashData?.payments?.value)} timeInSeconds='1' />
|
||||||
</p>
|
</p>
|
||||||
<p className='sm:text-[13.9px]'>{dashData?.payments?.text}</p>
|
<p className='sm:text-[13.9px]'>{dashData?.payments?.text}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div className='box min-h-[230] justify-between bg-[#CBD4F4] dark:bg-black-box text-black-body dark:text-white-body'>
|
||||||
className='box min-h-[230] justify-between bg-[#CBD4F4] dark:bg-black-box text-black-body dark:text-white-body'>
|
<p className='mb-4 text-base sm:text-lg font-bold hover:text-primary'>Provision Summary</p>
|
||||||
<p className='mb-4 text-base sm:text-lg font-bold hover:text-primary'>Provision Summary</p>
|
<div className='grid grid-cols-2 gap-4 font-bold'>
|
||||||
<div className='grid grid-cols-2 gap-4 font-bold'>
|
{
|
||||||
{
|
Object.values(dashData?.request_summary).map((item, index) => {
|
||||||
Object.values(dashData?.request_summary).map((item, index) => {
|
return (
|
||||||
return (
|
<div key={index} className='flex items-center gap-2'>
|
||||||
<div key={index} className='flex items-center gap-2'>
|
<div className='min-w-10 min-h-10 bg-white-body dark:bg-black-box dark:shadow-[0_0_0_1px_#f9f9f9] rounded-md flex justify-center items-center'>
|
||||||
<div
|
<Icons name='sales' />
|
||||||
className='min-w-10 min-h-10 bg-white-body dark:bg-black-box dark:shadow-[0_0_0_1px_#f9f9f9] rounded-md flex justify-center items-center'>
|
|
||||||
<Icons name='sales'/>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<p className='font-bold text-base'><CustomCounter
|
|
||||||
targetNumber={Object.values(item)[0]} timeInSeconds='1'/></p>
|
|
||||||
<p className='text-12 text-slate-500'>{Object.keys(item)[0]}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<p className='font-bold text-base'><CustomCounter targetNumber={Object.values(item)[0]} timeInSeconds='1' /></p>
|
||||||
|
<p className='text-12 text-slate-500'>{Object.keys(item)[0]}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className='w-full'>
|
<div className='w-full'>
|
||||||
<div className='box gap-8 bg-white dark:bg-black-box text-black-body dark:text-white-body'>
|
<div className='box gap-8 bg-white dark:bg-black-box text-black-body dark:text-white-body'>
|
||||||
<div className='grid grid-cols-1 xs:grid-cols-2 gap-4'>
|
<div className='grid grid-cols-1 xs:grid-cols-2 gap-4'>
|
||||||
<div className='flex flex-col gap-1 order-2 xs:order-1'>
|
<div className='flex flex-col gap-1 order-2 xs:order-1'>
|
||||||
<p className='font-bold text-base'>Recent Subscriptions</p>
|
<p className='font-bold text-base'>Recent Subscriptions</p>
|
||||||
{/* <p className='text-12'>Over 500 members</p> */}
|
{/* <p className='text-12'>Over 500 members</p> */}
|
||||||
</div>
|
</div>
|
||||||
{/* <div className='order-1 xs:order-2 text-left xs:text-right'>
|
{/* <div className='order-1 xs:order-2 text-left xs:text-right'>
|
||||||
<button className='font-bold bg-white-aside text-black-body text-12 px-4 py-2 hover:text-primary hover:bg-sky-50 dark:hover:text-white dark:hover:bg-primary dark:text-white-body dark:bg-black-body rounded-md'>+ New Member</button>
|
<button className='font-bold bg-white-aside text-black-body text-12 px-4 py-2 hover:text-primary hover:bg-sky-50 dark:hover:text-white dark:hover:bg-primary dark:text-white-body dark:bg-black-body rounded-md'>+ New Member</button>
|
||||||
</div> */}
|
</div> */}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<table className="py-2 w-full text-sm">
|
||||||
|
<thead className="py-2 text-sm text-slate-500 text-left font-semibold">
|
||||||
|
<tr>
|
||||||
|
<th scope="col" className="px-2 py-2">
|
||||||
|
Subscription
|
||||||
|
</th>
|
||||||
|
<th scope="col" className="px-2">
|
||||||
|
Status
|
||||||
|
</th>
|
||||||
|
<th scope="col" className="px-2">
|
||||||
|
Activity
|
||||||
|
</th>
|
||||||
|
<th scope="col" className="px-2 text-right">
|
||||||
|
Action
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{(dashData?.subscription && dashData?.subscription.length > 0) ? dashData?.subscription?.map((item, index) => {
|
||||||
|
if(index <= 10) {
|
||||||
|
return (
|
||||||
|
<tr key={item?.id} className="py-2 border-t border-dashed border-slate-300">
|
||||||
|
<td className="px-2 py-2">
|
||||||
|
<div className='w-full min-w-48 flex items-center gap-2 whitespace-nowrap'>
|
||||||
|
<img className="w-10 h-10 rounded-md" src={localImgLoader(`loan_icons/select_offer.png`)} alt="Icon" />
|
||||||
|
<div className="text-left">
|
||||||
|
<div className="text-base font-semibold">{item?.product_id}</div>
|
||||||
|
<div className="font-normal text-gray-500">{getDateFromDateString(item?.added)} {getTimeFromDateString(item?.added)}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="px-2">
|
||||||
|
<div className="text-left">
|
||||||
|
<div className="text-base font-semibold"><a href={`https://${item?.internal_url}`} target='_blank' rel="noreferrer">{item?.internal_url}</a></div>
|
||||||
|
<div className="font-normal text-gray-500">{item?.status}</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="px-2">
|
||||||
|
<div className="text-left">
|
||||||
|
<div className="font-normal text-gray-500">50%</div>
|
||||||
|
<div className="relative h-[6px] w-full bg-white-body dark:bg-black-body rounded-full overflow-hidden">
|
||||||
|
<div className={`absolute left-0 h-full w-1/2 bg-emerald-600`}></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td className="px-2 text-right">
|
||||||
|
<div className='flex items-center justify-end gap-3 md:gap-4'>
|
||||||
|
{/* <div className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'>
|
||||||
|
<Icons name='edit' />
|
||||||
|
</div> */}
|
||||||
|
<div className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'>
|
||||||
|
<Link to={RouteLinks.transaction_details_page} state={{transactionID: item?.transaction_id}}>
|
||||||
|
<Icons name='eye' />
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
{/* <div className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'>
|
||||||
|
<Icons name='trash' />
|
||||||
|
</div> */}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
)
|
||||||
|
}else{
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
:
|
||||||
|
<tr className="py-2 border-t border-dashed border-slate-300">
|
||||||
|
<td className="px-3 py-2" colSpan={4}>
|
||||||
|
<div className="flex justify-center items-center">
|
||||||
|
No Record Found
|
||||||
</div>
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
<>
|
||||||
|
{dashData?.subscription.length > 10 &&
|
||||||
|
<tr className="py-2 border-t border-dashed text-right text-primary border-slate-300">
|
||||||
|
<td className="px-3 py-2" colSpan={4}>
|
||||||
|
<Link to={RouteLinks.transactionsPage} className="flex justify-end items-center">
|
||||||
|
More ...
|
||||||
|
</Link>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
<table className="py-2 w-full text-sm">
|
</div>
|
||||||
<thead className="py-2 text-sm text-slate-500 text-left font-semibold">
|
|
||||||
<tr>
|
|
||||||
<th scope="col" className="px-2 py-2">
|
|
||||||
Subscription
|
|
||||||
</th>
|
|
||||||
<th scope="col" className="px-2">
|
|
||||||
Status
|
|
||||||
</th>
|
|
||||||
<th scope="col" className="px-2">
|
|
||||||
Activity
|
|
||||||
</th>
|
|
||||||
<th scope="col" className="px-2 text-right">
|
|
||||||
Action
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{(dashData?.subscription && dashData?.subscription.length > 0) ? dashData?.subscription?.map((item, index) => {
|
|
||||||
if (index <= 10) {
|
|
||||||
return (
|
|
||||||
<tr key={item?.id} className="py-2 border-t border-dashed border-slate-300">
|
|
||||||
<td className="px-2 py-2">
|
|
||||||
<div
|
|
||||||
className='w-full min-w-48 flex items-center gap-2 whitespace-nowrap'>
|
|
||||||
<img className="w-10 h-10 rounded-md"
|
|
||||||
src={localImgLoader(`loan_icons/select_offer.png`)}
|
|
||||||
alt="Icon"/>
|
|
||||||
<div className="text-left">
|
|
||||||
<div
|
|
||||||
className="text-base font-semibold">{item?.product_id}</div>
|
|
||||||
<div
|
|
||||||
className="font-normal text-gray-500">{getDateFromDateString(item?.added)} {getTimeFromDateString(item?.added)}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td className="px-2">
|
|
||||||
<div className="text-left">
|
|
||||||
<div className="text-base font-semibold"><a
|
|
||||||
href={`https://${item?.internal_url}`} target='_blank'
|
|
||||||
rel="noreferrer">{item?.internal_url}</a></div>
|
|
||||||
<div className="font-normal text-gray-500">{item?.status}</div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td className="px-2">
|
|
||||||
<div className="text-left">
|
|
||||||
<div className="font-normal text-gray-500">50%</div>
|
|
||||||
<div
|
|
||||||
className="relative h-[6px] w-full bg-white-body dark:bg-black-body rounded-full overflow-hidden">
|
|
||||||
<div
|
|
||||||
className={`absolute left-0 h-full w-1/2 bg-emerald-600`}></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td className="px-2 text-right">
|
|
||||||
<div className='flex items-center justify-end gap-3 md:gap-4'>
|
|
||||||
<div
|
|
||||||
className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'>
|
|
||||||
<Link to={`/subscription-view/${item?.uid}`}>
|
|
||||||
<Icons name='eye'/>
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
:
|
|
||||||
<tr className="py-2 border-t border-dashed border-slate-300">
|
|
||||||
<td className="px-3 py-2" colSpan={4}>
|
|
||||||
<div className="flex justify-center items-center">
|
|
||||||
No Record Found
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
}
|
|
||||||
<>
|
|
||||||
{dashData?.subscription.length > 10 &&
|
|
||||||
<tr className="py-2 border-t border-dashed text-right text-primary border-slate-300">
|
|
||||||
<td className="px-3 py-2" colSpan={4}>
|
|
||||||
<Link to={RouteLinks.transactionsPage}
|
|
||||||
className="flex justify-end items-center">
|
|
||||||
More ...
|
|
||||||
</Link>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
}
|
|
||||||
</>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
)
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
import {useEffect, useState} from 'react'
|
||||||
|
import { useQuery } from '@tanstack/react-query'
|
||||||
|
|
||||||
|
import {useLocation, useNavigate, Link} from 'react-router-dom'
|
||||||
|
|
||||||
|
import BreadcrumbCom from '../breadcrumb/BreadcrumbCom'
|
||||||
|
import RouteLinks from '../../RouteLinks'
|
||||||
|
import { getAccountView } from '../../services/siteServices'
|
||||||
|
import queryKeys from '../../services/queryKeys'
|
||||||
|
|
||||||
|
export default function SubscriptionDetailViewCom() {
|
||||||
|
|
||||||
|
const {state:{memberUID}} = useLocation()
|
||||||
|
const navigate = useNavigate()
|
||||||
|
|
||||||
|
useEffect(()=>{
|
||||||
|
if(!memberUID){
|
||||||
|
navigate(`/account-view/${memberUID}`, {replace: true, state:{memberUID}})
|
||||||
|
}
|
||||||
|
},[])
|
||||||
|
|
||||||
|
const {data, isFetching, isError, error} = useQuery({
|
||||||
|
queryKey: queryKeys.account_view,
|
||||||
|
queryFn: () => {
|
||||||
|
// const filterData = filter?.type ? {[filter?.type]: filter.id} : {}
|
||||||
|
const reqData = {
|
||||||
|
member_uid: memberUID
|
||||||
|
// page,
|
||||||
|
// ...filterData
|
||||||
|
}
|
||||||
|
// return getAccountView(reqData)
|
||||||
|
},
|
||||||
|
staleTime: 0 //0 mins
|
||||||
|
})
|
||||||
|
const subscriptionViewData = data?.data // SUBSCRIPTION VIEW DATA
|
||||||
|
// console.log('DATA', payments, subscriptions)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='w-full flex flex-col gap-8'>
|
||||||
|
<BreadcrumbCom title={`Subscription View [${memberUID}]`} paths={['Dashboard', 'Subscription View']}/>
|
||||||
|
|
||||||
|
<div className='box bg-white dark:bg-black-box text-black-body dark:text-white-body'>
|
||||||
|
{isFetching ?
|
||||||
|
<>
|
||||||
|
<p className='text-slate-800'>Loading...</p>
|
||||||
|
</>
|
||||||
|
: isError ?
|
||||||
|
<p className='text-red-500'>{error.message}</p>
|
||||||
|
:
|
||||||
|
<p className='text-slate-800'>Coming soon</p>
|
||||||
|
}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import {useLocation, useNavigate, Link} from 'react-router-dom'
|
|
||||||
import BreadcrumbCom from '../breadcrumb/BreadcrumbCom'
|
|
||||||
import { useEffect } from 'react';
|
|
||||||
|
|
||||||
export default function SubscriptionViewCom() {
|
|
||||||
|
|
||||||
const subscriptionUID = "63554d40-9ba1-4afe-80c2-ca147236f7ee";
|
|
||||||
|
|
||||||
const {state:{memberUID}} = useLocation()
|
|
||||||
const navigate = useNavigate()
|
|
||||||
|
|
||||||
useEffect(()=>{
|
|
||||||
if(!memberUID){
|
|
||||||
navigate(`/account-view/${memberUID}`, {replace: true, state:{memberUID}})
|
|
||||||
}
|
|
||||||
},[])
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-col gap-8'>
|
|
||||||
<BreadcrumbCom title={`Subscription View [${memberUID}]`} paths={['Dashboard', 'Subscription View']}/>
|
|
||||||
|
|
||||||
<div className='box bg-white dark:bg-black-box text-black-body dark:text-white-body'>
|
|
||||||
|
|
||||||
<>
|
|
||||||
Show all here
|
|
||||||
</>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import SubscriptionDetailViewCom from "../components/subscription_view/SubscriptionDetailViewCom";
|
||||||
|
export default function SubscriptionDetailViewPage() {
|
||||||
|
return (
|
||||||
|
<SubscriptionDetailViewCom />
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
import React from 'react'
|
|
||||||
import SubscriptionViewCom from "../components/subscription_view/SubscriptionViewCom";
|
|
||||||
export default function SubscriptionDetailsPage() {
|
|
||||||
return (
|
|
||||||
<SubscriptionViewCom />
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user