Spaces:
Running
Running
File size: 1,805 Bytes
e841ba5 |
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 |
import gradio as gr
import modelscope_studio.components.antd as antd
import modelscope_studio.components.base as ms
def info():
return gr.update(
visible=True,
mask_closable=False,
title="Info",
type="info",
content="This is a info message.",
)
def success():
return gr.update(
visible=True,
mask_closable=False,
title="Success",
type="success",
content="This is a success message.",
)
def error():
return gr.update(
visible=True,
mask_closable=False,
title="Error",
type="error",
content="This is an error message.",
)
def warning():
return gr.update(
visible=True,
mask_closable=False,
title="Warning",
type="warning",
content="This is a warning message.",
)
def confirm():
return gr.update(
visible=True,
mask_closable=True,
title="Confirm",
type="confirm",
content="This is a confirm message.",
)
with gr.Blocks() as demo:
with ms.Application():
with antd.ConfigProvider():
with antd.Space():
info_btn = antd.Button("Info")
success_btn = antd.Button("Success")
error_btn = antd.Button("Error")
warning_btn = antd.Button("Warning")
confirm_btn = antd.Button("Confirm")
modal = antd.Modal.Static(visible=False)
info_btn.click(info, outputs=[modal])
success_btn.click(success, outputs=[modal])
error_btn.click(error, outputs=[modal])
warning_btn.click(warning, outputs=[modal])
confirm_btn.click(confirm, outputs=[modal])
if __name__ == "__main__":
demo.queue().launch()
|