У меня в шаблоне два компонента, один из которых я хотел бы смонтировать только при вызове метода из другого компонента.
Как я мог это сделать?
Вот мой шаблон:
import {ReactInstance} from 'react-360-web';
function init(bundle, parent, options = {}) {
...
// Render 1
r360.renderToSurface(
r360.createRoot('Component1'),
r360.getDefaultSurface()
);
//I WOULD LIKE TO MOUNT THIS COMPONENT LATER!
r360.renderToLocation(
r360.createRoot('Component2'),
r360.getDefaultLocation(),
);
}
window.React360 = {init};
Вот мой компонент:
export default class Component1 extends React.Component {
constructor(props) {
super(props)
}
mountNewComponent() {
//HOW TO MOUNT COMPONENT2 FROM HERE??
}
..
}