feat: show payment portal information

This commit is contained in:
Ali BARIN
2023-03-06 19:42:41 +00:00
parent dbeeb61cc5
commit 5e7b4bfe45
7 changed files with 73 additions and 7 deletions

View File

@@ -3,6 +3,7 @@ import { Navigate } from 'react-router-dom';
import Grid from '@mui/material/Grid';
import * as URLS from 'config/urls'
import PaymentInformation from 'components/PaymentInformation/index.ee';
import PageTitle from 'components/PageTitle';
import Container from 'components/Container';
import useFormatMessage from 'hooks/useFormatMessage';
@@ -12,10 +13,15 @@ function BillingAndUsageSettings() {
const isCloud = useCloud();
const formatMessage = useFormatMessage();
if (!isCloud) {
// redirect to the initial settings page
if (isCloud === false) {
return (<Navigate to={URLS.SETTINGS} replace={true} />)
}
// render nothing until we know if it's cloud or not
// here, `isCloud` is not `false`, but `undefined`
if (!isCloud) return <React.Fragment />
return (
<Container sx={{ py: 3, display: 'flex', justifyContent: 'center' }}>
<Grid container item xs={12} sm={9} md={8} lg={6}>
@@ -23,7 +29,8 @@ function BillingAndUsageSettings() {
<PageTitle>{formatMessage('billingAndUsageSettings.title')}</PageTitle>
</Grid>
<Grid item xs={12} justifyContent="flex-end" sx={{pt: 5 }}>
<Grid item xs={12} justifyContent="flex-end" sx={{ mt: 2 }}>
<PaymentInformation />
</Grid>
</Grid>
</Container>