-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmenu.py
33 lines (25 loc) · 1.13 KB
/
menu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import streamlit as st
def authenticated_menu():
# Show a navigation menu for authenticated users
st.sidebar.page_link("app.py", label="Homepage")
st.sidebar.page_link("pages/chatbot.py", label="AIFAQ ChatBot")
if st.session_state.roles in ["admin"]:
st.sidebar.page_link("pages/config_page.py", label="Config Page")
st.sidebar.page_link("pages/ConfigPage.py", label="new config page")
st.sidebar.page_link("pages/build_knowledgebase.py", label="Build Knowledge Base")
def unauthenticated_menu():
# Show a navigation menu for unauthenticated users
st.sidebar.page_link("app.py", label="Homepage")
def menu():
# Determine if a user is logged in or not, then show the correct
# navigation menu
if "roles" not in st.session_state or st.session_state.roles is None:
unauthenticated_menu()
return
authenticated_menu()
def menu_with_redirect():
# Redirect users to the main page if not logged in, otherwise continue to
# render the navigation menu
if "roles" not in st.session_state or st.session_state.roles is None:
st.switch_page("app.py")
menu()