Skip to main content

Streamlit component for a floating User Info panel anchored to the sidebar. Supports fixed float stick in sidebar, a collapsed avatar chip when the sidebar is hidden, usage stats (messages/tokens/cost), and compact layout.

Project description

st-user-info-panel

A polished Streamlit custom component for a floating User Info Panel anchored to the sidebar.
Supports fixed float stick in sidebar, collapsed chip (avatar initials) when the sidebar is collapsed, and usage stats (messages, tokens, cost).

PyPI version License: MIT

Repo: https://github.com/agustyawan-arif/st-user-info-panel


✨ Features

  • Floating panel that follows the sidebar width (portal) or sticky at the bottom of the sidebar (inside).
  • Collapsed chip: when the sidebar collapses, a small circular chip with initials appears;
  • Stats: Messages, Tokens, Cost with optional progress bars if monthly limits are set.
  • Compact mode for tighter sidebars.
  • Optional fields: Department, Work Location.
  • Uncontrolled (default) or Controlled expansion state.
  • Robust geometry handling for scrollable sidebars and animated collapse/expand.

📦 Install

Note: Starting from version 0.1.1, the minimum required Python version has been lowered to >=3.10 (previously >=3.11), providing broader compatibility!

pip install st-user-info-panel

Import name:

from st_user_info_panel import st_user_info_panel

🚀 Quickstart

import streamlit as st
from st_user_info_panel import st_user_info_panel

st.set_page_config(page_title="AI Chat Assistant Demo", layout="wide", initial_sidebar_state="expanded")

if "user_panel_expanded" not in st.session_state:
    st.session_state.user_panel_expanded = False

with st.sidebar:
    st.title("🤖 AI Assistant")
    st.subheader("Recent Conversations")
    for i in range(20):
        st.markdown(f"• Chat {i+1}")

    st.markdown("---")
    st.subheader("Settings")
    st.selectbox("Model", ["GPT-4", "Claude", "Gemini"])
    st.slider("Temperature", 0.0, 2.0, 0.7)

    result = st_user_info_panel(
        name="Sarah Johnson",
        job_title="Senior Data Scientist",
        email="sarah.johnson@techcorp.com",
        department="Data Platform",
        work_location="Jakarta",
        messages_count=340, monthly_messages_limit=500,
        tokens_this_month=3_200_000, monthly_tokens_limit=10_000_000,
        cost_usd=42.35, monthly_cost_limit=200.0,
        show_detailed_stats=True,
        compact=True,
        stats_style="rows",
        show_progress=False,
        side_padding_px=12,
        bottom_offset_px=16,
        controlled=False,
        expanded=st.session_state.user_panel_expanded,
        key="user-panel",
    )

    if result:
        evt = result.get("event")
        if evt == "toggle":
            st.session_state.user_panel_expanded = result["expanded"]
        elif evt == "logout":
            st.session_state.user_panel_expanded = False
            st.warning("Logout clicked")
        elif evt == "chip":
            pass

⚙️ API

st_user_info_panel(...) -> dict | None

Identity

Prop Type Default Notes
name str "John Doe" Used for initials
job_title str "Data Scientist"
email str "john.doe@company.com" Wraps for long values
avatar_color str "#FE5556" Any CSS color
department Optional[str] None Optional
work_location Optional[str] None Optional

Stats (neutral)

Prop Type Default Notes
messages_count int 0
monthly_messages_limit int 0 0 = unlimited
tokens_this_month int 0
monthly_tokens_limit int 0 0 = unlimited
cost_usd float 0.0
monthly_cost_limit float 0.0 0 = unlimited
show_detailed_stats bool True
show_progress bool True

Layout & Behavior

Prop Type Default Notes
side_padding_px int 12
bottom_offset_px int 16
border_radius_px int 12
compact bool False
stats_style Literal["rows","cards"] "rows" rows is compact
logout_label str "Logout" Text label for the logout button
logout_icon Optional[str] "🚪" Icon for logout button. Supports :material/icon_name:
logout_color Optional[str] None Custom button color. Defaults to Streamlit theme color

State control

Prop Type Default Notes
controlled bool False If True, follows expanded prop
expanded bool False
key Optional[str] None Stable key recommended

Return (events)

{
  "event": "toggle" | "logout" | "chip",
  "expanded": bool,
}

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

st_user_info_panel-0.1.3.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

st_user_info_panel-0.1.3-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file st_user_info_panel-0.1.3.tar.gz.

File metadata

  • Download URL: st_user_info_panel-0.1.3.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for st_user_info_panel-0.1.3.tar.gz
Algorithm Hash digest
SHA256 5b0d26203ed5981f78a4bb696e64df274ecdf0fc540caeba3540d5bad541bd8a
MD5 86b6311679fb8348624dcac4944e7702
BLAKE2b-256 433129fa56f60c35d434ccde5ff90bd1311faad312d61972a8acd09aeb597664

See more details on using hashes here.

Provenance

The following attestation bundles were made for st_user_info_panel-0.1.3.tar.gz:

Publisher: publish.yml on agustyawan-arif/st-user-info-panel

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file st_user_info_panel-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for st_user_info_panel-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 861ab859b9c789330c8f37a5a534a17b2b6599c9ba217a07901495156b0d4848
MD5 e6b726a250a9e27cb2840c66207ec898
BLAKE2b-256 23c5059d7ec141b8a7c2c93707f5536bb040690acaf0ba55009616ad9ff23333

See more details on using hashes here.

Provenance

The following attestation bundles were made for st_user_info_panel-0.1.3-py3-none-any.whl:

Publisher: publish.yml on agustyawan-arif/st-user-info-panel

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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