Python library for easily interacting with trained machine learning models
Project description
tags: [gradio-custom-component, ] title: gradio_modal_component short_description: A gradio custom component colorFrom: blue colorTo: yellow sdk: gradio pinned: false app_file: space.py
gradio_modal_component
Python library for easily interacting with trained machine learning models
Installation
pip install gradio_modal_component
Usage
import gradio as gr
from gradio_modal_component import modal_component
def display_image(img):
return img
def get_blur_value(selected_blur):
return selected_blur
def show_modal_with_dimensions(width, height):
# Convert inputs to integers with default values if empty or invalid
try:
width = int(width) if width else None
height = int(height) if height else None
except ValueError:
width = None
height = None
return modal_component(visible=True, width=width, height=height)
with gr.Blocks() as demo:
gr.Markdown("# Image Modal Demonstration")
with gr.Tab("Tab 1"):
gr.Markdown(
"""
- Fixed close icon (X) is overlapped by the image. or big components.
"""
)
show_btn = gr.Button("Show Modal")
gr.Markdown(
"""
- Enable the `allow_user_close` parameter to allow the user to close the modal by clicking outside, clicking the X, or pressing the escape key. In this case `allow_user_close = False` (Modal 1 is true), If not set defaults to `True`.
- Enale the `esc_close` parameter to allow the user to close the modal by pressing the escape key.
"""
)
show_btn2 = gr.Button("Show Modal 2")
gr.Markdown(
"""
- Enale the `close_outer_click` parameter to allow the user to close the modal by click on the blur. Defaults to `True`, in this case `close_outer_click = False`.
"""
)
show_btn3 = gr.Button("Show Modal 3")
gr.Markdown(
"""
- Enale the `close_message` parameter to show a message when the user tries to close the modal. Defaults to `None`.
"""
)
show_btn4 = gr.Button("Show Modal 4")
gr.Markdown(
"""
- Handle Z-index.
"""
)
show_btn5 = gr.Button("Show Modal 5")
gr.Markdown(
"""
- Add `bg_blur` option to dynamically change the background blur of the modal.
"""
)
# Dropdown for selecting blur level
blur_level = gr.Dropdown(
[0, 4, 8, 12, 16],
label="Blur Level",
value=4, # Default value
interactive=True,
)
show_btn6 = gr.Button("Show Modal 6")
gr.Markdown(
"""
- Add `with` and `height` option to dynamically change the size of the modal (Mesure in pixels.)
"""
)
with gr.Row():
width_input = gr.Textbox(label="Width", placeholder="Enter width", value="1000")
height_input = gr.Textbox(label="Height", placeholder="Enter height", value="500")
show_btn7 = gr.Button("Show Modal 7")
with modal_component(visible=False, allow_user_close=True) as modal:
gr.Image(
"https://images.unsplash.com/photo-1612178537253-bccd437b730e",
label="Random Image",
)
with modal_component(
visible=False, allow_user_close=False, close_on_esc=True
) as modal2:
with gr.Column():
upload_img = gr.Image(label="Upload Image", type="pil")
display_btn = gr.Button("Display Image")
output_img = gr.Image(label="Displayed Image")
display_btn.click(fn=display_image, inputs=upload_img, outputs=output_img)
with modal_component(visible=False, close_outer_click=False) as modal3:
with gr.Column():
upload_img = gr.Image(label="Upload Image", type="pil")
display_btn = gr.Button("Display Image")
output_img = gr.Image(label="Displayed Image")
display_btn.click(fn=display_image, inputs=upload_img, outputs=output_img)
with modal_component(
visible=False,
close_outer_click=True,
close_message="Are you sure want to close ?",
) as modal4:
with gr.Column():
upload_img = gr.Image(label="Upload Image", type="pil")
display_btn = gr.Button("Display Image")
output_img = gr.Image(label="Displayed Image")
display_btn.click(fn=display_image, inputs=upload_img, outputs=output_img)
with modal_component(visible=False, close_outer_click=True) as modal5:
with modal_component(
visible=False,
close_outer_click=True,
close_message="Are you sure want to close ?",
) as modal51:
with gr.Column():
upload_img = gr.Image(label="Upload Image", type="pil")
display_btn = gr.Button("Display Image")
output_img = gr.Image(label="Displayed Image")
display_btn.click(fn=display_image, inputs=upload_img, outputs=output_img)
gr.Markdown(
"""
# Handling Z-index for Modal
"""
)
show_btn51 = gr.Button("Show Sub Modal 5")
with modal_component(visible=False) as modal6:
gr.Markdown(
f"""
# View Background Blur Level
"""
)
with modal_component(visible=False) as modal7:
gr.Markdown("# Custom Sized Modal")
with gr.Column():
gr.Markdown("This modal demonstrates custom width and height settings.")
gr.Image(
"https://images.unsplash.com/photo-1612178537253-bccd437b730e",
label="Sample Image with Custom Dimensions",
)
show_btn.click(lambda: modal_component(visible=True), None, modal)
show_btn2.click(lambda: modal_component(visible=True), None, modal2)
show_btn3.click(lambda: modal_component(visible=True), None, modal3)
show_btn4.click(lambda: modal_component(visible=True), None, modal4)
show_btn5.click(lambda: modal_component(visible=True), None, modal5)
show_btn51.click(lambda: modal_component(visible=True), None, modal51)
show_btn6.click(
lambda blur: modal_component(visible=True, bg_blur=blur),
inputs=blur_level,
outputs=modal6,
)
show_btn7.click(
fn=show_modal_with_dimensions,
inputs=[width_input, height_input],
outputs=modal7,
)
if __name__ == "__main__":
demo.launch()
modal_component
Initialization
name | type | default | description |
---|---|---|---|
visible |
bool
|
False |
If False, modal will be hidden. |
elem_id |
str | None
|
None |
An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles. |
elem_classes |
list[str] | str | None
|
None |
An optional string or list of strings that are assigned as the class of this component in the HTML DOM. Can be used for targeting CSS styles. |
allow_user_close |
bool
|
True |
If True, user can close the modal (by clicking outside, clicking the X, or the escape key). |
render |
bool
|
True |
If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later. |
close_on_esc |
bool
|
True |
If True, allows closing the modal with the escape key. Defaults to True. |
close_outer_click |
bool
|
True |
If True, allows closing the modal by clicking outside. Defaults to True. |
close_message |
str | None
|
None |
The message to show when the user tries to close the modal. Defaults to None. |
bg_blur |
int | None
|
4 |
The percentage of background blur. Should be a float between 0 and 1. Defaults to None. |
width |
int | None
|
None |
Modify the width of the modal. |
height |
int | None
|
None |
Modify the height of the modal. |
Events
name | description |
---|---|
blur |
This listener is triggered when the modal_component is unfocused/blurred. |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gradio_modal_component-0.0.2.tar.gz
.
File metadata
- Download URL: gradio_modal_component-0.0.2.tar.gz
- Upload date:
- Size: 56.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f9ed7ed7500ccf4cf8c87341d23d379e62077959d0d81b37e49d9840647b82f |
|
MD5 | d74ef6cb199f3aa3bf708146e15901a1 |
|
BLAKE2b-256 | d9dab2e41d25de3c710f7efddd3342004fde3350a99cc6031d73a44416734c95 |
File details
Details for the file gradio_modal_component-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: gradio_modal_component-0.0.2-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79d0916577ee84e0495761b2571de1f3a27578963711e3f2d95ae0d566723dc1 |
|
MD5 | 997c8622102989736322a05603313101 |
|
BLAKE2b-256 | 1bdb427e1611dfbcc2700c832e7226cf4e3695c4c1ac3fdddc3ed32eb747d185 |