64 lines
2.1 KiB
TypeScript
Raw Normal View History

2025-08-05 12:35:40 +07:00
// React Imports
import type { ReactElement } from 'react'
// Next Imports
import dynamic from 'next/dynamic'
// MUI Imports
import Grid from '@mui/material/Grid2'
// Type Imports
import type { PricingPlanType } from '@/types/pages/pricingTypes'
// Component Imports
import UserLeftOverview from '@views/apps/user/view/user-left-overview'
import UserRight from '@views/apps/user/view/user-right'
const OverViewTab = dynamic(() => import('@views/apps/user/view/user-right/overview'))
const SecurityTab = dynamic(() => import('@views/apps/user/view/user-right/security'))
const BillingPlans = dynamic(() => import('@views/apps/user/view/user-right/billing-plans'))
const NotificationsTab = dynamic(() => import('@views/apps/user/view/user-right/notifications'))
const ConnectionsTab = dynamic(() => import('@views/apps/user/view/user-right/connections'))
// Vars
const tabContentList = (data?: PricingPlanType[]): { [key: string]: ReactElement } => ({
overview: <OverViewTab />,
security: <SecurityTab />,
'billing-plans': <BillingPlans data={data} />,
notifications: <NotificationsTab />,
connections: <ConnectionsTab />
})
/**
* ! If you need data using an API call, uncomment the below API code, update the `process.env.API_URL` variable in the
* ! `.env` file found at root of your project and also update the API endpoints like `/pages/pricing` in below example.
* ! Also, remove the above server action import and the action itself from the `src/app/server/actions.ts` file to clean up unused code
* ! because we've used the server action for getting our static data.
*/
/* const getPricingData = async () => {
// Vars
const res = await fetch(`${process.env.API_URL}/pages/pricing`)
if (!res.ok) {
throw new Error('Failed to fetch data')
}
return res.json()
} */
const UserViewTab = async () => {
return (
<Grid container spacing={6}>
<Grid size={{ xs: 12, lg: 4, md: 5 }}>
<UserLeftOverview />
</Grid>
<Grid size={{ xs: 12, lg: 8, md: 7 }}>
2025-08-07 03:53:40 +07:00
<UserRight tabContentList={tabContentList([])} />
2025-08-05 12:35:40 +07:00
</Grid>
</Grid>
)
}
export default UserViewTab