-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add modal_show/remove examples (#1628)
- Loading branch information
Showing
3 changed files
with
86 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
from shiny import App, Inputs, Outputs, Session, reactive, ui | ||
|
||
|
||
def run_model(delay=10.0): | ||
import time | ||
|
||
# Pretend to run a model for `delay` seconds | ||
start_time = time.time() | ||
while time.time() - start_time < delay: | ||
pass | ||
return time.time() | ||
|
||
|
||
def the_modal(): | ||
return ui.modal( | ||
"The model is running, please wait.", | ||
title="Running model", | ||
easy_close=False, | ||
footer=None, | ||
) | ||
|
||
|
||
app_ui = ui.page_fluid( | ||
ui.input_action_button("run", "Run Model"), | ||
) | ||
|
||
|
||
def server(input: Inputs, output: Outputs, session: Session): | ||
model_result = reactive.value() | ||
|
||
@reactive.effect | ||
@reactive.event(input.run) | ||
def do_run_model(): | ||
# Show the modal, blocking interaction with the UI | ||
ui.modal_show(the_modal()) | ||
|
||
result = run_model(delay=4) | ||
|
||
# Now that we have model results, remove the modal | ||
# and update the model result reactive value | ||
ui.modal_remove() | ||
model_result.set(result) | ||
|
||
|
||
app = App(app_ui, server) |
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,40 @@ | ||
from shiny import reactive | ||
from shiny.express import input, ui | ||
|
||
|
||
def run_model(delay=10.0): | ||
import time | ||
|
||
# Pretend to run a model for `delay` seconds | ||
start_time = time.time() | ||
while time.time() - start_time < delay: | ||
pass | ||
return time.time() | ||
|
||
|
||
ui.input_action_button("run", "Run Model") | ||
|
||
model_result = reactive.value() | ||
|
||
|
||
def the_modal(): | ||
return ui.modal( | ||
"The model is running, please wait.", | ||
title="Running model", | ||
easy_close=False, | ||
footer=None, | ||
) | ||
|
||
|
||
@reactive.effect | ||
@reactive.event(input.run) | ||
def do_run_model(): | ||
# Show the modal, blocking interaction with the UI | ||
ui.modal_show(the_modal()) | ||
|
||
result = run_model(delay=4) | ||
|
||
# Now that we have model results, remove the modal | ||
# and update the model result reactive value | ||
ui.modal_remove() | ||
model_result.set(result) |
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