adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
import os
|
|
|
|
import gradio as gr
|
|
|
|
|
|
def list_files(path):
|
|
try:
|
|
return os.listdir(path)
|
|
except (FileNotFoundError, PermissionError) as e:
|
|
return [f"Error: {e}"]
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Markdown(
|
|
"# Server Functions Demo\nClick 'Load Files' to list files in the directory."
|
|
)
|
|
filetree = gr.HTML(
|
|
value=os.path.dirname(__file__),
|
|
html_template="""
|
|
<div>
|
|
<p>Directory: <strong>${value}</strong></p>
|
|
<div class='tree'></div>
|
|
<button class='load-btn'>Load Files</button>
|
|
</div>
|
|
""",
|
|
js_on_load="""
|
|
const loadBtn = element.querySelector('.load-btn');
|
|
const tree = element.querySelector('.tree');
|
|
loadBtn.addEventListener('click', async () => {
|
|
const files = await server.list_files(props.value);
|
|
tree.innerHTML = '';
|
|
files.forEach(file => {
|
|
const fileEl = document.createElement('div');
|
|
fileEl.textContent = file;
|
|
tree.appendChild(fileEl);
|
|
});
|
|
});
|
|
""",
|
|
server_functions=[list_files],
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|