Skip to content

Commit 1cd9c05

Browse files
committed
Fix ExternalWrapper children render
1 parent e44f228 commit 1cd9c05

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

@plotly/dash-test-components/src/components/ExternalComponent.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import PropTypes from 'prop-types';
33

44

5-
const ExternalComponent = ({ id, text, input_id }) => {
5+
const ExternalComponent = ({ id, text, input_id, extra_component }) => {
66
const ctx = window.dash_component_api.useDashContext();
77
const ExternalWrapper = window.dash_component_api.ExternalWrapper;
88

@@ -15,6 +15,14 @@ const ExternalComponent = ({ id, text, input_id }) => {
1515
value={text}
1616
componentPath={[...ctx.componentPath, 'external']}
1717
/>
18+
{
19+
extra_component &&
20+
<ExternalWrapper
21+
componentType={extra_component.type}
22+
componentNamespace={extra_component.namespace}
23+
componentPath={[...ctx.componentPath, 'extra']}
24+
{...extra_component.props}
25+
/>}
1826
</div>
1927
)
2028
}
@@ -23,6 +31,11 @@ ExternalComponent.propTypes = {
2331
id: PropTypes.string,
2432
text: PropTypes.string,
2533
input_id: PropTypes.string,
34+
extra_component: PropTypes.exact({
35+
type: PropTypes.string,
36+
namespace: PropTypes.string,
37+
props: PropTypes.object,
38+
}),
2639
};
2740

2841
export default ExternalComponent;

dash/dash-renderer/src/wrapper/ExternalWrapper.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {useDispatch} from 'react-redux';
33

44
import {DashLayoutPath} from '../types/component';
55
import DashWrapper from './DashWrapper';
6-
import {insertComponent, removeComponent} from '../actions';
6+
import {insertComponent, removeComponent, updateProps} from '../actions';
77

88
type Props = {
99
componentPath: DashLayoutPath;
@@ -32,7 +32,7 @@ function ExternalWrapper({
3232
component: {
3333
type: componentType,
3434
namespace: componentNamespace,
35-
props: {}
35+
props: props
3636
},
3737
componentPath
3838
})
@@ -43,10 +43,14 @@ function ExternalWrapper({
4343
};
4444
}, []);
4545

46+
useEffect(() => {
47+
dispatch(updateProps({itempath: componentPath, props}));
48+
}, [props]);
49+
4650
if (!inserted) {
4751
return null;
4852
}
4953
// Render a wrapper with the actual props.
50-
return <DashWrapper componentPath={componentPath} {...props} />;
54+
return <DashWrapper componentPath={componentPath} />;
5155
}
5256
export default ExternalWrapper;

tests/integration/renderer/test_external_component.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,19 @@ def test_rext001_render_external_component(dash_duo):
88
[
99
dcc.Input(id="sync", value="synced"),
1010
html.Button("sync", id="sync-btn"),
11-
ExternalComponent("ext", input_id="external", text="external"),
11+
ExternalComponent(
12+
id="ext",
13+
input_id="external",
14+
text="external",
15+
extra_component={
16+
"type": "Div",
17+
"namespace": "dash_html_components",
18+
"props": {
19+
"id": "extra",
20+
"children": [html.Div("extra children", id="extra-children")],
21+
},
22+
},
23+
),
1224
]
1325
)
1426

@@ -25,3 +37,5 @@ def on_sync(_, value):
2537
dash_duo.wait_for_text_to_equal("#external", "external")
2638
dash_duo.find_element("#sync-btn").click()
2739
dash_duo.wait_for_text_to_equal("#external", "synced")
40+
41+
dash_duo.wait_for_text_to_equal("#extra", "extra children")

0 commit comments

Comments
 (0)