Skip to content

Commit

Permalink
Update App Launcher Services based on new design (nebari-dev#187)
Browse files Browse the repository at this point in the history
* Update service section components. Update cards for service specific apps. Update navigation for pinned services.

* Update to display services when no pinned. Add new logos. Update logo configurations.

* Fix initial app sorting.

* Update app description hover effect to only display if description. Fix app chip styling. Misc styling updates.

* More style fixes.

* Add and update unit tests.

* Add new build files.

* Fix build job to support both local and forked prs.

* Update build action.
  • Loading branch information
jbouder authored Apr 4, 2024
1 parent d95f054 commit 6c5d644
Show file tree
Hide file tree
Showing 39 changed files with 805 additions and 457 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout
- name: Checkout current repo head to support automated local PRs
if: github.event.pull_request.head.repo.full_name == github.repository
uses: actions/checkout@v4.1.1
with:
ref: ${{ github.head_ref }}
fetch-depth: 2

- name: Checkout default if not upstream repo
if: github.event.pull_request.head.repo.full_name != github.repository
uses: actions/checkout@v4.1.1

- id: check_label
name: Check PL labels
uses: docker://agilepathway/pull-request-label-checker:v1.6.21
Expand Down
2 changes: 1 addition & 1 deletion jhub_apps/spawner/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def values(cls):
FrameworkConf(
name=Framework.custom.value,
display_name="Custom Command",
logo="/services/japps/static/img/logos/jupyter.png",
logo="/services/japps/static/img/logos/custom.png",
),
]

Expand Down
2 changes: 1 addition & 1 deletion jhub_apps/static/css/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified jhub_apps/static/img/logos/bokeh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added jhub_apps/static/img/logos/conda-store.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added jhub_apps/static/img/logos/custom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified jhub_apps/static/img/logos/gradio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified jhub_apps/static/img/logos/jupyter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified jhub_apps/static/img/logos/panel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified jhub_apps/static/img/logos/plotly-dash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified jhub_apps/static/img/logos/streamlit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified jhub_apps/static/img/logos/voila.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added jhub_apps/static/img/logos/vscode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6c5d644

Please sign in to comment.