mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
65437ce832
* changes * add changeset * changes * changes * add changeset * changes * changes * changes * changes * changes * Update gradio/components/file_explorer.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update gradio/components/file_explorer.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update demo/file_explorer_component_events/run.py Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * changes * changes * changes --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
import gradio as gr
|
|
from pathlib import Path
|
|
|
|
current_file_path = Path(__file__).resolve()
|
|
relative_path = "path/to/file"
|
|
absolute_path = (current_file_path.parent / ".." / ".." / "gradio").resolve()
|
|
|
|
|
|
def get_file_content(file):
|
|
return (file,)
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Markdown('### `FileExplorer` to `FileExplorer` -- `file_count="multiple"`')
|
|
submit_btn = gr.Button("Select")
|
|
with gr.Row():
|
|
file = gr.FileExplorer(
|
|
glob="**/components/*.py",
|
|
# value=["themes/utils"],
|
|
root=absolute_path,
|
|
ignore_glob="**/__init__.py",
|
|
)
|
|
|
|
file2 = gr.FileExplorer(
|
|
glob="**/components/**/*.py",
|
|
root=absolute_path,
|
|
ignore_glob="**/__init__.py",
|
|
)
|
|
submit_btn.click(lambda x: x, file, file2)
|
|
|
|
gr.Markdown("---")
|
|
gr.Markdown('### `FileExplorer` to `Code` -- `file_count="single"`')
|
|
with gr.Group():
|
|
with gr.Row():
|
|
file_3 = gr.FileExplorer(
|
|
scale=1,
|
|
glob="**/components/**/*.py",
|
|
value=["themes/utils"],
|
|
file_count="single",
|
|
root=absolute_path,
|
|
ignore_glob="**/__init__.py",
|
|
elem_id="file",
|
|
)
|
|
|
|
code = gr.Code(lines=30, scale=2, language="python")
|
|
|
|
file_3.change(get_file_content, file_3, code)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|