File size: 13,618 Bytes
ba4dd53
 
 
ffd44f9
 
 
 
 
 
 
 
c0cf200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd345b4
 
 
 
 
c0cf200
dd345b4
 
 
c0cf200
 
 
 
 
1ee5aa0
 
849e208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1ee5aa0
 
 
beb5144
783fd70
 
 
 
 
 
1ee5aa0
849e208
e44b01e
849e208
 
 
 
61eefea
 
7b28d94
d178474
 
 
 
 
fe4cda2
7b28d94
d178474
e44b01e
81a86cf
 
e44b01e
81a86cf
 
 
 
 
 
 
 
 
849e208
 
 
 
81a86cf
 
 
 
 
 
 
8588da2
81a86cf
e44b01e
8eccc46
81a86cf
1ee5aa0
8eccc46
 
849e208
8eccc46
 
8588da2
 
 
 
849e208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8eccc46
849e208
 
8eccc46
 
849e208
 
 
 
 
536706d
849e208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8eccc46
 
 
8588da2
 
 
 
 
 
 
 
 
 
 
8eccc46
 
849e208
 
8eccc46
1ee5aa0
 
45bc2f8
92b51ea
37e70db
3c97bed
0f06d66
118d5fd
8eccc46
e749bc5
 
 
 
 
8794375
8eccc46
e749bc5
8794375
8eccc46
1ee5aa0
8794375
849e208
 
 
8eccc46
81a86cf
7b28d94
81a86cf
 
 
 
 
 
 
 
5d93443
81a86cf
beb5144
783fd70
 
 
 
61eefea
783fd70
81a86cf
 
 
 
 
 
 
 
 
 
 
 
8eccc46
1ee5aa0
c0cf200
8eccc46
e749bc5
 
 
81a86cf
849e208
1ee5aa0
7980609
37e70db
7980609
45bc2f8
0ca1045
849e208
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
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}")

# 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"""
        <div style="display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; padding: 15px; margin-bottom: 10px; box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);">
            <div style="flex: 1; margin-right: 15px;">
                <h3 style="margin: 0; font-size: 18px;">{item['Dish Name']}</h3>
                <p style="margin: 5px 0; font-size: 16px; color: #888;">${item['Price ($)']}</p>
                <p style="margin: 5px 0; font-size: 14px; color: #555;">{item['Description']}</p>
            </div>
            <div style="flex-shrink: 0; text-align: center;">
                <img src="{item['Image URL']}" alt="{item['Dish Name']}" style="width: 100px; height: 100px; border-radius: 8px; object-fit: cover; margin-bottom: 10px;">
                <button style="background-color: #28a745; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 5px; cursor: pointer;" onclick="openModal('{item['Dish Name']}', '{item['Image URL']}', '{item['Description']}', '{item['Price ($)']}')">Add</button>
            </div>
        </div>
        """
    return html_content

# JavaScript for modal and cart behavior
modal_and_cart_js = """
<style>
  .cart-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }
  .cart-item:last-child {
    border-bottom: none;
  }
  .cart-item span {
    font-size: 16px;
    margin-right: 10px;
  }
  .cart-item .quantity-container {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .cart-total {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
  }
</style>
<script>
    let cart = [];
    const extrasPrices = {
        "Thums up": 2,
        "Sprite": 2,
        "Extra Raitha": 1,
        "Extra Salan": 2,
        "Extra Onion & Lemon": 2,
        "Chilli Chicken": 14,
        "Veg Manchurian": 12
    };
    let finalized = false;
    function openModal(name, image, description, price) {
        if (finalized) {
            alert("You cannot add more items after finalizing your order.");
            return;
        }
        const modal = document.getElementById('modal');
        modal.style.display = 'block';
        modal.style.position = 'fixed';
        if (window.innerWidth <= 768) {
            modal.style.width = '90%';
        } else {
            modal.style.width = '30%';
        }
        modal.style.top = '15%';
        modal.style.left = '50%';
        modal.style.transform = 'translate(-50%, -50%)';
        document.getElementById('modal-image').src = image;
        document.getElementById('modal-name').innerText = name;
        document.getElementById('modal-description').innerText = description;
        document.getElementById('modal-price').innerText = price;
        const extrasInputs = document.querySelectorAll('input[name="biryani-extra"]');
        extrasInputs.forEach(input => input.checked = false);
        document.getElementById('quantity').value = 1;
        document.getElementById('special-instructions').value = '';
    }
    function closeModal() {
        document.getElementById('modal').style.display = 'none';
    }
    function addToCart() {
        if (finalized) {
            alert("You cannot add more items after finalizing your order.");
            return;
        }
        const name = document.getElementById('modal-name').innerText;
        const price = parseFloat(document.getElementById('modal-price').innerText.replace('$', ''));
        const quantity = parseInt(document.getElementById('quantity').value) || 1;
        const instructions = document.getElementById('special-instructions').value;
        const extras = Array.from(document.querySelectorAll('input[name="biryani-extra"]:checked')).map(extra => extra.value);
        const extrasCost = extras.reduce((sum, extra) => sum + (extrasPrices[extra] || 0), 0);
        const itemTotal = (price + extrasCost) * quantity;
        const cartItem = { name, price, quantity, instructions, extras, itemTotal, extrasQuantities: extras.map(() => 1) };
        cart.push(cartItem);
        alert(`${name} added to cart!`);
        updateCartDisplay();
        closeModal();
    }
    function updateCartDisplay() {
        let totalBill = 0;
        let cartHTML = "<div class='cart-container'>";
        cart.forEach((item, index) => {
            totalBill += item.itemTotal;
            const extras = item.extras.map((extra, i) => {
                const extraQuantity = item.extrasQuantities ? item.extrasQuantities[i] || 1 : 1;
                const extraTotal = extrasPrices[extra] * extraQuantity;
                totalBill += extraTotal;
                return `<div class='cart-item'>
                            <span>${extra}</span>
                            <span>Price: $${extrasPrices[extra].toFixed(2)}</span>
                            <div class='quantity-container'>
                                <label for='extra-quantity-${index}-${i}'>Quantity:</label>
                                <input type='number' id='extra-quantity-${index}-${i}' value='${extraQuantity}' min='1' style='width: 50px;' onchange='updateExtraQuantity(${index}, ${i}, this.value)'>
                            </div>
                            <span>Total: $${extraTotal.toFixed(2)}</span>
                            <input type='checkbox' id='extra-remove-${index}-${i}' onclick='removeExtra(${index}, ${i})'> Remove
                        </div>`;
            }).join('');
            cartHTML += `<div class='cart-item'>
                            <span>${item.name}</span>
                            <span>Item Price: $${item.price.toFixed(2)}</span>
                            <div class='quantity-container'>
                                <label for='item-quantity-${index}'>Quantity:</label>
                                <input type='number' id='item-quantity-${index}' value='${item.quantity}' min='1' style='width: 50px;' onchange='updateItemQuantity(${index}, this.value)'>
                            </div>
                            <span>Total: $${(item.price * item.quantity).toFixed(2)}</span>
                            <input type='checkbox' id='item-remove-${index}' onclick='removeItem(${index})'> Remove
                        </div>
                        ${extras}
                        <div class='cart-item'><strong>Instructions:</strong> ${item.instructions || "None"}</div>`;
        });
        cartHTML += `</div><p class='cart-total'>Total Bill: $${totalBill.toFixed(2)}</p>`;
        cartHTML += `<button style='margin-top: 10px; background-color: #007bff; color: white; border: none; padding: 10px; border-radius: 5px; width: 100%; cursor: pointer;' onclick='submitCart()'>Submit</button>`;
        document.getElementById('floating-cart').innerHTML = cartHTML;
    }
    function updateItemQuantity(index, newQuantity) {
        const quantity = parseInt(newQuantity) || 1;
        cart[index].quantity = quantity;
        cart[index].itemTotal = cart[index].price * quantity;
        updateCartDisplay();
    }
    function updateExtraQuantity(cartIndex, extraIndex, newQuantity) {
        const quantity = parseInt(newQuantity) || 1;
        cart[cartIndex].extrasQuantities = cart[cartIndex].extrasQuantities || [];
        cart[cartIndex].extrasQuantities[extraIndex] = quantity;
        updateCartDisplay();
    }
    function removeExtra(cartIndex, extraIndex) {
        cart[cartIndex].extras.splice(extraIndex, 1);
        if (cart[cartIndex].extrasQuantities) {
            cart[cartIndex].extrasQuantities.splice(extraIndex, 1);
        }
        updateCartDisplay();
    }
    function removeItem(index) {
        cart.splice(index, 1);
        updateCartDisplay();
    }
    function submitCart() {
        let finalOrderHTML = "<h3>Final Order:</h3><ul>";
        let totalBill = 0;
        cart.forEach(item => {
            totalBill += item.itemTotal;
            const extras = item.extras.map((extra, i) => {
                const extraQuantity = item.extrasQuantities ? item.extrasQuantities[i] || 1 : 1;
                const extraTotal = extrasPrices[extra] * extraQuantity;
                totalBill += extraTotal;
                return `${extra} (x${extraQuantity}) - $${extraTotal.toFixed(2)}`;
            }).join(', ');
            finalOrderHTML += `<li>
                ${item.name} (x${item.quantity}) - $${item.itemTotal.toFixed(2)}
                <br>Extras: ${extras}
                <br>Instructions: ${item.instructions || "None"}
            </li>`;
        });
        finalOrderHTML += `</ul><p><strong>Total Bill: $${totalBill.toFixed(2)}</strong></p>`;
        document.getElementById('final-order').innerHTML = finalOrderHTML;
        alert("Your final order has been submitted!");
    }
</script>
"""

# 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="Your cart is empty.", elem_id="floating-cart")

        # Final order display
        final_order_output = gr.HTML(value="", elem_id="final-order")

        # Modal window
        modal_window = gr.HTML("""
        <div id="modal" style="display: none; position: fixed; background: white; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); padding: 20px; z-index: 1000;">
            <div style="text-align: right;">
                <button onclick="closeModal()" style="background: none; border: none; font-size: 18px; cursor: pointer;">&times;</button>
            </div>
            <img id="modal-image" style="width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px;" />
            <h2 id="modal-name"></h2>
            <p id="modal-description"></p>
            <p id="modal-price"></p>
            <!-- Biryani Extras -->
            <label for="biryani-extras">Biryani Extras :</label>
            <div id="biryani-extras-options" style="display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0;">
                <label><input type="checkbox" name="biryani-extra" value="Thums up" /> Thums up + $2.00</label>
                <label><input type="checkbox" name="biryani-extra" value="Sprite" /> Sprite + $2.00</label>
                <label><input type="checkbox" name="biryani-extra" value="Extra Raitha" /> Extra Raitha  + $1.00</label>
                <label><input type="checkbox" name="biryani-extra" value="Extra Salan" /> Extra Salan  + $2.00</label>
                <label><input type="checkbox" name="biryani-extra" value="Extra Onion & Lemon" /> Extra Onion & Lemon + $2.00</label>
                <label><input type="checkbox" name="biryani-extra" value="Chilli Chicken" /> Chilli Chicken + $14.00</label>
                <label><input type="checkbox" name="biryani-extra" value="Veg Manchurian" /> Veg Manchurian + $12.00</label>
            </div>
            <!-- Quantity and Special Instructions -->
            <label for="quantity">Quantity:</label>
            <input type="number" id="quantity" value="1" min="1" style="width: 50px;" />
            <br><br>
            <textarea id="special-instructions" placeholder="Add special instructions here..." style="width: 100%; height: 60px;"></textarea>
            <br><br>
            <!-- Add to Cart Button -->
            <button style="background-color: #28a745; color: white; border: none; padding: 10px 20px; font-size: 14px; border-radius: 5px; cursor: pointer;" onclick="addToCart()">Add to Cart</button>
        </div>
        """)

        # Update menu dynamically based on preference
        selected_preference.change(filter_menu, inputs=[selected_preference], outputs=[menu_output])

        # Layout
        gr.Row([selected_preference])
        gr.Row(menu_output)
        gr.Row(cart_output)
        gr.Row(modal_window)
        gr.Row(final_order_output)
        gr.HTML(modal_and_cart_js)

    return demo

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