File size: 2,974 Bytes
18c6efd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr
import os 

from process import process_data 

def makeButtonClickableFiles(files):
    """Makes a button interactive only if all files in the list have correct extensions.



    Args:

        files (list): List of uploaded file objects.



    Returns:

        _type_: Button state (interactive or not) and possibly a warning message.

    """
    if not files:
        return gr.Button(interactive=False)
    
    allowed_extensions = ["xls", "xlsx"]
    for file in files:
        base_name = os.path.basename(file.name)
        # Extract the file extension and check if it's in the allowed list.
        if base_name.split('.')[-1].lower() not in allowed_extensions:
            raise gr.Error(f"Unsupported file: {base_name}.Allowed extensions: .xls .xlsx")

    return gr.Button(interactive=True)


# Define a Gradio interface

with gr.Blocks() as demo:

    with gr.Row(): 
        header = gr.Markdown(("<h1>MindBody VS. Medserv Checker </h1>"))
    
    with gr.Row():

        with gr.Column():
            file_uploader_mindbody = gr.Files(
            label=("Upload MindBody"),
            file_count="multiple",
            file_types=[".xlsx", '.xls'],
            container=True,
            interactive=True,
            scale=1,
            )        


        with gr.Column():
            file_uploader_medserv = gr.Files(
            label=("Upload Medserv"),
            file_count= "multiple",
            file_types=[".xlsx", '.xls'],
            container=True,
            interactive=True,
            scale=1,
        )
    
    with gr.Row():
        tollerance = gr.Slider(0, 7, value = 1, step = 1, interactive = True,  label="Days Tollerance", 
                  info="Set the number of days of tolerance to match the sale dates between MindBody and Medserve (0 = no tolerance / exact match).")

    with gr.Row():

        file_process_button = gr.Button(
        value="PROCESS FILES",
        interactive=False,
        )
    
    with gr.Row():
        processed_file = gr.Files(
        label=("Output File"),
        file_count="single",
        interactive=False,
        elem_classes="gradio-file",
    )




    file_uploader_mindbody.change(
                        fn=makeButtonClickableFiles, 
                        inputs=[file_uploader_mindbody], 
                        outputs=[file_process_button])

    
    file_uploader_medserv.change(
                        fn=makeButtonClickableFiles, 
                        inputs=[file_uploader_medserv], 
                        outputs=[file_process_button])
    
    
    file_process_button.click(
                        fn = process_data,
                        inputs = [file_uploader_mindbody, file_uploader_medserv, tollerance], 
                        outputs = processed_file)

                    
if __name__ == "__main__":
    demo.queue().launch()