Spaces:
Running
Running
File size: 2,927 Bytes
f51c1fd 42c4f80 f51c1fd d0f716d f51c1fd 42c4f80 d0f716d f51c1fd d0f716d 42c4f80 f51c1fd 42c4f80 d0f716d f51c1fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
"""
File: event_handlers.py
Author: Dmitry Ryumin
Description: File containing functions for configuring event handlers for Gradio components.
License: MIT License
"""
import gradio as gr
# Importing necessary components for the Gradio app
from app.event_handlers.files import (
event_handler_files,
event_handler_files_select,
)
from app.event_handlers.examples_blocks import event_handler_examples_blocks
from app.event_handlers.clear_blocks import event_handler_clear_blocks
from app.event_handlers.calculate_pt_scores_blocks import (
event_handler_calculate_pt_scores_blocks,
)
from app.event_handlers.practical_tasks import event_handler_practical_tasks
from app.event_handlers.practical_subtasks import event_handler_practical_subtasks
from app.event_handlers.calculate_practical_tasks import (
event_handler_calculate_practical_task_blocks,
)
def setup_app_event_handlers(
notifications,
files,
video,
examples,
calculate_pt_scores,
clear_app,
pt_scores,
csv_pt_scores,
practical_tasks,
practical_subtasks,
calculate_practical_task,
practical_subtasks_selected,
practical_tasks_column,
in_development,
):
# Events
files.change(
event_handler_files,
[files],
[notifications, video, calculate_pt_scores, clear_app],
queue=True,
)
files.select(
event_handler_files_select,
[files],
[video],
queue=True,
)
gr.on(
triggers=[calculate_pt_scores.click],
fn=event_handler_calculate_pt_scores_blocks,
inputs=[files],
outputs=[notifications, pt_scores, csv_pt_scores, practical_tasks_column],
queue=True,
)
examples.click(
fn=event_handler_examples_blocks,
inputs=[],
outputs=[
files,
],
queue=True,
)
clear_app.click(
fn=event_handler_clear_blocks,
inputs=[],
outputs=[
notifications,
files,
video,
calculate_pt_scores,
clear_app,
pt_scores,
csv_pt_scores,
practical_tasks_column,
practical_tasks,
practical_subtasks,
practical_subtasks_selected,
in_development,
],
queue=True,
)
practical_tasks.change(
event_handler_practical_tasks,
[practical_tasks, practical_subtasks_selected],
[practical_subtasks],
queue=True,
)
practical_subtasks.change(
event_handler_practical_subtasks,
[practical_tasks, practical_subtasks, practical_subtasks_selected],
[practical_subtasks_selected],
queue=True,
)
calculate_practical_task.click(
fn=event_handler_calculate_practical_task_blocks,
inputs=[],
outputs=[
in_development,
],
queue=True,
)
|