JSenkCC commited on
Commit
2235151
·
verified ·
1 Parent(s): 6128e66

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -32
app.py CHANGED
@@ -78,8 +78,8 @@ def main():
78
  project_view_page()
79
  elif st.session_state.page == "generate_documentation":
80
  generate_documentation_page()
81
- elif st.session_state.page == "view_documentation":
82
- view_documentation_page()
83
 
84
  def login_page():
85
  st.subheader("Please Log In or Register to Continue")
@@ -590,7 +590,7 @@ def generate_markdown_file(documentation, output_path):
590
 
591
 
592
  #------------------------------------------------------------------------------------------------------------------------------------------------------------------------
593
- def view_documentation_page():
594
  # Sidebar with "Back to Project" and "Log Out" buttons
595
  st.sidebar.title(f"Project: {st.session_state.current_project}")
596
  if st.sidebar.button("Back to Project"):
@@ -602,8 +602,8 @@ def view_documentation_page():
602
  st.session_state.page = "login"
603
  st.rerun()
604
 
605
- st.subheader(f"View Documentation for {st.session_state.current_project}")
606
- st.write("Below is a list of generated documentation for this project. Click to view or download.")
607
 
608
  # Define paths for generated files
609
  user_folder = os.path.join("user_projects", st.session_state.username)
@@ -620,33 +620,21 @@ def view_documentation_page():
620
  else:
621
  if pdf_exists:
622
  with open(pdf_path, "rb") as pdf_file:
623
- if st.button("View PDF Documentation"):
624
- st.subheader("PDF Documentation")
625
- st.write("The generated PDF documentation is displayed below:")
626
- st.download_button(
627
- label="Download PDF",
628
- data=pdf_file.read(),
629
- file_name=f"{st.session_state.current_project}_Documentation.pdf",
630
- mime="application/pdf",
631
- )
632
 
633
  if markdown_exists:
634
- with open(markdown_path, "r") as markdown_file:
635
- markdown_content = markdown_file.read()
636
- if st.button("View Markdown Documentation"):
637
- st.subheader("Markdown Documentation")
638
- st.text_area(
639
- "Generated Markdown Documentation",
640
- value=markdown_content,
641
- height=600,
642
- disabled=True,
643
- )
644
- st.download_button(
645
- label="Download Markdown",
646
- data=markdown_content,
647
- file_name=f"{st.session_state.current_project}_Documentation.md",
648
- mime="text/markdown",
649
- )
650
 
651
 
652
 
@@ -671,8 +659,8 @@ def project_view_page():
671
  st.session_state.page = "generate_documentation"
672
  st.rerun()
673
 
674
- if st.button("View Documentation"):
675
- st.session_state.page = "view_documentation"
676
  st.rerun()
677
 
678
  # Toggle file structure display (if required)
 
78
  project_view_page()
79
  elif st.session_state.page == "generate_documentation":
80
  generate_documentation_page()
81
+ elif st.session_state.page == "saved_documentation":
82
+ saved_documentation_page()
83
 
84
  def login_page():
85
  st.subheader("Please Log In or Register to Continue")
 
590
 
591
 
592
  #------------------------------------------------------------------------------------------------------------------------------------------------------------------------
593
+ def saved_documentation_page():
594
  # Sidebar with "Back to Project" and "Log Out" buttons
595
  st.sidebar.title(f"Project: {st.session_state.current_project}")
596
  if st.sidebar.button("Back to Project"):
 
602
  st.session_state.page = "login"
603
  st.rerun()
604
 
605
+ st.subheader(f"Saved Documentation for {st.session_state.current_project}")
606
+ st.write("Below is a list of saved documentation for this project. Click to download.")
607
 
608
  # Define paths for generated files
609
  user_folder = os.path.join("user_projects", st.session_state.username)
 
620
  else:
621
  if pdf_exists:
622
  with open(pdf_path, "rb") as pdf_file:
623
+ st.download_button(
624
+ label="Download PDF Documentation",
625
+ data=pdf_file.read(),
626
+ file_name=f"{st.session_state.current_project}_Documentation.pdf",
627
+ mime="application/pdf",
628
+ )
 
 
 
629
 
630
  if markdown_exists:
631
+ with open(markdown_path, "rb") as markdown_file:
632
+ st.download_button(
633
+ label="Download Markdown Documentation",
634
+ data=markdown_file.read(),
635
+ file_name=f"{st.session_state.current_project}_Documentation.md",
636
+ mime="text/markdown",
637
+ )
 
 
 
 
 
 
 
 
 
638
 
639
 
640
 
 
659
  st.session_state.page = "generate_documentation"
660
  st.rerun()
661
 
662
+ if st.button("Saved Documentation"):
663
+ st.session_state.page = "saved_documentation"
664
  st.rerun()
665
 
666
  # Toggle file structure display (if required)