Skip to content

A JupyterLab server extension that provides Jupyter-Book navigation via a sidepanel widget holding a Jupyter-Book table of contents.

License

Notifications You must be signed in to change notification settings

ASFOpenSARlab/jb-toc

Repository files navigation

jb-toc

Github Actions StatusBinder lite-badge

A JupyterLab extension that provides Jupyter Book navigation in a sidepanel widget with a Jupyter Book table of contents.

Requirements

  • JupyterLab >= 4.0.0 < 5

Installation Options

This JupyterLab extension contains a frontend extension (jb-toc-frontend) as well as a server extension (jb-toc).

Option 1 (Recommended)

Install jb-toc (installs both the frontend and server extensions)

  • When: Anytime you have a Jupyter Server, which is most of the time, and anytime you are running Jupyter Lab.

  • Why: When Jupyter Server is available, this is the reliably faster option for loading a Jupyter Book TOC.

  • Note: If accidentally installed in a serverless environmnent, the extension will default to frontend-only mode and still work.

To install both jb-toc and jb-toc-frontend, execute:

python -m pip install jb-toc

Option 2:

Install jb-toc-frontend (installs only the frontend extension)

  • When: When using JupyterLite. In a lightweight serverless environment where you want to avoid unessecarily installing the server extension.

  • Why: If Jupyter Server is not available, jb-toc-frontend can still access the files it needs to build the TOC (but more slowly).

  • Don't: Have a frontend-only installation on a JupyterHub. It will take >3 seconds to load a TOC, and the hub has a Jupyter Server, so you should install jb-toc for a faster experience.

To install jb-toc-frontend, execute:

python -m pip install jb-toc-frontend

Uninstall

To remove the jb-toc extension, execute:

python -m pip uninstall jb-toc

To remove the jb-toc-frontend extension, execute:

python -m pip uninstall jb-toc-frontend

Contributing

Development install

Note: You will need NodeJS to build the extension package.

# Clone the repo to your local environment
# Change directory to the jb-toc directory
# Install package in development mode
# Install `jb-toc-frontend` first, as it is a dependency of `jb-toc`
python -m pip install -e ./jb_toc_frontend
python -m pip install -e ./jb_toc
# Link your development version of the extension with JupyterLab
jupyter labextension develop --overwrite
# Rebuild `jb-toc-frontend` Typescript source after making changes
jlpm --cwd ./jb_toc_frontend build

You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.

# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm --cwd ./jb_toc_frontend watch
# Run JupyterLab in another terminal
jupyter lab

With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).

By default, the jlpm build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:

jupyter lab build --minimize=False

Development uninstall

python -m pip uninstall jb-toc
python -m pip uninstall jb-toc-frontend

In development mode, you will also need to remove the symlink created by jupyter labextension develop command. To find its location, you can run jupyter labextension list to figure out where the labextensions folder is located. Then you can remove the symlink named jb-toc-frontend within that folder.

Testing the extension

Frontend tests

This extension is using Jest for JavaScript code testing.

To execute them, execute:

jlpm --cwd ./jb_toc_frontend
jlpm --cwd ./jb_toc_frontend test

Integration tests

This extension uses Playwright for the integration tests (aka user level tests). More precisely, the JupyterLab helper Galata is used to handle testing the extension in JupyterLab.

More information are provided within the ui-tests README.

Packaging the extension

See RELEASE

About

A JupyterLab server extension that provides Jupyter-Book navigation via a sidepanel widget holding a Jupyter-Book table of contents.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •