Skip to main content

🪐 ⚛️ About Jupyter UI

Jupyter UI is a set of React.js components that allow a frontend developer to build data products compatible with the Jupyter ecosystem. The user interface delivers executable notebooks, cells, terminals, file browsers and allows the developer to manage a full integrated React tree instead of relying on iframes to display the Jupyter noteboks.

The Jupyter(Lab) Notebook is a tool that allows data scientist to analyse dataset. However, it is not easy to create a custom user interface integrated in an existing application. Jupyter UI, an open-source library, fills that gap and provides components that a developer can easily integrate in any React.js application.

We ensure React.js as a first-class citizen in the Jupyter:

You can get kick-started with simple examples

Problems with JupyterLab for Web developers

In terms of technical stack, the Jupyter(Lab) user interface is built on top of Lumino, which is an imperative way to build user interface and can not be consumed by industry standard declarative frameworks like React.js. As a user interface developer, if you want to create a custom data product on top of Jupyter, you have to stick to Lumino and carry-on the full notebook interface not tailored to your specific needs. This is not what you want. You just want to expose what you need, you want to develop with your favorite toolkit (like React.js) and you also want to integrate on a per-component basis the Jupyter functionality in your application.

JupyterLab is built on the Lumino widget toolkit.

  1. Lumino allows to wrap React components and expose them as Lumino Widgets.
  2. React.js can not use Lumino Widgets.
caution

Although a developer can embed a React.js component into JupyterLab, the reverse is not possible.

You can NOT embed JupyterLab into a React.js application.

Jupyter UI at the rescue

Jupyter UI provides the foundations to build a modern and flexible data prodcut user interface. Underneath, it gathers the minimum set of Lumino and JupyterLab technologies. We wrap Lumino Widget in a React.js component and expose Redux Observables actions that proxy Lumino Commands. We bind Redux Observables Epics to Lumino Signals. Those bindings convert Lumino Signals to Observable to run the needed actions in the Observable Epics.

  • Services to connect to kernels.
  • Extension injection system.
  • Lumino signals and messages integrated with Redux.
  • Lumino commands.

To solve the above issues, Jupyter UI ships components to easily create a React.js data product compatible with the Jupyter ecosystem. Those components can be used in any React.js application, and also in static websites like Docusaurus, Next.js or Remix. They wrap underneath the JupyterLab code and allow developing React.js applications with code execution capability. State management is based on Redux, and Mobx is to be added.

The Jupyter UI components expose JupyterLab visuals as React.js components and offers a bi-directional communication between React.js/Redux and JupyterLab/Lumino.

Host application -> Redux Observable Actions -> Jupyter UI -> JupyterLab Commands
Host application <- Redux State <- Redux Observable Epics <- Jupyter UI <- JupyterLab Signals
Jupyter UI Communication

JupyterLab/Lumino is heavily built on top of factories. Jupyter UI uses those to create the ad-hoc widgets. IPyWidgets and Comm are supported. JupyterLite and PyScript support is on the roadmap. Autocompletion is also available.

You can find more context reading this abstract of the talk given at FOSDEM 2022 (video recording).

Examples

The below image shows a gallery of the available React.js components ready to be used in you custom application. These open source components are used to build the online Datalayer platform, a collaborative platform for data analysis.

Jupyter UI Gallery

Open Source

The open source components removes the above limitations and supports:

  • Predefined Redux actions, epics and reducers with Observable Epics
  • Everything is created in a single React tree to ensure Jupyter UI components can use any context created by the host application.
  • IPyWidgets and Panel interactive widgets are supported.
  • Collaborative RTC is also supported.
  • Plays nice with Jupyter Auth, Jupyterpool, Primer React, Material-UI , Storybook, Docusaurus, Emotion.js... and many other standard libraries.
  • A React.js context for Authentication, Authorization, Theming and Redux injectable store.
  • Benefits from current and new JupyterLab development, eg edit mode navigation, colored-collapser, collaborative cursor.
  • Authentication via Jupyter tokens.
  • Theming.
  • Terminals.

Listed

Listed on: