This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #854 from plotly/hg-700-persistence
PersistenceTransforms for date in datePickerRange and datePickerSingle
- Loading branch information
Showing
5 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import moment from 'moment'; | ||
import {isNil} from 'ramda'; | ||
|
||
export default { | ||
extract: propValue => { | ||
if (!isNil(propValue)) { | ||
return moment(propValue) | ||
.startOf('day') | ||
.format('YYYY-MM-DD'); | ||
} | ||
return propValue; | ||
}, | ||
apply: storedValue => storedValue, | ||
}; |
87 changes: 87 additions & 0 deletions
87
tests/integration/calendar/test_date_picker_persistence.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
from datetime import datetime | ||
|
||
import dash | ||
import dash_html_components as html | ||
import dash_core_components as dcc | ||
from dash.dependencies import Input, Output | ||
|
||
|
||
def test_rdpr001_persisted_dps(dash_dcc): | ||
app = dash.Dash(__name__) | ||
app.layout = html.Div( | ||
[ | ||
html.Button("fire callback", id="btn", n_clicks=1), | ||
html.Div(children=[html.Div(id="container"), html.P("dps", id="dps-p")]), | ||
] | ||
) | ||
|
||
# changing value of date with each callback to verify | ||
# persistenceTransforms is stripping the time-part from the date-time | ||
@app.callback(Output("container", "children"), [Input("btn", "n_clicks")]) | ||
def update_output(value): | ||
return dcc.DatePickerSingle( | ||
id="dps", | ||
min_date_allowed=datetime(2020, 1, 1), | ||
max_date_allowed=datetime(2020, 1, 7), | ||
date=datetime(2020, 1, 3, 1, 1, 1, value), | ||
persistence=True, | ||
persistence_type="session", | ||
) | ||
|
||
@app.callback(Output("dps-p", "children"), [Input("dps", "date")]) | ||
def display_dps(value): | ||
return value | ||
|
||
dash_dcc.start_server(app) | ||
|
||
dash_dcc.select_date_single("dps", day="2") | ||
dash_dcc.wait_for_text_to_equal("#dps-p", "2020-01-02") | ||
dash_dcc.find_element("#btn").click() | ||
dash_dcc.wait_for_text_to_equal("#dps-p", "2020-01-02") | ||
|
||
|
||
def test_rdpr002_persisted_dpr(dash_dcc): | ||
app = dash.Dash(__name__) | ||
app.layout = html.Div( | ||
[ | ||
html.Button("fire callback", id="btn", n_clicks=1), | ||
html.Div( | ||
children=[ | ||
html.Div(id="container"), | ||
html.P("dpr", id="dpr-p-start"), | ||
html.P("dpr", id="dpr-p-end"), | ||
] | ||
), | ||
] | ||
) | ||
|
||
# changing value of start_date and end_date with each callback to verify | ||
# persistenceTransforms is stripping the time-part from the date-time | ||
@app.callback(Output("container", "children"), [Input("btn", "n_clicks")]) | ||
def update_output(value): | ||
return dcc.DatePickerRange( | ||
id="dpr", | ||
min_date_allowed=datetime(2020, 1, 1), | ||
max_date_allowed=datetime(2020, 1, 7), | ||
start_date=datetime(2020, 1, 3, 1, 1, 1, value), | ||
end_date=datetime(2020, 1, 4, 1, 1, 1, value), | ||
persistence=True, | ||
persistence_type="session", | ||
) | ||
|
||
@app.callback(Output("dpr-p-start", "children"), [Input("dpr", "start_date")]) | ||
def display_dpr_start(value): | ||
return value | ||
|
||
@app.callback(Output("dpr-p-end", "children"), [Input("dpr", "end_date")]) | ||
def display_dpr_end(value): | ||
return value | ||
|
||
dash_dcc.start_server(app) | ||
|
||
dash_dcc.select_date_range("dpr", (2, 5)) | ||
dash_dcc.wait_for_text_to_equal("#dpr-p-start", "2020-01-02") | ||
dash_dcc.wait_for_text_to_equal("#dpr-p-end", "2020-01-05") | ||
dash_dcc.find_element("#btn").click() | ||
dash_dcc.wait_for_text_to_equal("#dpr-p-start", "2020-01-02") | ||
dash_dcc.wait_for_text_to_equal("#dpr-p-end", "2020-01-05") |