Skip to content

edx-abolger/frontend-app-learner-portal-enterprise

 
 

Repository files navigation

frontend-app-learner-portal-enterprise

Overview

The edX learning platform's frontend for enterprise learners.

Setup for development

Ensure you have gone through Onboarding for devs

Clone this repo: git clone <repo_url>

Install nodejs (using nvm maybe a good idea to be able to switch node versions and because there is an .nvmrc file that will be usable by nvm)

To run the project, first install dependencies

$ nvm use # will install/setup node needed for this project. Install the specified version (nvm Will help you do that) $ npm i # will install deps

then, start the dev server:

$ npm start

Visit http://localhost:8734

At this point, it will ask you to login. Use the user indicated in devstack ([email protected], edx). When logged in, expect to see a 404 since we are not setup.

Our goal is to setup a enterprise customer, obtains its slug, then visit it such as http://localhostL8734/{enterprise_slug}

Now quickly check the .env.development file for which services are used by the application. e.g. LMS_BASE_URL='http://localhost:18000' . We will get back to this.

Setup test users and data

An enterprise portal will need a couple of roles: The Enterprise customer, and at least one learner account.

Next we will setup a test-enterprise customer who will have learners associated with it (Details at The Enterprise management commands):

  • Ensure the Enterprise Integration flag is enabled in devstack see this link. Set the flag ENABLE_ENTERPRISE_INTEGRATION to True if it isn't already
  • From the devstack directory, restart lms using make lms-restart for applying changes
  • Seed test data:
    • Go into the lms shell:
       $ make lms-shell
       $ ./manage.py lms seed_enterprise_devstack_data
    
  • Go to http://localhost:18000/admin/enterprise/ and login as edx/edx
  • If you can see an Enterprise section in the admin page you are all set so far, otherwise stop and ask someone!
  • Next, ensure the Learner portal is enable for this Enterprise user:

Get familiar with learner and customer accounts

In this section you will:

  • Locate the enterprise customer test-enterprise in the Django admin page for enterprise

  • Learn how to navigate to the admin portal for that customer and view learner accounts setup during previous steps

  • Visit http://localhost:18000/admin/enterprise/ : the Django admin portal for enterprise

  • Login as edx/edx

  • Visit the Enterprise Customers link, it should be http://localhost:18000/admin/enterprise/enterprisecustomer/

    • Locate the slug for the customer named 'Test enterprise'
    • This is probably test-enterprise
    • The slug is used as a url path to visit the enterprise portal for this customer, more on that later
  • Now click on the Test Enterprise user link

  • Click on Manage learners to view learner accounts

  • This page should list at least one learner account like [email protected] (username), password is the same as edx user

Use learner portal with the edx-enterprise stack

You are now in the Learner portal for the enterpriser customer Test Enterprise, as a learner!

Next up: enroll one or more learners into your own course!

It is very useful to create multiple courses and enroll the learners into them for testing

For this, an easy way is to use the Studio! Usually at http://localhost:18010

Setup enterprise stack for local changes

You need this, if you need to make changes to the API endpoints or anything else in edx-enterprise project

We have edx-enterprise Django module running inside of the LMS (which is started by devstack). Refer to Devstack Doc for details. This is what serves endpoints used by the application. To make changes, you will replace that available install of edx-enterprise with your local version

  • Setup devstack if not already and at least have the lms service running. Typically cd'ing to the devstack folder, and running make dev.up or make dev.nfs.up will do it

  • Ensure you can browse to LMS at least, http://localhost:18000

  • Sync edx-enterprise into the src/ folder of your work folder (e.g. ~/work/src/edx-enterprise)

  • Ensure this env var is set in your env for the docker mount to be located correctly, e.g.,: DEVSTACK_WORKSPACE=/Users/$USER/work , in your shell config file

  • Either start new shell or run exec "$SHELL" for changes to take effect in the shell

  • Start backend services needed (refer to .env.development file). Refer to Devstack Doc for details

If all worked you should be able to navigate to http://localhost:18000/admin/enterprise/ But wait, it won't work yet. As long as you get some reasonable response here, you are good (probably a login page).

Making changes to edx-enterprise stack locally

Make any changes in edx-enterprise stack then

  • In your devstack folder run

    $ make lms-shell
    $ pip install -e /edx/src/edx-enterprise
    $ exit # back to regular shell
    

    This will uninstall the published edx-enterprise package and instead install your local copy from src.

  • Now any changes you make to edx-enterprise should reflect your changes

  • If you do not see your changes, restart lms and wait some time:

    $ make lms-restart
    

Presubmission

Always run npm run lint before submission. We may want a precommit hook at some point. To fix lint issues, run npm run lint -- --fix

Testing

Testing is supported with Jest and Enzyme. To run tests, use:

npm test

Code layout / components

TODO/WIP

Required reading

About

Enterprise Learner Portal

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.0%
  • SCSS 2.9%
  • Other 0.1%