forked from openedx-unsupported/frontend-app-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add PageLoadingDynamicPaymentMethods component with timeout
- Loading branch information
1 parent
bc3becb
commit 7b3b5e0
Showing
3 changed files
with
60 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import React, { useEffect } from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { getConfig } from '@edx/frontend-platform'; | ||
import { logInfo } from '@edx/frontend-platform/logging'; | ||
|
||
const PageLoadingDynamicPaymentMethods = ({ srMessage, orderNumber }) => { | ||
useEffect(() => { | ||
logInfo(`Dynamic Payment Methods payment succeeded for edX order number ${orderNumber}, redirecting to ecommerce receipt page.`); | ||
const queryParams = `order_number=${orderNumber}&disable_back_button=${Number(true)}&dpm_enabled=${true}`; | ||
|
||
const timer = setTimeout(() => { | ||
if (getConfig().ENVIRONMENT !== 'test') { | ||
/* istanbul ignore next */ | ||
global.location.assign(`${getConfig().ECOMMERCE_BASE_URL}/checkout/receipt/?${queryParams}`); | ||
} | ||
}, 4000); // Delay the redirect to receipt page by 4 seconds to make sure ecomm order fulfillment is done. | ||
|
||
return () => clearTimeout(timer); // On unmount, clear the timer | ||
}, [orderNumber]); | ||
|
||
const renderSrMessage = () => { | ||
if (!srMessage) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<span className="sr-only"> | ||
{srMessage} | ||
</span> | ||
); | ||
}; | ||
|
||
return ( | ||
<div> | ||
<div | ||
className="d-flex justify-content-center align-items-center flex-column" | ||
style={{ | ||
height: '50vh', | ||
}} | ||
> | ||
<div className="spinner-border text-primary" data-testid="loading-page" role="status"> | ||
{renderSrMessage()} | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
PageLoadingDynamicPaymentMethods.propTypes = { | ||
srMessage: PropTypes.string.isRequired, | ||
orderNumber: PropTypes.string, | ||
}; | ||
|
||
PageLoadingDynamicPaymentMethods.defaultProps = { | ||
orderNumber: null, | ||
}; | ||
|
||
export default PageLoadingDynamicPaymentMethods; |
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