nakas commited on
Commit
8f3b8ca
·
verified ·
1 Parent(s): 8f099a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +42 -101
app.py CHANGED
@@ -223,17 +223,14 @@ demo = gr.Interface(
223
  """
224
  }
225
 
226
- # Create an app selector that loads apps dynamically
227
  def create_main_app():
228
- with gr.Blocks(title="Dynamic Gradio App Generator") as demo:
229
  gr.Markdown("# 🔄 Dynamic Gradio App Generator")
230
  gr.Markdown("Select an app type to load it dynamically without refreshing the page")
231
 
232
- # Create placeholders for dynamic app loading
233
- app_blocks_container = gr.Blocks(visible=False)
234
- with app_blocks_container:
235
- # This container will be dynamically replaced
236
- app_placeholder = gr.Markdown("Loading app...")
237
 
238
  with gr.Row():
239
  with gr.Column(scale=1):
@@ -264,12 +261,12 @@ def create_main_app():
264
  # Status message
265
  status_msg = gr.Markdown("Select an app and click 'Load Selected App'")
266
 
267
- with gr.Column(scale=2):
268
- # This is where our dynamically loaded app will appear
269
- app_container = gr.Group(visible=True)
270
- with app_container:
271
- gr.Markdown("### App Preview")
272
- gr.Markdown("No app loaded yet. Select an app and click 'Load Selected App'.")
273
 
274
  # Update description and code when selection changes
275
  def update_description_and_code(selection):
@@ -284,93 +281,38 @@ def create_main_app():
284
  outputs=[app_description, code_display]
285
  )
286
 
287
- # Load the selected app
288
- @gr.on(load_btn, "click")
289
- def load_selected_app(selection):
290
- try:
291
- # Create the app
292
- app_func = APP_REGISTRY[selection]["function"]
293
- app = app_func()
294
-
295
- # Update the container content (this is done via JavaScript)
296
- return {
297
- status_msg: f"Successfully loaded {APP_REGISTRY[selection]['title']}",
298
- app_container: gr.update(visible=False), # Hide temporarily for replacement
299
- }
300
- except Exception as e:
301
- error_msg = str(e)
302
- return {
303
- status_msg: f"Error loading app: {error_msg}",
304
- app_container: gr.update(visible=True),
305
- }
 
 
 
 
 
 
306
 
307
- # This uses Gradio's JavaScript event handling to dynamically mount the app
308
- demo.load(None, js="""
309
- function() {
310
- let loadedAppIframe = null;
311
- let intervalId = null;
312
-
313
- // Function to handle the "Load Selected App" button click
314
- document.addEventListener('click', function(event) {
315
- // Find button by text or class
316
- if (event.target.textContent === 'Load Selected App' ||
317
- (event.target.parentElement && event.target.parentElement.textContent === 'Load Selected App')) {
318
-
319
- // Get the selected app
320
- const radioButtons = document.querySelectorAll('input[type="radio"]');
321
- let selectedApp = null;
322
-
323
- for (const radio of radioButtons) {
324
- if (radio.checked) {
325
- selectedApp = radio.value;
326
- break;
327
- }
328
- }
329
-
330
- if (!selectedApp) return;
331
-
332
- // Stop any previous timer
333
- if (intervalId) {
334
- clearInterval(intervalId);
335
- }
336
-
337
- // Show loading indicator
338
- const appContainer = document.querySelector('.app-preview');
339
- if (appContainer) {
340
- appContainer.innerHTML = '<p>Loading app...</p>';
341
- }
342
-
343
- // Create route for app
344
- const appUrl = '/' + selectedApp;
345
-
346
- // Clean up previous iframe if exists
347
- if (loadedAppIframe) {
348
- loadedAppIframe.remove();
349
- }
350
-
351
- // Create an iframe and load the app
352
- loadedAppIframe = document.createElement('iframe');
353
- loadedAppIframe.style.width = '100%';
354
- loadedAppIframe.style.height = '600px';
355
- loadedAppIframe.style.border = 'none';
356
- loadedAppIframe.src = appUrl;
357
-
358
- // Find the app container column (second column)
359
- const columns = document.querySelectorAll('.gradio-column');
360
- if (columns.length > 1) {
361
- columns[1].innerHTML = ''; // Clear existing content
362
- columns[1].appendChild(loadedAppIframe);
363
- }
364
-
365
- // Update the status
366
- const statusEl = document.querySelector('#status-message');
367
- if (statusEl) {
368
- statusEl.textContent = 'App loaded successfully';
369
- }
370
- }
371
- });
372
- }
373
- """)
374
 
375
  return demo
376
 
@@ -379,12 +321,11 @@ def create_app():
379
  # Create the main selector app
380
  main_app = create_main_app()
381
 
382
- # Create all the individual apps
383
  for app_name, app_info in APP_REGISTRY.items():
384
  app_func = app_info["function"]
385
  if app_func:
386
  app_instance = app_func()
387
- # This is for Gradio 4.x - it mounts each app at its own route
388
  main_app = gr.mount_gradio_app(main_app, app_instance, f"/{app_name}")
389
 
390
  return main_app
 
223
  """
224
  }
225
 
226
+ # Create an app selector that loads apps via iframe
227
  def create_main_app():
228
+ with gr.Blocks(title="Dynamic Gradio App Generator", css="#app-iframe { width: 100%; height: 600px; border: none; }") as demo:
229
  gr.Markdown("# 🔄 Dynamic Gradio App Generator")
230
  gr.Markdown("Select an app type to load it dynamically without refreshing the page")
231
 
232
+ # App selection and display state
233
+ current_app = gr.State("")
 
 
 
234
 
235
  with gr.Row():
236
  with gr.Column(scale=1):
 
261
  # Status message
262
  status_msg = gr.Markdown("Select an app and click 'Load Selected App'")
263
 
264
+ with gr.Column(scale=2, elem_id="app-container"):
265
+ # This HTML component will hold the iframe
266
+ app_iframe = gr.HTML(
267
+ value="<p>No app loaded yet. Select an app and click 'Load Selected App'.</p>",
268
+ label="App Preview"
269
+ )
270
 
271
  # Update description and code when selection changes
272
  def update_description_and_code(selection):
 
281
  outputs=[app_description, code_display]
282
  )
283
 
284
+ # Load the selected app using an iframe
285
+ def load_app_in_iframe(app_name, previous_app):
286
+ if app_name not in APP_REGISTRY:
287
+ return (
288
+ f"Error: App '{app_name}' not found",
289
+ "<p>App not found!</p>",
290
+ previous_app
291
+ )
292
+
293
+ # If the same app is already loaded, just notify the user
294
+ if app_name == previous_app:
295
+ return (
296
+ f"{APP_REGISTRY[app_name]['title']} is already loaded",
297
+ f'<iframe id="app-iframe" src="/{app_name}"></iframe>',
298
+ app_name
299
+ )
300
+
301
+ # Create iframe HTML
302
+ iframe_html = f'<iframe id="app-iframe" src="/{app_name}"></iframe>'
303
+
304
+ return (
305
+ f"Successfully loaded {APP_REGISTRY[app_name]['title']}",
306
+ iframe_html,
307
+ app_name
308
+ )
309
 
310
+ # Connect the button to the load function
311
+ load_btn.click(
312
+ load_app_in_iframe,
313
+ inputs=[app_selection, current_app],
314
+ outputs=[status_msg, app_iframe, current_app]
315
+ )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
 
317
  return demo
318
 
 
321
  # Create the main selector app
322
  main_app = create_main_app()
323
 
324
+ # Create all the individual apps and mount them at their respective paths
325
  for app_name, app_info in APP_REGISTRY.items():
326
  app_func = app_info["function"]
327
  if app_func:
328
  app_instance = app_func()
 
329
  main_app = gr.mount_gradio_app(main_app, app_instance, f"/{app_name}")
330
 
331
  return main_app