-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement new App Launcher Not Running Page/Functionality (#384)
* Updates to generalize base templates. Add not running template. Add new not running page to app. * Update to redirect and display modal when not started. * Fix modal title. Fix modal styling. * Refactor urls into utils. * Update to display not running dialog when apps ready and card clicked. * Update to track app to start in session storage. * Add todo. * Add and update unit tests. * Add progress indicator to not running page. * Remove unneeded server status alert. * Fix context menu showing server not showing when click away.
- Loading branch information
Showing
26 changed files
with
805 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1 @@ | ||
{% extends "page.html" %} {% block main %} | ||
|
||
<div id="root"></div> | ||
<script src="/services/japps/static/js/index.js?v={{version_hash}}"></script> | ||
<link | ||
rel="stylesheet" | ||
href="/services/japps/static/css/index.css?v={{version_hash}}" | ||
/> | ||
<script type="text/javascript"> | ||
window.theme = { | ||
logo: "{{ logo }}", | ||
}; | ||
// Hide the navbar since using new one | ||
document.querySelector(".navbar")?.style.setProperty("display", "none"); | ||
</script> | ||
|
||
{% endblock %} | ||
{% extends "japps_page.html" %} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% extends "page.html" %} {% block main %} | ||
|
||
<div id="root"></div> | ||
<script src="/services/japps/static/js/index.js?v={{version_hash}}"></script> | ||
<link | ||
rel="stylesheet" | ||
href="/services/japps/static/css/index.css?v={{version_hash}}" | ||
/> | ||
<script type="text/javascript"> | ||
window.theme = { | ||
logo: "{{ logo }}", | ||
}; | ||
// Hide the navbar since using new one | ||
document.querySelector(".navbar")?.style.setProperty("display", "none"); | ||
</script> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "japps_page.html" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.card-dialog-body-wrapper { | ||
padding: 0px 24px; | ||
padding: 0px 24px 8px 24px; | ||
} | ||
|
||
.card-dialog-body { | ||
|
Oops, something went wrong.