Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add duplicate callback support #5

Open
wants to merge 4 commits into
base: async-dash
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion async_dash/monkey_patch_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
stringify_id,
to_json,
)
from dash._utils import clean_property_name


def register_callback(
Expand Down Expand Up @@ -99,7 +100,8 @@ async def add_context(*args, **kwargs):
if not isinstance(vali, NoUpdate):
has_update = True
id_str = stringify_id(speci["id"])
component_ids[id_str][speci["property"]] = vali
prop = clean_property_name(speci["property"])
component_ids[id_str][prop] = vali

if not has_update:
raise PreventUpdate
Expand Down
1 change: 1 addition & 0 deletions async_dash/monkey_patch_callback_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

def apply():
flask.g = quart.g
flask.request = quart.request
flask.has_request_context = quart.has_request_context
37 changes: 37 additions & 0 deletions examples/duplicate_callbacks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from async_dash import Dash
from dash import html, dcc, Output, Input
from quart import Quart

import plotly.express as px
import plotly.graph_objects as go

server = Quart(__name__)
app = Dash(
server=server,
prevent_initial_callbacks=True
)

app.layout = html.Div([
html.Button('Draw Graph', id='draw-2'),
html.Button('Reset Graph', id='reset-2'),
dcc.Graph(id='duplicate-output-graph')
])

@app.callback(
Output('duplicate-output-graph', 'figure', allow_duplicate=True),
Input('draw-2', 'n_clicks'),
prevent_initial_call=True
)
def draw_graph(n_clicks):
df = px.data.iris()
return px.scatter(df, x=df.columns[0], y=df.columns[1], color="species")

@app.callback(
Output('duplicate-output-graph', 'figure'),
Input('reset-2', 'n_clicks'),
)
def reset_graph(input):
return go.Figure()

if __name__ == '__main__':
app.run(debug=True)
27 changes: 27 additions & 0 deletions examples/page_example/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from async_dash import Dash
import dash
from dash import html, dcc
from quart import Quart

server = Quart(__name__)

app = Dash(__name__, server=server, use_pages=True)

app.layout = html.Div(
[
html.H1("App Frame"),
html.Div(
[
html.Div(
dcc.Link(f"{page['name']} - {page['path']}", href=page["path"])
)
for page in dash.page_registry.values()
if page["module"] != "pages.not_found_404"
]
),
dash.page_container,
]
)

if __name__ == "__main__":
server.run()
3 changes: 3 additions & 0 deletions examples/page_example/pages/page1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import dash

dash.register_page("home", layout="We're home!", path="/page1")
5 changes: 5 additions & 0 deletions examples/page_example/pages/page2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import dash

dash.register_page(
"very_important", layout="Don't miss it!", path="/page2", order=0
)
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "async-dash"
version = "0.1.0a1"
version = "0.2.0"
description = "Async port of the official Plotly Dash library"
authors = ["Snehil Vijay <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -35,8 +35,8 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.7"
dash = "^2.2.0"
quart = "^0.16.3"
dash = ">=2.9.0"
quart = "^0.17.0"

[tool.poetry.dev-dependencies]
black = "^22.1.0"
Expand Down