-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
43 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from shiny import App, ui, reactive, render | ||
|
||
|
||
def analysis_ui(): | ||
return ui.nav_panel( | ||
"Perform Analysis", | ||
"TODO: Define analysis", | ||
ui.input_action_button("go_to_results", "Download results"), | ||
value="analysis_panel", | ||
) |
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,12 @@ | ||
from shiny import App, ui, module, reactive, render | ||
|
||
|
||
def dataset_ui(): | ||
return ui.nav_panel( | ||
"Select Dataset", | ||
"TODO: Pick dataset", | ||
ui.output_text("csv_path_text"), | ||
ui.output_text("unit_of_privacy_text"), | ||
ui.input_action_button("go_to_analysis", "Perform analysis"), | ||
value="dataset_panel", | ||
) |
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 @@ | ||
from shiny import App, ui, reactive, render | ||
|
||
|
||
def results_ui(): | ||
return ui.nav_panel( | ||
"Download Results", | ||
"TODO: Download Results", | ||
ui.download_button("download_script", "Download script"), | ||
# TODO: Notebook code is badly formatted | ||
# ui.download_button( | ||
# "download_notebook_unexecuted", "Download notebook (unexecuted)" | ||
# ), | ||
# ui.download_button( | ||
# "download_notebook_executed", "Download notebook (executed)" | ||
# ) | ||
value="results_panel", | ||
) |