import gradio as gr import pandas as pd # Function to load the menu data def load_menu(): menu_file = "menu.xlsx" # Ensure this file exists in the same directory try: return pd.read_excel(menu_file) except Exception as e: raise ValueError(f"Error loading menu file: {e}") # Initialize cart globally cart_items = [] # Pricing for extras EXTRAS_PRICES = { "Extra Raitha 4oz": 1, "Extra Raitha 8oz": 2, "Extra Salan 4oz": 1, "Extra Salan 8oz": 2, "Extra Onion": 1, "Extra Onion & Lemon": 2, "Extra Fried Onion 4oz": 2, } # Function to filter menu items based on preference def filter_menu(preference): menu_data = load_menu() if preference == "Halal/Non-Veg": filtered_data = menu_data[menu_data["Ingredients"].str.contains("Chicken|Mutton|Fish|Prawns|Goat", case=False, na=False)] elif preference == "Vegetarian": filtered_data = menu_data[~menu_data["Ingredients"].str.contains("Chicken|Mutton|Fish|Prawns|Goat", case=False, na=False)] elif preference == "Guilt-Free": filtered_data = menu_data[menu_data["Description"].str.contains(r"Fat: ([0-9]|10)g", case=False, na=False)] else: filtered_data = menu_data html_content = "" for _, item in filtered_data.iterrows(): html_content += f"""
${item['Price ($)']}
{item['Description']}
Total Bill: ${total_bill:.2f}
" return cart_html # Function to submit the cart and display on a new page def submit_cart(): if len(cart_items) == 0: return "Your cart is empty.
" total_bill = 0 order_html = "Total Bill: ${total_bill:.2f}
" return order_html # Gradio app definition def app(): with gr.Blocks() as demo: gr.Markdown("## Dynamic Menu with Preferences") # Radio button for selecting preference selected_preference = gr.Radio( choices=["All", "Vegetarian", "Halal/Non-Veg", "Guilt-Free"], value="All", label="Choose a Preference", ) # Output area for menu items menu_output = gr.HTML(value=filter_menu("All")) # Floating cart display cart_output = gr.HTML(value=update_cart(), elem_id="floating-cart") # Submit button for the cart submit_button = gr.Button("Submit Order") # Output for the new page (order details) order_output = gr.HTML() # Submit button action to display the order details on a new page submit_button.click(fn=submit_cart, inputs=[], outputs=order_output) # Layout gr.Row([selected_preference]) gr.Row(menu_output) gr.Row(cart_output) gr.Row([submit_button]) gr.Row(order_output) return demo if __name__ == "__main__": demo = app() demo.launch()