Metadata-Version: 2.3
Name: streamlit-mermaid-interactive
Version: 0.1.2
Summary: Add your description here
Author: Zachary Blackwood
Author-email: Zachary Blackwood <zachary.blackwood@snowflake.com>
Requires-Dist: streamlit>=1.51
Requires-Dist: pytest>=7.0 ; extra == 'dev'
Requires-Python: >=3.10
Provides-Extra: dev
Description-Content-Type: text/markdown

# Streamlit Mermaid Interactive

A Streamlit component for rendering interactive Mermaid diagrams with click event handling.

## Installation

with uv:
```bash
uv add streamlit-mermaid-interactive
```
with pip:
```bash
pip install streamlit-mermaid-interactive
```

## Supported Diagram Types

This component currently supports **4 diagram types** with full interactivity:

### ✅ Fully Working

1. **Flowchart** - Click on nodes
2. **Sequence Diagram** - Click on actors/participants
3. **Entity Relationship Diagram (ERD)** - Click on entity boxes
4. **State Diagram** - Click on state boxes
5. **Class Diagram** - Click on class boxes

### Working visually, but do not record clicks

The following diagram types are **rendered correctly** but **clicks do not yet work**:

1. **Pie Chart** - Click on legend items
3. **Gantt Chart** - No identifiable parent containers for tasks
4. **Git Graph** - Commits without IDs have no clickable targets
5. **User Journey** - Task text elements lack identifiable parents
6. **Timeline** - Text elements have no IDs or clickable parents

## Usage

```python
import streamlit as st
from streamlit_mermaid_interactive import mermaid

st.info("✅ This component supports: Flowchart and State Diagram")

# Example: Flowchart
flowchart_code = """
graph TD
    A[Start] --> B{Decision}
    B -->|Yes| C[OK]
    B -->|No| D[End]
"""

result = mermaid(flowchart_code, theme="neutral", key="flowchart")

if result.get("entity_clicked"):
    st.info(f"Clicked: {result['entity_clicked']}")
```

## Supported Themes

- `"neutral"` (default)
- `"dark"`
- `"forest"`
- `"base"`

## Known Limitations

### Technical Challenges

The unsupported diagram types have specific issues with Mermaid v10's SVG rendering:

- **Sequence/ERD/Pie**: Click events not properly propagated or detected
- **Class Diagrams**: Text elements are not children of container `<g>` elements
- **Gantt Charts**: Task rectangles exist but have no parent containers with IDs
- **Git Graphs**: Commits created with bare `commit` command have no commit IDs to extract
- **User Journey/Timeline**: Text elements for tasks/events have no identifiable parent elements with IDs

### Why Not More Diagrams?

Mermaid v10 uses different SVG structures for different diagram types. Some structures make it straightforward to identify clickable elements (like ERD's `.er.entityBox` or Pie's `.legend`), while others require complex DOM traversal or text-based parsing that is error-prone.

## Development

### Running Tests

```bash
# Basic import test
uv run python test_import.py
```

### Manual Testing

Run the demo app:
```bash
streamlit run streamlit_app.py
```

To add support for more diagram types, you would need to:

1. Inspect the SVG structure for that diagram type
2. Find a reliable selector or ID pattern for clickable elements
3. Update the `getClickableElements()` function in `__init__.py`
4. Test thoroughly with various diagram configurations

## Example App

See `streamlit_app.py` for examples of all diagram types (both working and non-working).

## License

MIT
