JSenkCC commited on
Commit
e797b01
Β·
verified Β·
1 Parent(s): 11bd714

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -15
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" # Corrected navigation
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 # Skip binary or non-text files
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
- # Display folders and files recursively
710
- if level == 0:
711
- st.write(f"πŸ“‚ {os.path.basename(root)}")
712
- else:
713
- with st.expander(f"{indent}πŸ“‚ {os.path.basename(root)}"):
714
- sub_indent = " " * 4 * (level + 1)
715
- for folder in dirs:
716
- st.write(f"{sub_indent}πŸ“‚ {folder}")
717
- for file in files:
718
- st.write(f"{sub_indent}πŸ“„ {file}")
 
 
 
 
 
 
 
 
 
 
 
 
 
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