JSenkCC commited on
Commit
ff97c45
·
verified ·
1 Parent(s): 39d77c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +44 -39
app.py CHANGED
@@ -438,7 +438,7 @@ def generate_documentation_page():
438
  st.sidebar.title(f"Project: {st.session_state.current_project}")
439
  if st.sidebar.button("Back to Project"):
440
  st.session_state.page = "project_view"
441
- st.experimental_rerun()
442
  if st.sidebar.button("Log Out"):
443
  logout_user()
444
  st.rerun()
@@ -504,49 +504,54 @@ def generate_documentation_page():
504
  pdf_path = os.path.join(user_folder, f"{st.session_state.current_project}_Documentation.pdf")
505
  markdown_path = os.path.join(user_folder, f"{st.session_state.current_project}_Documentation.md")
506
 
 
 
507
  # PDF generation and download logic
508
- if not st.session_state.get("pdf_generated", False):
509
- if st.button("Generate PDF"):
 
 
 
 
 
 
 
 
 
510
  try:
511
- generate_pdf(documentation, pdf_path)
512
- st.session_state.pdf_generated = True
513
- st.success("PDF Available in the 'Saved Documentation' Page")
514
- st.rerun()
515
- except Exception as e:
516
- st.error(f"Failed to generate PDF: {e}")
517
- else:
518
- try:
519
- with open(pdf_path, "rb") as pdf_file:
520
- st.download_button(
521
- label="Download PDF",
522
- data=pdf_file.read(),
523
- file_name=f"{st.session_state.current_project}_Documentation.pdf",
524
- mime="application/pdf",
525
- )
526
- except FileNotFoundError:
527
- st.error("PDF file not found. Try generating it again.")
528
 
529
  # Markdown generation and download logic
530
- if not st.session_state.get("markdown_generated", False):
531
- if st.button("Generate Markdown File"):
 
 
 
 
 
 
 
 
 
532
  try:
533
- generate_markdown_file(documentation, markdown_path)
534
- st.session_state.markdown_generated = True
535
- st.success("Markdown Available in the 'Saved Documentation' Page")
536
- st.rerun()
537
- except Exception as e:
538
- st.error(f"Failed to generate Markdown file: {e}")
539
- else:
540
- try:
541
- with open(markdown_path, "rb") as markdown_file:
542
- st.download_button(
543
- label="Download Markdown File",
544
- data=markdown_file.read(),
545
- file_name=f"{st.session_state.current_project}_Documentation.md",
546
- mime="text/markdown",
547
- )
548
- except FileNotFoundError:
549
- st.error("Markdown file not found. Try generating it again.")
550
 
551
 
552
 
 
438
  st.sidebar.title(f"Project: {st.session_state.current_project}")
439
  if st.sidebar.button("Back to Project"):
440
  st.session_state.page = "project_view"
441
+ st.rerun()
442
  if st.sidebar.button("Log Out"):
443
  logout_user()
444
  st.rerun()
 
504
  pdf_path = os.path.join(user_folder, f"{st.session_state.current_project}_Documentation.pdf")
505
  markdown_path = os.path.join(user_folder, f"{st.session_state.current_project}_Documentation.md")
506
 
507
+ col1, col2 = st.columns(2)
508
+
509
  # PDF generation and download logic
510
+ with col1:
511
+ if not st.session_state.get("pdf_generated", False):
512
+ if st.button("Generate PDF"):
513
+ try:
514
+ generate_pdf(documentation, pdf_path)
515
+ st.session_state.pdf_generated = True
516
+ st.success("PDF Available in the 'Saved Documentation' Page")
517
+ st.rerun()
518
+ except Exception as e:
519
+ st.error(f"Failed to generate PDF: {e}")
520
+ else:
521
  try:
522
+ with open(pdf_path, "rb") as pdf_file:
523
+ st.download_button(
524
+ label="Download PDF",
525
+ data=pdf_file.read(),
526
+ file_name=f"{st.session_state.current_project}_Documentation.pdf",
527
+ mime="application/pdf",
528
+ )
529
+ except FileNotFoundError:
530
+ st.error("PDF file not found. Try generating it again.")
 
 
 
 
 
 
 
 
531
 
532
  # Markdown generation and download logic
533
+ with col2:
534
+ if not st.session_state.get("markdown_generated", False):
535
+ if st.button("Generate Markdown File"):
536
+ try:
537
+ generate_markdown_file(documentation, markdown_path)
538
+ st.session_state.markdown_generated = True
539
+ st.success("Markdown Available in the 'Saved Documentation' Page")
540
+ st.rerun()
541
+ except Exception as e:
542
+ st.error(f"Failed to generate Markdown file: {e}")
543
+ else:
544
  try:
545
+ with open(markdown_path, "rb") as markdown_file:
546
+ st.download_button(
547
+ label="Download Markdown File",
548
+ data=markdown_file.read(),
549
+ file_name=f"{st.session_state.current_project}_Documentation.md",
550
+ mime="text/markdown",
551
+ )
552
+ except FileNotFoundError:
553
+ st.error("Markdown file not found. Try generating it again.")
554
+
 
 
 
 
 
 
 
555
 
556
 
557