Skip to main content

Streamlit component that allows you to do create a more flexible customisable streamlit sidebar

Project description

streamlit-custom-sidebar

Streamlit component that allows you to do buid a more flexible customizable sidebar that does not look buggy when rendered. Usually when we try to adjust the native streamlit sidebar it gets rendered after all the streamlit default settings are rendered. With this, your default settings are rendered when the page loads but it still uses streamlit's sidebar mative settings - css like its open and close animation and buttons.

Dependencies: Uses other custom components I created:

Installation instructions

pip install streamlit-custom-sidebar
# Pre-requisites

create `.streamlit/config.toml` directory where the main app.py file is located

in there, input 
[ui]
hideSidebarNav=true

or 

start streamlit app with 
`streamlit run app.py --ui.hideSidebarNav=true`

Usage instructions

import streamlit as st
from streamlit_custom_sidebar import CustomSidebarDefault
import streamlit_float # recommended

# Note - on the page's first load - when user comes in from the url rather than clicking on the tab, the active page will be derived from the url or from the `loadPageName` parameter. Please make sure all params in the data array object are inputed.

st.set_page_config(layout="wide")

streamlit_float.float_init(theme=False, include_unstable_primary=False)

# iconLib (key,variable in the data list of dicts - its required) -> "Remix", "Tabler", "Google"
data_ = [
            {"index":0, "label":"Example", "page":"example", "href":"http://localhost:8501/"},
            {"index":1, "label":"Page", "page":"page", "iconLib":"Google", "icon":"settings", "href":"http://localhost:8501/page"}
        ]

if "currentPage" not in st.session_state: # required as component will be looking for this in session state to change page via `switch_page`
    st.session_state["currentPage"] = data_[0] 
else:
    st.session_state["currentPage"] = data_[0] 


with st.container():
    defaultSidebar = CustomSidebarDefault(closeNavOnLoad=False, backgroundColor="brown", loadPageName="example", data=data_, LocalOrSessionStorage=1, serverRendering=False, webMedium="local") 
    defaultSidebar.load_custom_sidebar()
    defaultSidebar.change_page()
    
    streamlit_float.float_parent(css="position:fixed; top:-1000px;") # gets rid of the whitespace created from the iframes used to build the component - no big forehead.

# The above must be rendered atop every streamlit page

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit-custom-sidebar-0.0.16.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file streamlit-custom-sidebar-0.0.16.tar.gz.

File metadata

File hashes

Hashes for streamlit-custom-sidebar-0.0.16.tar.gz
Algorithm Hash digest
SHA256 c2a0f3294a6161921914c8d2ae260477ad1957069f57e8dc2c0d5e720a7b319d
MD5 e8e14bd1baea3f43009dc6eb6b687726
BLAKE2b-256 0fe295b73f6858a7e8052528a325aa78eadb65ea94f1976e9098ead2c5a39299

See more details on using hashes here.

File details

Details for the file streamlit_custom_sidebar-0.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_custom_sidebar-0.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 230dfd8cce06abcdcafbf7d008d1a1cfa7afebdd30cc5714639683c0c3ab7e69
MD5 aa0a80b5a7df0997a9a721d30e92d8f4
BLAKE2b-256 f8071a9383d18c7c994431d032e94a1a03e43f58dcc7e67c90dddb8b9c565eb7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page