3e14b1727129686e454c31fd030b9d9ef618635a
* Do not redirect when the sequenceId is not valid That is, if firstSequenceId is null or undefined. This prevents the url becoming bogus but does cause the course contents display to become stuck with the loading message. * Detect invalid sequence when loading If the course has no sections or the first section has no sub-sections, then sequence will be null. Before the redirection fix, this would cause an error, but after, the sequenceStatus never leaves the loading state. Thus, if still loading and the sequence is null, return the no.content message. * Check sequenceId instead of sequence From David Joy: During initial page load, I expect there's a period of time before the course blocks API and the sequence metadata API come back where the sequenceStatus is loading but the sequence is still false, meaning that we'll see a flash of this 'no content' messaging for a moment before the data comes in. If we instead check whether sequenceId is null here, that may give us a more accurate condition. The sequenceId in redux is only populated when we begin to request a sequence (fetchSequence thunk). If we have no sequence ID in the URL route, then fetchSequence never happens and the sequenceId in redux stays null. * Fix up some additional errors Piotr found This fixes errors caused by deleting units or subsections. * Move test for unit validity to SequenceContent
…
…
[BD-29] [TNL-7288] Fix front-end behavior when the course has no sections or no subsections in the first section (#98)
…
…
…
|Build Status| |Coveralls| |npm_version| |npm_downloads| |license| frontend-app-learning ========================= Please tag **@edx/teaching-and-learning** on any PRs or issues. Thanks. Introduction ------------ React app for edX learning. .. |Build Status| image:: https://api.travis-ci.org/edx/frontend-app-learning.svg?branch=master :target: https://travis-ci.org/edx/frontend-app-learning .. |Coveralls| image:: https://img.shields.io/coveralls/edx/frontend-app-learning.svg?branch=master :target: https://coveralls.io/github/edx/frontend-app-learning .. |npm_version| image:: https://img.shields.io/npm/v/@edx/frontend-app-learning.svg :target: @edx/frontend-app-learning .. |npm_downloads| image:: https://img.shields.io/npm/dt/@edx/frontend-app-learning.svg :target: @edx/frontend-app-learning .. |license| image:: https://img.shields.io/npm/l/@edx/frontend-app-learning.svg :target: @edx/frontend-app-learning Development ----------- Start Devstack ^^^^^^^^^^^^^^ To use this application `devstack <https://github.com/edx/devstack>`__ must be running and you must be logged into it. - Start devstack - Log in (http://localhost:18000/login) Start the development server ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ In this project, install requirements and start the development server by running: .. code:: bash npm install npm start # The server will run on port 1995 Once the dev server is up, visit http://localhost:2000/course/course-v1:edX+DemoX+Demo_Course to view the demo course. You can replace ``course-v1:edX+DemoX+Demo_Course`` with a different course key.
Languages
JavaScript
84.8%
TypeScript
13.1%
SCSS
1.9%
Makefile
0.1%