This also renames the CourseExit url from /course/{course_id}/course-exit
to /course/{course_id}/course-end for better UX.
102 lines
3.3 KiB
JavaScript
102 lines
3.3 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Button } from '@edx/paragon';
|
|
import classNames from 'classnames';
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
import { faChevronLeft, faChevronRight } from '@fortawesome/free-solid-svg-icons';
|
|
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
|
|
|
|
import { useSelector } from 'react-redux';
|
|
import { getCourseExitText } from '../../course-exit';
|
|
import UnitButton from './UnitButton';
|
|
import SequenceNavigationTabs from './SequenceNavigationTabs';
|
|
import { useSequenceNavigationMetadata } from './hooks';
|
|
import { useModel } from '../../../../generic/model-store';
|
|
import { LOADED } from '../../../data/slice';
|
|
|
|
import messages from './messages';
|
|
|
|
function SequenceNavigation({
|
|
intl,
|
|
unitId,
|
|
sequenceId,
|
|
className,
|
|
onNavigate,
|
|
nextSequenceHandler,
|
|
previousSequenceHandler,
|
|
goToCourseExitPage,
|
|
}) {
|
|
const sequence = useModel('sequences', sequenceId);
|
|
const { isFirstUnit, isLastUnit } = useSequenceNavigationMetadata(sequenceId, unitId);
|
|
const {
|
|
courseId,
|
|
sequenceStatus,
|
|
} = useSelector(state => state.courseware);
|
|
const isLocked = sequenceStatus === LOADED ? (
|
|
sequence.gatedContent !== undefined && sequence.gatedContent.gated
|
|
) : undefined;
|
|
|
|
const renderUnitButtons = () => {
|
|
if (isLocked) {
|
|
return (
|
|
<UnitButton unitId={unitId} title="" contentType="lock" isActive onClick={() => {}} />
|
|
);
|
|
}
|
|
if (sequence.unitIds.length === 0 || unitId === null) {
|
|
return (
|
|
<div style={{ flexBasis: '100%', minWidth: 0, borderBottom: 'solid 1px #EAEAEA' }} />
|
|
);
|
|
}
|
|
return (
|
|
<SequenceNavigationTabs
|
|
unitIds={sequence.unitIds}
|
|
unitId={unitId}
|
|
showCompletion={sequence.showCompletion}
|
|
onNavigate={onNavigate}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const renderNextButton = () => {
|
|
const exitText = getCourseExitText(courseId, intl);
|
|
const buttonOnClick = isLastUnit ? goToCourseExitPage : nextSequenceHandler;
|
|
const buttonText = (isLastUnit && exitText) ? exitText : intl.formatMessage(messages.nextButton);
|
|
const disabled = isLastUnit && !exitText;
|
|
return (
|
|
<Button variant="link" className="next-btn" onClick={buttonOnClick} disabled={disabled}>
|
|
{buttonText}
|
|
<FontAwesomeIcon icon={faChevronRight} className="ml-2" size="sm" />
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
return sequenceStatus === LOADED && (
|
|
<nav className={classNames('sequence-navigation', className)}>
|
|
<Button variant="link" className="previous-btn" onClick={previousSequenceHandler} disabled={isFirstUnit}>
|
|
<FontAwesomeIcon icon={faChevronLeft} className="mr-2" size="sm" />
|
|
{intl.formatMessage(messages.previousButton)}
|
|
</Button>
|
|
{renderUnitButtons()}
|
|
{renderNextButton()}
|
|
</nav>
|
|
);
|
|
}
|
|
|
|
SequenceNavigation.propTypes = {
|
|
intl: intlShape.isRequired,
|
|
sequenceId: PropTypes.string.isRequired,
|
|
unitId: PropTypes.string,
|
|
className: PropTypes.string,
|
|
onNavigate: PropTypes.func.isRequired,
|
|
nextSequenceHandler: PropTypes.func.isRequired,
|
|
previousSequenceHandler: PropTypes.func.isRequired,
|
|
goToCourseExitPage: PropTypes.func.isRequired,
|
|
};
|
|
|
|
SequenceNavigation.defaultProps = {
|
|
className: null,
|
|
unitId: null,
|
|
};
|
|
|
|
export default injectIntl(SequenceNavigation);
|