/* eslint-disable no-use-before-define */ import React, { useEffect, useState, } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { sendTrackEvent, sendTrackingLogEvent, } from '@edx/frontend-platform/analytics'; import { injectIntl, intlShape } from '@edx/frontend-platform/i18n'; import { useSelector } from 'react-redux'; import { history } from '@edx/frontend-platform'; import SequenceExamWrapper from '@edx/frontend-lib-special-exams'; import { breakpoints, useWindowSize } from '@edx/paragon'; import PageLoading from '../../../generic/PageLoading'; import { useModel } from '../../../generic/model-store'; import { useSequenceBannerTextAlert, useSequenceEntranceExamAlert } from '../../../alerts/sequence-alerts/hooks'; import CourseLicense from '../course-license'; import Sidebar from '../sidebar/Sidebar'; import SidebarTriggers from '../sidebar/SidebarTriggers'; import messages from './messages'; import HiddenAfterDue from './hidden-after-due'; import { SequenceNavigation, UnitNavigation } from './sequence-navigation'; import SequenceContent from './SequenceContent'; function Sequence({ unitId, sequenceId, courseId, unitNavigationHandler, nextSequenceHandler, previousSequenceHandler, intl, }) { const course = useModel('coursewareMeta', courseId); const { isStaff, originalUserIsStaff, } = useModel('courseHomeMeta', courseId); const sequence = useModel('sequences', sequenceId); const unit = useModel('units', unitId); const sequenceStatus = useSelector(state => state.courseware.sequenceStatus); const sequenceMightBeUnit = useSelector(state => state.courseware.sequenceMightBeUnit); const shouldDisplayNotificationTriggerInSequence = useWindowSize().width < breakpoints.small.minWidth; const handleNext = () => { const nextIndex = sequence.unitIds.indexOf(unitId) + 1; if (nextIndex < sequence.unitIds.length) { const newUnitId = sequence.unitIds[nextIndex]; handleNavigate(newUnitId); } else { nextSequenceHandler(); } }; const handlePrevious = () => { const previousIndex = sequence.unitIds.indexOf(unitId) - 1; if (previousIndex >= 0) { const newUnitId = sequence.unitIds[previousIndex]; handleNavigate(newUnitId); } else { previousSequenceHandler(); } }; const handleNavigate = (destinationUnitId) => { unitNavigationHandler(destinationUnitId); }; const logEvent = (eventName, widgetPlacement, targetUnitId) => { // Note: tabs are tracked with a 1-indexed position // as opposed to a 0-index used throughout this MFE const currentIndex = sequence.unitIds.length > 0 ? sequence.unitIds.indexOf(unitId) : 0; const payload = { current_tab: currentIndex + 1, id: unitId, tab_count: sequence.unitIds.length, widget_placement: widgetPlacement, }; if (targetUnitId) { const targetIndex = sequence.unitIds.indexOf(targetUnitId); payload.target_tab = targetIndex + 1; } sendTrackEvent(eventName, payload); sendTrackingLogEvent(eventName, payload); }; useSequenceBannerTextAlert(sequenceId); useSequenceEntranceExamAlert(courseId, sequenceId, intl); useEffect(() => { function receiveMessage(event) { const { type } = event.data; if (type === 'entranceExam.passed') { // I know this seems (is) intense. It is implemented this way since we need to refetch the underlying // course blocks that were originally hidden because the Entrance Exam was not passed. global.location.reload(); } } global.addEventListener('message', receiveMessage); }, []); const [unitHasLoaded, setUnitHasLoaded] = useState(false); const handleUnitLoaded = () => { setUnitHasLoaded(true); }; // We want hide the unit navigation if we're in the middle of navigating to another unit // but not if other things about the unit change, like the bookmark status. // The array property of this useEffect ensures that we only hide the unit navigation // while navigating to another unit. useEffect(() => { if (unit) { setUnitHasLoaded(false); } }, [(unit || {}).id]); // If sequence might be a unit, we want to keep showing a spinner - the courseware container will redirect us when // it knows which sequence to actually go to. const loading = sequenceStatus === 'loading' || (sequenceStatus === 'failed' && sequenceMightBeUnit); if (loading) { if (!sequenceId) { return (
{intl.formatMessage(messages.loadFailure)}
); } Sequence.propTypes = { unitId: PropTypes.string, sequenceId: PropTypes.string, courseId: PropTypes.string.isRequired, unitNavigationHandler: PropTypes.func.isRequired, nextSequenceHandler: PropTypes.func.isRequired, previousSequenceHandler: PropTypes.func.isRequired, intl: intlShape.isRequired, }; Sequence.defaultProps = { sequenceId: null, unitId: null, }; export default injectIntl(Sequence);