Update app.py
Browse files
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 == "
|
82 |
-
|
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
|
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"
|
606 |
-
st.write("Below is a list of
|
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 |
-
|
624 |
-
|
625 |
-
|
626 |
-
st.
|
627 |
-
|
628 |
-
|
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, "
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
st.
|
639 |
-
|
640 |
-
|
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("
|
675 |
-
st.session_state.page = "
|
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)
|