File size: 1,408 Bytes
f16bb9f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
File: event_handlers.py
Author: Dmitry Ryumin, Maxim Markitantov, Elena Ryumina, Anastasia Dvoynikova, and Alexey Karpov
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.video import event_handler_video
from app.event_handlers.submit import event_handler_submit
from app.event_handlers.clear import event_handler_clear


def setup_app_event_handlers(
    video,
    clear,
    submit,
    noti_results,
    waveform,
    faces,
    emotion_stats,
    sent_stats,
):
    gr.on(
        triggers=[video.change, video.upload, video.stop_recording, video.clear],
        fn=event_handler_video,
        inputs=[video],
        outputs=[clear, submit, noti_results],
        queue=True,
    )

    submit.click(
        fn=event_handler_submit,
        inputs=[video],
        outputs=[
            noti_results,
            waveform,
            faces,
            emotion_stats,
            sent_stats,
        ],
        queue=True,
    )

    clear.click(
        fn=event_handler_clear,
        inputs=[],
        outputs=[
            video,
            clear,
            submit,
            noti_results,
            waveform,
            faces,
            emotion_stats,
            sent_stats,
        ],
        queue=True,
    )