Spaces:
Running
Running
File size: 1,214 Bytes
3488c13 |
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 |
import gradio as gr
import modelscope_studio.components.antd as antd
import modelscope_studio.components.base as ms
import modelscope_studio.components.pro as pro
def change(editor_value):
print(editor_value)
def readonly_change(switch_value):
return gr.update(read_only=switch_value)
with gr.Blocks() as demo, ms.Application(), antd.ConfigProvider(
), ms.AutoLoading():
with antd.Flex(gap="small", elem_style=dict(marginBottom=10)):
ms.Text("Readonly")
switch = antd.Switch(value=False)
editor = pro.MonacoEditor.DiffEditor(
original="import gradio as gr",
value="""import gradio as gr
import modelscope_studio.components.antd as antd
import modelscope_studio.components.base as ms
import modelscope_studio.components.pro as pro
with gr.Blocks() as demo, ms.Application(), antd.ConfigProvider():
pro.MonacoEditor(
value="Hello World",
height=400,
)
if __name__ == "__main__":
demo.queue().launch()
""",
language="python",
height=400,
)
editor.change(fn=change, inputs=[editor])
switch.change(fn=readonly_change, inputs=[switch], outputs=[editor])
if __name__ == "__main__":
demo.queue().launch()
|