Skip to main content

Grid layout system for moving components around.

Project description

Dash Dynamic Grid Layout

Dash Dynamic Grid Layout is a Dash component library that provides a flexible grid layout system for arranging and moving components within a Dash application.

Dynamic Grid Example

Special thanks to BSDev BSd3v for contributing the improvements and bug fixes making this a much more polished project.

Features

  • Drag-and-drop functionality for rearranging components
  • Resizable grid items
  • Customizable layout with responsive breakpoints
  • Option to add or remove items dynamically
  • Customizable drag handles for each item
  • Persistence of component state
  • Local, memory, or session storage for persistence

Installation

pip install dash-dynamic-grid-layout

Usage

Here's a basic example of how to use the DashGridLayout component:

import dash_dynamic_grid_layout as dgl
from dash import Dash, html, dcc
import plotly.express as px

app = Dash(__name__)

df = px.data.iris()

app.layout = html.Div([
    dgl.DashGridLayout(
        id='grid-layout',
        children=[
            dgl.DraggableWrapper(
                children=[
                    html.Div('Drag me!', style={'height': '100%', 'display': 'flex', 'alignItems': 'center', 'justifyContent': 'center', 'border': '1px solid #ddd', 'borderRadius': '5px'})
                ],
                handleText='Move'
            ),
            dgl.DraggableWrapper(
                children=[
                    dcc.Graph(
                        figure=px.scatter(df, x="sepal_width", y="sepal_length", color="species"),
                        style={'height': '100%'}
                    )
                ],
                handleText='Move Graph'
            )
        ],
        rowHeight=150,
        cols={'lg': 12, 'md': 10, 'sm': 6, 'xs': 4, 'xxs': 2},
        style={'height': '600px'},
    )
])

if __name__ == '__main__':
    app.run_server(debug=True)

Prop Reference

DashGridLayout

DashGridLayout is a flexible grid layout system for arranging and moving components within a Dash application. These are the properties available for the DashGridLayout component:

Property Type Default Description
id string - The ID used to identify this component in Dash callbacks.
className string 'layout' CSS class name for the grid layout.
rowHeight number 100 The height of a single row in pixels.
cols object {lg: 12, md: 10, sm: 6, xs: 4, xxs: 2} An object containing breakpoints and column numbers.
style object - Inline styles for the grid layout.
itemCount number - The number of items in the grid.
itemToRemove any '' The item in the grid that should be removed when triggered.
compactType string 'vertical' Compaction type. Can be 'vertical', 'horizontal', or null.
showRemoveButton boolean true Whether to show remove buttons for grid items.
showResizeHandles boolean true Whether to show resize handles for grid items.
items array [] List of items to be rendered in the grid.
itemLayout array [] Layout configuration for each item. Each item should be an object with shape {i: string, x: number, y: number, w: number, h: number}.
currentLayout array [] The current layout of the grid items. Each item should be an object with shape {i: string, x: number, y: number, w: number, h: number}.
breakpoints object {lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0} Breakpoints for responsive layout.
breakpointData object - Data about the current breakpoint and columns. Shape: {newBreakpoint: string, newCols: number}.

Callbacks

Property Description
setProps Callback function to update Dash props.

DraggableWrapper

DraggableWrapper is a component that wraps other components and makes them draggable. These are the properties available for the DraggableWrapper component:

Property Type Default Description
children node - The content to be wrapped and made draggable
handleBackground string "rgb(85,85,85)" Background color of the drag handle
handleColor string "white" Text color of the drag handle
handleText string "Drag here" Text to display in the drag handle

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.

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

dash_dynamic_grid_layout-0.1.3.tar.gz (462.5 kB view details)

Uploaded Source

Built Distribution

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

dash_dynamic_grid_layout-0.1.3-py3-none-any.whl (466.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dash_dynamic_grid_layout-0.1.3.tar.gz
  • Upload date:
  • Size: 462.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.1

File hashes

Hashes for dash_dynamic_grid_layout-0.1.3.tar.gz
Algorithm Hash digest
SHA256 509feb67a18906134396f4561d701333bf9b66bbc57a2939bb7178578452fe83
MD5 6aa4cb543725f927401e9d7b8c7c8ee6
BLAKE2b-256 9316c304660bfebe6b9c2aed52dae5aac489b4a5d4c35b537aed4e97a1de6f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dash_dynamic_grid_layout-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2c7ce5ad07a93da8129db9f7a4be40cb11abd471bea110126ee103fba87e2fdf
MD5 cdc478ae48cb5dd776fa4895663ca88b
BLAKE2b-256 486defca3a03039ab798ba685b8e3fc03c98a7eb1be18dcd1003c2722d68a92e

See more details on using hashes here.

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