Update app.py
Browse files
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.
|
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 |
-
|
509 |
-
if st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
try:
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
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 |
-
|
531 |
-
if st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
try:
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
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 |
|