Fancy Profile UI for jupyterhub-kubespawner
Project description
jupyterhub-fancy-profiles
Goals
This is a pure prototype, exploring answers to the following questions:
-
How to sustainably develop complex UIs that sit in the kubespawner profile selector page without requiring strong coupling with kubespawner itself, or unmaintainable stuff that is copy pasted into YAML config?
-
How to bundle JS & CSS properly into this kinda UI, so we can use modern frontend practices to build the UI without having to do weird tricks?
-
How to package assets in such a way that admins can install these complex UIs without needing changes to JupyterHub or KubeSpawner?
-
How to best use custom jinja2 templates in KubeSpawner's profile_list, as enabled by this PR
We could answer other questions in the future, but this is what is needed right now.
How to use
Once installed, you can have kubespawner use the templates shipped
with this package to provide appropriate UI, by adding the following snippet
to your jupyterhub_config.py
file:
from jupyterhub_fancy_profiles import setup_ui
setup_ui(c)
The setup_ui
function will setup all the appropriate config as needed. Currently,
it will:
- Setup extra templates to be made available to kubespawner, to render the
base HTML for
profile_list
. - Setup extra HTTP handlers, primarily for serving our static assets.
What is in here?
The primary contents are:
jupyterhub_fancy_profiles/templates
contains jinja2 templates, primarilyHTML
for constructing the form itself. This can contain multiple templates that are composed together using all of jinja2's composition features (likeinclude
)src/
contains JS and CSS that are packaged via standard frontend bundling tools (webpack
andbabel
), outputing assets intojupyterhub_fancy_profiles/static/
. This allows us to use standard frontend tooling to write JS & CSS - for example, xterm.js can be used without many complications.
Why React?
/* If this file gets over 200 lines of code long (not counting docs / comments), start using a framework
(from the BinderHub JS Source Code)
Dear Reader, the file did get more than 200 lines long, but alas there was no time to start using a framework. Lesson learnt from that is we should use a very lightweight framework right from the start, something mainstream that can attract frontend devs without being so fancy that nobody else can work on it. Given the size and complexity of this - a complex UI but only a single page - plain react without typescript seems the correct choice. We will not make this into a super-heavy, complex application - just a fairly simple one that uses react.
Where this fits in
This project puts UI in the KubeSpawner's 'profilelist' page, which allows users to select options they want to spawn their server with. As such, it is _injected into the pre-existing HTML of that page. As of JupyterHub 4.0, that page uses Bootstrap 3 for styling, so that is what is available to us. We should upgrade to Bootstrap 5 at some point - until then, we have to use Bootstrap 3. Since this package and JupyterHub are both versioned, we can easily transition once JupyterHub releases a version with Bootstrap 5.
Current state
This is how the app looks right now, to show how the user flow might be. Note that we aren't quite at a stage to do proper UX yet, so hold your UX thoughts for now. We're currently trying to figure out the technical parts of building and deploying this sustainably, and figuring out UX will definitely be next!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jupyterhub-fancy-profiles-0.1.0.tar.gz
.
File metadata
- Download URL: jupyterhub-fancy-profiles-0.1.0.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9373408910644f75dbd9e1b962c3f152449b5b53a587fb88bdb0a8ff1d7d89a |
|
MD5 | a5be998e375a80e629bae2ccc5138b30 |
|
BLAKE2b-256 | 234f6b61653481442fd21516b5888510b5ef52f99d8252c989b015f8f527d0c9 |
File details
Details for the file jupyterhub_fancy_profiles-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: jupyterhub_fancy_profiles-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99dfc6a6ef9e04e46423d609dbb8fb808e929ec08584155a278e0b6f0a78d0dd |
|
MD5 | d42e6177f432c99d318fde776ff96517 |
|
BLAKE2b-256 | 8b721c15f3ec64d9ab23f267bab0c3f563c1477806092491bd5d31ed1ebd2bff |