-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: refactored code according to requested changes
- Loading branch information
1 parent
07e0ec8
commit cbc9538
Showing
16 changed files
with
370 additions
and
401 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
import { combineReducers } from 'redux'; | ||
|
||
import { reducer as profilePage } from '../profile'; | ||
import { reducer as NewProfilePageReducer } from '../profile-v2'; | ||
import { getConfig } from '@edx/frontend-platform'; | ||
|
||
const isNewProfileEnabled = process.env.ENABLE_NEW_PROFILE_VIEW === 'true'; | ||
import { reducer as profilePageReducer } from '../profile'; | ||
import { reducer as newProfilePageReducer } from '../profile-v2'; | ||
|
||
const isNewProfileEnabled = getConfig().ENABLE_NEW_PROFILE_VIEW; | ||
|
||
const createRootReducer = () => combineReducers({ | ||
profilePage: isNewProfileEnabled ? NewProfilePageReducer : profilePage, | ||
profilePage: isNewProfileEnabled ? newProfilePageReducer : profilePageReducer, | ||
}); | ||
|
||
export default createRootReducer; |
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import { all } from 'redux-saga/effects'; | ||
import { getConfig } from '@edx/frontend-platform'; | ||
import { saga as profileSaga } from '../profile'; | ||
import { saga as NewProfileSaga } from '../profile-v2'; | ||
import { saga as newProfileSaga } from '../profile-v2'; | ||
|
||
const isNewProfileEnabled = process.env.ENABLE_NEW_PROFILE_VIEW === 'true'; | ||
const isNewProfileEnabled = getConfig().ENABLE_NEW_PROFILE_VIEW; | ||
|
||
export default function* rootSaga() { | ||
yield all([ | ||
isNewProfileEnabled ? NewProfileSaga() : profileSaga(), | ||
isNewProfileEnabled ? newProfileSaga() : profileSaga(), | ||
]); | ||
} |
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,111 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { FormattedDate, FormattedMessage, useIntl } from '@edx/frontend-platform/i18n'; | ||
import { Hyperlink } from '@openedx/paragon'; | ||
import get from 'lodash.get'; | ||
|
||
import professionalCertificateSVG from './assets/professional-certificate.svg'; | ||
import verifiedCertificateSVG from './assets/verified-certificate.svg'; | ||
import messages from './Certificates.messages'; | ||
|
||
const CertificateCard = ({ | ||
certificateType, | ||
courseDisplayName, | ||
courseOrganization, | ||
modifiedDate, | ||
downloadUrl, | ||
courseId, | ||
uuid, | ||
}) => { | ||
const intl = useIntl(); | ||
|
||
const certificateIllustration = { | ||
professional: professionalCertificateSVG, | ||
'no-id-professional': professionalCertificateSVG, | ||
verified: verifiedCertificateSVG, | ||
honor: null, | ||
audit: null, | ||
}[certificateType] || null; | ||
|
||
return ( | ||
<div | ||
key={`${modifiedDate}-${courseId}`} | ||
className="col-auto d-flex align-items-center p-0" | ||
> | ||
<div className="col certificate p-4 border-light-400 bg-light-200 w-100 h-100"> | ||
<div | ||
className="certificate-type-illustration" | ||
style={{ backgroundImage: `url(${certificateIllustration})` }} | ||
/> | ||
<div className="d-flex flex-column position-relative p-0 width-19625rem"> | ||
<div className="w-100 color-black"> | ||
<p className="small mb-0 font-weight-normal"> | ||
{intl.formatMessage(get( | ||
messages, | ||
`profile.certificates.types.${certificateType}`, | ||
messages['profile.certificates.types.unknown'], | ||
))} | ||
</p> | ||
<h4 className="m-0 color-black">{courseDisplayName}</h4> | ||
<p className="small mb-0"> | ||
<FormattedMessage | ||
id="profile.certificate.organization.label" | ||
defaultMessage="From" | ||
/> | ||
</p> | ||
<h5 className="mb-0 color-black">{courseOrganization}</h5> | ||
<p className="small mb-0"> | ||
<FormattedMessage | ||
id="profile.certificate.completion.date.label" | ||
defaultMessage="Completed on {date}" | ||
values={{ | ||
date: <FormattedDate value={new Date(modifiedDate)} />, | ||
}} | ||
/> | ||
</p> | ||
</div> | ||
<div className="pt-3"> | ||
<Hyperlink | ||
destination={downloadUrl} | ||
target="_blank" | ||
showLaunchIcon={false} | ||
className="btn btn-primary btn-rounded font-weight-normal px-4 py-0625rem" | ||
> | ||
{intl.formatMessage(messages['profile.certificates.view.certificate'])} | ||
</Hyperlink> | ||
</div> | ||
<p className="small mb-0 pt-3"> | ||
<FormattedMessage | ||
id="profile.certificate.uuid" | ||
defaultMessage="Credential ID {certificate_uuid}" | ||
values={{ | ||
certificate_uuid: uuid, | ||
}} | ||
/> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
CertificateCard.propTypes = { | ||
certificateType: PropTypes.string, | ||
courseDisplayName: PropTypes.string, | ||
courseOrganization: PropTypes.string, | ||
modifiedDate: PropTypes.string, | ||
downloadUrl: PropTypes.string, | ||
courseId: PropTypes.string.isRequired, | ||
uuid: PropTypes.string, | ||
}; | ||
|
||
CertificateCard.defaultProps = { | ||
certificateType: 'unknown', | ||
courseDisplayName: '', | ||
courseOrganization: '', | ||
modifiedDate: '', | ||
downloadUrl: '', | ||
uuid: '', | ||
}; | ||
|
||
export default CertificateCard; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.