@naavre/catalogue-jupyterlab
v0.1.3
Published
NaaVRE assets catalogue frontend on Jupyter Lab
Readme
NaaVRE_catalogue_jupyterlab
NaaVRE assets catalogue frontend on Jupyter Lab
Requirements
- JupyterLab >= 4.0.0
Install
To install the extension, execute:
pip install NaaVRE_catalogue_jupyterlabUninstall
To remove the extension, execute:
pip uninstall NaaVRE_catalogue_jupyterlabContributing
Development install
Note: You will need NodeJS to build the extension package.
The jlpm command is JupyterLab's pinned version of
yarn that is installed with JupyterLab. You may use
yarn or npm in lieu of jlpm below.
# Clone the repo to your local environment
# Change directory to the NaaVRE_catalogue_jupyterlab directory
# Set up a virtual environment and install package in development mode
python -m venv venv
source venv/bin/activate
# Install jupyterlab and refresh the virtual environment
pip install 'jupyterlab>=4.0.0,<5'
. venv/bin/activate
# Install package in development mode
pip install --editable "."
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Rebuild extension Typescript source after making changes
# IMPORTANT: Unlike the steps above which are performed only once, do this step
# every time you make a change.
jlpm buildThis extension communicates with external NaaVRE services. During development, you can run a local version of those services with Docker compose. Initial setup:
- Copy the Jupyter Lab configuration
mkdir venv/share/jupyter/lab/settings/ cp dev/overrides.json venv/share/jupyter/lab/settings/ - Start docker compose
docker compose -f dev/docker-compose.yaml up
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 watch
# Run JupyterLab in another terminal
export $(xargs < dev/jupyterlab.env && jupyter lab --notebook-dir ./notebook-dirWith 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=FalseDevelopment uninstall
pip uninstall NaaVRE_catalogue_jupyterlabIn 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 @naavre/catalogue-jupyterlab within that folder.
Isolated component development
Rebuilding the extension and refreshing JupyterLab to see changes in the browser takes several seconds. This makes it hard to quickly iterate on presentation aspects such as layout.
To get a quick preview of some components, we use Storybook:
jlpm run storybookNote that in Storybook, components don’t get the full context from Jupyter Lab and rely on some mocking. To access all interaction features, you still need to run it in JupyterLab.
Testing the extension
Frontend tests
This extension is using Jest for JavaScript code testing.
To execute them, execute:
jlpm
jlpm testIntegration 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
