File size: 2,564 Bytes
f65f970
 
 
 
8fb83ea
 
1ff1c4f
77b50a3
1ff1c4f
 
 
77b50a3
1ff1c4f
 
77b50a3
1ff1c4f
 
 
 
 
 
 
 
77b50a3
1ff1c4f
 
 
 
 
 
 
 
 
 
 
77b50a3
1ff1c4f
 
 
ec96e6b
1ff1c4f
 
 
77b50a3
 
 
1ff1c4f
77b50a3
ec96e6b
 
1ff1c4f
c0caa98
1ff1c4f
 
 
ec96e6b
1ff1c4f
 
 
 
 
 
9b01074
1ff1c4f
 
c0caa98
1ff1c4f
ec96e6b
 
1ff1c4f
 
 
 
 
9b01074
1ff1c4f
 
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
import gradio as gr
from simple_salesforce import Salesforce

# Salesforce Connection
sf = Salesforce(username='[email protected]', password='Sati@1020', security_token='sSSjyhInIsUohKpG8sHzty2q')

# Fetch menu items from Salesforce
def fetch_menu_items():
    query = "SELECT Id, Name, Price__c, Description__c, Image1__c FROM Menu_Item__c"
    records = sf.query(query)["records"]
    return records

# Fetch cart items (local data structure for demonstration)
cart_items = []

# Add item to cart
def add_to_cart(item_id, name, price):
    for item in cart_items:
        if item["id"] == item_id:
            item["quantity"] += 1
            return f"{name} added to the cart!", cart_items
    cart_items.append({"id": item_id, "name": name, "price": price, "quantity": 1})
    return f"{name} added to the cart!", cart_items

# Display cart items
def view_cart():
    cart_html = ""
    total_items = 0
    total_price = 0
    for item in cart_items:
        cart_html += f"<p>{item['name']} - ₹{item['price']} x {item['quantity']}</p>"
        total_items += item["quantity"]
        total_price += item["price"] * item["quantity"]
    cart_html += f"<h3>Total: ₹{total_price} ({total_items} items)</h3>"
    return cart_html

# Generate menu page HTML
def generate_menu_page(menu_items):
    menu_html = ""
    for item in menu_items:
        menu_html += f"""
        <div style="display: flex; align-items: center; margin-bottom: 20px;">
            <img src="{item['Image1__c']}" style="width: 100px; height: 100px; margin-right: 20px;">
            <div>
                <h4>{item['Name']}</h4>
                <p>₹{item['Price__c']}</p>
                <button onclick="add_to_cart('{item['Id']}', '{item['Name']}', {item['Price__c']})">Add</button>
            </div>
        </div>
        """
    return menu_html

# Fetch menu items for display
menu_items = fetch_menu_items()
menu_html = generate_menu_page(menu_items)

# Gradio interface for menu page
def menu_interface():
    return menu_html, gr.update(visible=False)

def cart_interface():
    return view_cart(), gr.update(visible=True)

# Gradio setup
with gr.Blocks() as demo:
    with gr.Row():
        gr.Markdown("# Welcome to Biryani Hub")

    with gr.Row():
        menu_display = gr.HTML(value=menu_html, interactive=False)
        cart_button = gr.Button("View Cart", visible=True)
        cart_display = gr.HTML(value=view_cart(), visible=False)
    
    cart_button.click(cart_interface, inputs=[], outputs=[menu_display, cart_display])

# Launch the app
demo.launch()