Update app.py
Browse files
app.py
CHANGED
@@ -645,7 +645,7 @@ def project_view_page():
|
|
645 |
st.sidebar.image("SimplifAI Logo Long.jpeg", use_container_width=True)
|
646 |
st.sidebar.title(f"Project: {st.session_state.current_project}")
|
647 |
if st.sidebar.button("Back to Project Staging"):
|
648 |
-
st.session_state.page = "project_staging"
|
649 |
st.rerun()
|
650 |
if st.sidebar.button("Log Out"):
|
651 |
st.session_state.authenticated = False
|
@@ -673,7 +673,7 @@ def project_view_page():
|
|
673 |
with open(file_path, 'r', encoding='utf-8') as f:
|
674 |
num_lines += sum(1 for _ in f)
|
675 |
except (UnicodeDecodeError, IsADirectoryError):
|
676 |
-
continue
|
677 |
|
678 |
# Display metrics side by side
|
679 |
col1, col2 = st.columns(2)
|
@@ -702,20 +702,30 @@ def project_view_page():
|
|
702 |
|
703 |
if st.session_state.show_file_structure:
|
704 |
st.write("File structure:")
|
705 |
-
for root, dirs, files in os.walk(project_folder):
|
706 |
-
level = root.replace(project_folder, "").count(os.sep)
|
707 |
-
indent = " " * 4 * level
|
708 |
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
719 |
|
720 |
|
721 |
|
|
|
645 |
st.sidebar.image("SimplifAI Logo Long.jpeg", use_container_width=True)
|
646 |
st.sidebar.title(f"Project: {st.session_state.current_project}")
|
647 |
if st.sidebar.button("Back to Project Staging"):
|
648 |
+
st.session_state.page = "project_staging"
|
649 |
st.rerun()
|
650 |
if st.sidebar.button("Log Out"):
|
651 |
st.session_state.authenticated = False
|
|
|
673 |
with open(file_path, 'r', encoding='utf-8') as f:
|
674 |
num_lines += sum(1 for _ in f)
|
675 |
except (UnicodeDecodeError, IsADirectoryError):
|
676 |
+
continue
|
677 |
|
678 |
# Display metrics side by side
|
679 |
col1, col2 = st.columns(2)
|
|
|
702 |
|
703 |
if st.session_state.show_file_structure:
|
704 |
st.write("File structure:")
|
|
|
|
|
|
|
705 |
|
706 |
+
def display_folder_contents(path, level=0):
|
707 |
+
"""
|
708 |
+
Recursively display folder contents using Streamlit expanders.
|
709 |
+
|
710 |
+
Args:
|
711 |
+
path (str): The folder path.
|
712 |
+
level (int): The current depth of the folder in the hierarchy.
|
713 |
+
"""
|
714 |
+
# Get subfolders and files
|
715 |
+
items = sorted(os.listdir(path))
|
716 |
+
for item in items:
|
717 |
+
item_path = os.path.join(path, item)
|
718 |
+
if os.path.isdir(item_path):
|
719 |
+
# Display folder as an expander
|
720 |
+
with st.expander(f"{' ' * 4 * level}π {item}", expanded=False):
|
721 |
+
display_folder_contents(item_path, level + 1)
|
722 |
+
else:
|
723 |
+
# Display file
|
724 |
+
st.write(f"{' ' * 4 * (level + 1)}π {item}")
|
725 |
+
|
726 |
+
# Start displaying from the project folder root
|
727 |
+
display_folder_contents(project_folder)
|
728 |
+
|
729 |
|
730 |
|
731 |
|