|
@@ -13,11 +13,13 @@ import {
|
|
|
} from "../../../RcsbFvStructure/StructureViewerInterface";
|
|
|
import uniqid from "uniqid";
|
|
|
import {RcsbFvStateInterface} from "../../../RcsbFvState/RcsbFvStateInterface";
|
|
|
+import { createRoot } from "react-dom/client";
|
|
|
|
|
|
export type CustomViewStateInterface<R,L> = Omit<Omit<CustomViewInterface<R,L>, "modelChangeCallback">, "structureViewer">;
|
|
|
|
|
|
export interface CustomViewInterface<R,L> {
|
|
|
customViewContainerId?: string;
|
|
|
+ selectorContainerId?: string;
|
|
|
blockConfig: FeatureBlockInterface<R,L> | Array<FeatureBlockInterface<R,L>>;
|
|
|
blockSelectorElement?: (blockSelector: BlockSelectorManager) => JSX.Element;
|
|
|
modelChangeCallback?: () => CustomViewStateInterface<R,L>;
|
|
@@ -74,6 +76,9 @@ export class CustomView<R,L> extends AbstractView<CustomViewInterface<R,L> & {st
|
|
|
|
|
|
readonly state: CustomViewStateInterface<R,L> = {
|
|
|
customViewContainerId: this.props.customViewContainerId,
|
|
|
+ selectorContainerId: this.props.selectorContainerId
|
|
|
+ ? this.props.selectorContainerId
|
|
|
+ : "nav-selector",
|
|
|
blockConfig: this.props.blockConfig,
|
|
|
blockSelectorElement: this.props.blockSelectorElement,
|
|
|
blockChangeCallback: this.props.blockChangeCallback
|
|
@@ -87,15 +92,20 @@ export class CustomView<R,L> extends AbstractView<CustomViewInterface<R,L> & {st
|
|
|
render():JSX.Element {
|
|
|
return (
|
|
|
this.props.customViewContainerId
|
|
|
- ? <div id={this.rcsbFvDivId}>
|
|
|
- { this.additionalContent() }
|
|
|
- </div>
|
|
|
+ ? <div id={this.rcsbFvDivId}></div>
|
|
|
: super.render()
|
|
|
);
|
|
|
}
|
|
|
|
|
|
componentDidMount(): void {
|
|
|
super.componentDidMount();
|
|
|
+ const selectorContainer = document.getElementById(this.state.selectorContainerId!);
|
|
|
+ if (selectorContainer) {
|
|
|
+ const root = createRoot(selectorContainer);
|
|
|
+ const selector = this.additionalContent();
|
|
|
+ root.render(selector);
|
|
|
+ }
|
|
|
+
|
|
|
this.blockViewSelector.setActiveBlock( (this.state.blockConfig instanceof Array ? this.state.blockConfig : [this.state.blockConfig])[0].blockId! );
|
|
|
}
|
|
|
|