-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ENT-7309 Added budget category based page for learner credit (#…
…1003) * feat: ENT-7309 Added budget category-based page for learner credit Co-authored-by: IrfanUddinAhmad <[email protected]> Co-authored-by: zamanafzal <[email protected]>
- Loading branch information
1 parent
21489d0
commit 8500f4d
Showing
13 changed files
with
535 additions
and
2 deletions.
There are no files selected for viewing
175 changes: 175 additions & 0 deletions
175
src/components/learner-credit-management/BudgetCard.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
import React, { useState } from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import dayjs from 'dayjs'; | ||
import { | ||
Card, | ||
Button, | ||
Stack, | ||
Row, | ||
Col, | ||
Breadcrumb, | ||
} from '@edx/paragon'; | ||
|
||
import { getCourseProductLineAbbreviation } from '../../utils'; | ||
import { useOfferRedemptions, useOfferSummary } from './data/hooks'; | ||
import LearnerCreditAggregateCards from './LearnerCreditAggregateCards'; | ||
import LearnerCreditAllocationTable from './LearnerCreditAllocationTable'; | ||
import { ROUTE_NAMES } from '../EnterpriseApp/data/constants'; | ||
|
||
const BudgetCard = ({ | ||
offer, | ||
enterpriseUUID, | ||
enterpriseSlug, | ||
}) => { | ||
const { | ||
start, | ||
end, | ||
} = offer; | ||
|
||
const { | ||
isLoading: isLoadingOfferSummary, | ||
offerSummary, | ||
} = useOfferSummary(enterpriseUUID, offer); | ||
|
||
const { | ||
isLoading: isLoadingOfferRedemptions, | ||
offerRedemptions, | ||
fetchOfferRedemptions, | ||
} = useOfferRedemptions(enterpriseUUID, offer?.id); | ||
const [detailPage, setDetailPage] = useState(false); | ||
const [activeLabel, setActiveLabel] = useState(''); | ||
const links = [ | ||
{ label: 'Budgets', url: `/${enterpriseSlug}/admin/${ROUTE_NAMES.learnerCredit}` }, | ||
]; | ||
const formattedStartDate = dayjs(start).format('MMMM D, YYYY'); | ||
const formattedExpirationDate = dayjs(end).format('MMMM D, YYYY'); | ||
const navigateToBudgetRedemptions = (budgetType) => { | ||
setDetailPage(true); | ||
links.push({ label: budgetType, url: `/${enterpriseSlug}/admin/learner-credit` }); | ||
setActiveLabel(budgetType); | ||
}; | ||
|
||
const renderActions = (budgetType) => ( | ||
<Button | ||
data-testid="view-budget" | ||
onClick={() => navigateToBudgetRedemptions(budgetType)} | ||
> | ||
View Budget | ||
</Button> | ||
); | ||
|
||
const renderCardHeader = (budgetType) => { | ||
const subtitle = ( | ||
<div className="d-flex flex-wrap align-items-center"> | ||
<span data-testid="offer-date"> | ||
{formattedStartDate} - {formattedExpirationDate} | ||
</span> | ||
</div> | ||
); | ||
|
||
return ( | ||
<Card.Header | ||
title={budgetType} | ||
subtitle={subtitle} | ||
actions={( | ||
<div> | ||
{renderActions(budgetType)} | ||
</div> | ||
)} | ||
/> | ||
); | ||
}; | ||
|
||
const renderCardSection = (available, spent) => ( | ||
<Card.Section | ||
title="Balance" | ||
muted | ||
> | ||
<Row className="d-flex flex-row justify-content-start w-md-75"> | ||
<Col xs="6" md="auto" className="d-flex flex-column mb-3 mb-md-0"> | ||
<span className="small">Available</span> | ||
<span>{available}</span> | ||
</Col> | ||
<Col xs="6" md="auto" className="d-flex flex-column mb-3 mb-md-0"> | ||
<span className="small">Spent</span> | ||
<span>{spent}</span> | ||
</Col> | ||
</Row> | ||
</Card.Section> | ||
); | ||
|
||
const renderCardAggregate = () => ( | ||
<div className="mb-4.5 d-flex flex-wrap mx-n3"> | ||
<LearnerCreditAggregateCards | ||
isLoading={isLoadingOfferSummary} | ||
totalFunds={offerSummary?.totalFunds} | ||
redeemedFunds={offerSummary?.redeemedFunds} | ||
remainingFunds={offerSummary?.remainingFunds} | ||
percentUtilized={offerSummary?.percentUtilized} | ||
/> | ||
</div> | ||
); | ||
|
||
return ( | ||
<Stack> | ||
<Row className="m-3"> | ||
<Col xs="12"> | ||
<Breadcrumb | ||
ariaLabel="Breadcrumb is active" | ||
links={links} | ||
activeLabel={activeLabel} | ||
/> | ||
</Col> | ||
</Row> | ||
{!detailPage | ||
? ( | ||
<> | ||
{renderCardAggregate()} | ||
<h2>Budgets</h2> | ||
<Card | ||
orientation="horizontal" | ||
> | ||
<Card.Body> | ||
<Stack gap={4}> | ||
{renderCardHeader('Open Courses Marketplace')} | ||
{renderCardSection(offerSummary?.remainingFunds, offerSummary?.redeemedFundsOcm)} | ||
</Stack> | ||
</Card.Body> | ||
</Card> | ||
<Card | ||
orientation="horizontal" | ||
> | ||
<Card.Body> | ||
<Stack gap={4}> | ||
{renderCardHeader('Executive Education')} | ||
{renderCardSection(offerSummary?.remainingFunds, offerSummary?.redeemedFundsExecEd)} | ||
</Stack> | ||
</Card.Body> | ||
</Card> | ||
</> | ||
) | ||
: ( | ||
<LearnerCreditAllocationTable | ||
isLoading={isLoadingOfferRedemptions} | ||
tableData={offerRedemptions} | ||
fetchTableData={fetchOfferRedemptions} | ||
enterpriseUUID={enterpriseUUID} | ||
budgetType={getCourseProductLineAbbreviation(activeLabel)} | ||
/> | ||
)} | ||
</Stack> | ||
); | ||
}; | ||
|
||
BudgetCard.propTypes = { | ||
offer: PropTypes.shape({ | ||
id: PropTypes.string.isRequired, | ||
name: PropTypes.string.isRequired, | ||
start: PropTypes.string.isRequired, | ||
end: PropTypes.string.isRequired, | ||
}).isRequired, | ||
enterpriseUUID: PropTypes.string.isRequired, | ||
enterpriseSlug: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default BudgetCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
src/components/learner-credit-management/MultipleBudgetsPage.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import React, { useContext } from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { | ||
Stack, | ||
Row, | ||
Col, | ||
Card, | ||
Hyperlink, | ||
} from '@edx/paragon'; | ||
import { connect } from 'react-redux'; | ||
import { Helmet } from 'react-helmet'; | ||
import Hero from '../Hero'; | ||
|
||
import LoadingMessage from '../LoadingMessage'; | ||
import MultipleBudgetsPicker from './MultipleBudgetsPicker'; | ||
import { EnterpriseSubsidiesContext } from '../EnterpriseSubsidiesContext'; | ||
|
||
import { configuration } from '../../config'; | ||
|
||
const PAGE_TITLE = 'Learner Credit'; | ||
|
||
const MultipleBudgetsPage = ({ | ||
enterpriseUUID, | ||
enterpriseSlug, | ||
}) => { | ||
const { offers, isLoading } = useContext(EnterpriseSubsidiesContext); | ||
|
||
if (isLoading) { | ||
return <LoadingMessage className="offers" />; | ||
} | ||
|
||
if (offers.length === 0) { | ||
return ( | ||
<Stack> | ||
<Helmet title={PAGE_TITLE} /> | ||
<Hero title={PAGE_TITLE} /> | ||
<Card> | ||
<Card.Section className="text-center"> | ||
<Row> | ||
<Col xs={12} lg={{ span: 8, offset: 2 }}> | ||
<h3 className="mb-3">No budgets for your organization</h3> | ||
<p> | ||
We were unable to find any budgets for your organization. Please contact | ||
Customer Support if you have questions. | ||
</p> | ||
<Hyperlink | ||
className="btn btn-brand" | ||
target="_blank" | ||
destination={configuration.ENTERPRISE_SUPPORT_URL} | ||
> | ||
Contact support | ||
</Hyperlink> | ||
</Col> | ||
</Row> | ||
</Card.Section> | ||
</Card> | ||
</Stack> | ||
); | ||
} | ||
|
||
return ( | ||
<> | ||
<Helmet title={PAGE_TITLE} /> | ||
<Hero title={PAGE_TITLE} /> | ||
<MultipleBudgetsPicker | ||
offers={offers} | ||
enterpriseUUID={enterpriseUUID} | ||
enterpriseSlug={enterpriseSlug} | ||
/> | ||
</> | ||
); | ||
}; | ||
|
||
const mapStateToProps = state => ({ | ||
enterpriseUUID: state.portalConfiguration.enterpriseId, | ||
enterpriseSlug: state.portalConfiguration.enterpriseSlug, | ||
}); | ||
|
||
MultipleBudgetsPage.propTypes = { | ||
enterpriseUUID: PropTypes.string.isRequired, | ||
enterpriseSlug: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default connect(mapStateToProps)(MultipleBudgetsPage); |
38 changes: 38 additions & 0 deletions
38
src/components/learner-credit-management/MultipleBudgetsPicker.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { | ||
Stack, | ||
Row, | ||
Col, | ||
} from '@edx/paragon'; | ||
|
||
import BudgetCard from './BudgetCard'; | ||
|
||
const MultipleBudgetsPicker = ({ | ||
offers, | ||
enterpriseUUID, | ||
enterpriseSlug, | ||
}) => ( | ||
<Stack> | ||
<Row> | ||
<Col lg="10"> | ||
{offers.map(offer => ( | ||
<BudgetCard | ||
key={offer.id} | ||
offer={offer} | ||
enterpriseUUID={enterpriseUUID} | ||
enterpriseSlug={enterpriseSlug} | ||
/> | ||
))} | ||
</Col> | ||
</Row> | ||
</Stack> | ||
); | ||
|
||
MultipleBudgetsPicker.propTypes = { | ||
offers: PropTypes.arrayOf(PropTypes.shape()).isRequired, | ||
enterpriseUUID: PropTypes.string.isRequired, | ||
enterpriseSlug: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default MultipleBudgetsPicker; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.