|
@@ -1,12 +1,11 @@
|
|
|
import {FeatureViewInterface} from "../../RcsbFvSequence/SequenceViews/CustomView/CustomView";
|
|
|
import {StructureViewerPublicInterface, SaguaroRegionList} from "../../RcsbFvStructure/StructureViewerInterface";
|
|
|
-import {RcsbFvSelectorManager, RegionSelectionInterface} from "../../RcsbFvState/RcsbFvSelectorManager";
|
|
|
-import {
|
|
|
- RcsbFv,
|
|
|
- RcsbFvDisplayTypes,
|
|
|
- RcsbFvRowConfigInterface,
|
|
|
- RcsbFvTrackDataElementInterface
|
|
|
-} from "@rcsb/rcsb-saguaro";
|
|
|
+import {RegionSelectionInterface} from "../../RcsbFvState/RcsbFvSelectorManager";
|
|
|
+import {RcsbFvRowConfigInterface} from "@rcsb/rcsb-saguaro/lib/RcsbFv/RcsbFvConfig/RcsbFvConfigInterface";
|
|
|
+import {RcsbFvDisplayTypes} from "@rcsb/rcsb-saguaro/lib/RcsbFv/RcsbFvConfig/RcsbFvDefaultConfigValues";
|
|
|
+import {RcsbFvTrackDataElementInterface} from "@rcsb/rcsb-saguaro/lib/RcsbDataManager/RcsbDataManager";
|
|
|
+import {RcsbFv} from "@rcsb/rcsb-saguaro/lib/RcsbFv/RcsbFv";
|
|
|
+import {RcsbFvStateInterface} from "../../RcsbFvState/RcsbFvStateInterface";
|
|
|
|
|
|
const rowConfig: Array<RcsbFvRowConfigInterface> = [{
|
|
|
trackId: "sequenceTrack",
|
|
@@ -17,7 +16,7 @@ const rowConfig: Array<RcsbFvRowConfigInterface> = [{
|
|
|
rowTitle: "1ASH SEQUENCE",
|
|
|
trackData: [{
|
|
|
begin: 1,
|
|
|
- value: "ANKTRELCMKSLEHAKVDTSNEARQDGIDLYKHMFENYPPLRKYFKSREEYTAEDVQNDPFFAKQGQKILLACHVLCATYDDRETFNAYTRELLDRHARDHVHMPPEVWTDFWKLFEEYLGKKTTLDEPTKQAWHEIGREFAKEINKHGR"
|
|
|
+ label: "ANKTRELCMKSLEHAKVDTSNEARQDGIDLYKHMFENYPPLRKYFKSREEYTAEDVQNDPFFAKQGQKILLACHVLCATYDDRETFNAYTRELLDRHARDHVHMPPEVWTDFWKLFEEYLGKKTTLDEPTKQAWHEIGREFAKEINKHGR"
|
|
|
}]
|
|
|
},{
|
|
|
trackId: "blockTrack",
|
|
@@ -32,7 +31,7 @@ const rowConfig: Array<RcsbFvRowConfigInterface> = [{
|
|
|
}]
|
|
|
}];
|
|
|
|
|
|
-export const fvConfig1: FeatureViewInterface = {
|
|
|
+export const fvConfig1: FeatureViewInterface<any, any> = {
|
|
|
boardId:"1ash_board",
|
|
|
boardConfig: {
|
|
|
range: {
|
|
@@ -43,15 +42,15 @@ export const fvConfig1: FeatureViewInterface = {
|
|
|
includeAxis: true
|
|
|
},
|
|
|
rowConfig: rowConfig,
|
|
|
- sequenceSelectionChangeCallback: (plugin: StructureViewerPublicInterface, selectorManager: RcsbFvSelectorManager, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
- selectorManager.clearSelection("select", {modelId:"structure_1", labelAsymId:"A"});
|
|
|
+ sequenceSelectionChangeCallback: (plugin: StructureViewerPublicInterface<any, any>, stateManager: RcsbFvStateInterface, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
+ stateManager.selectionState.clearSelection("select", {modelId:"structure_1", labelAsymId:"A"});
|
|
|
if(sequenceRegion.length > 0) {
|
|
|
const regions = sequenceRegion.map(r => ({
|
|
|
modelId: "structure_1",
|
|
|
labelAsymId: "A",
|
|
|
region: {begin: r.begin, end: r.end ?? r.begin, source: "sequence"} as RegionSelectionInterface
|
|
|
}));
|
|
|
- selectorManager.addSelectionFromMultipleRegions(regions, "select");
|
|
|
+ stateManager.selectionState.addSelectionFromMultipleRegions(regions, "select");
|
|
|
plugin.select(regions.map(r => ({
|
|
|
...r,
|
|
|
begin: r.region.begin,
|
|
@@ -62,11 +61,11 @@ export const fvConfig1: FeatureViewInterface = {
|
|
|
plugin.resetCamera();
|
|
|
}
|
|
|
},
|
|
|
- sequenceElementClickCallback: (plugin: StructureViewerPublicInterface, selectorManager: RcsbFvSelectorManager, d: RcsbFvTrackDataElementInterface) => {
|
|
|
+ sequenceElementClickCallback: (plugin: StructureViewerPublicInterface<any, any>, stateManager: RcsbFvStateInterface, d?: RcsbFvTrackDataElementInterface) => {
|
|
|
if(d!=null)
|
|
|
plugin.cameraFocus("structure_1", "A", d.begin, d.end ?? d.begin);
|
|
|
},
|
|
|
- sequenceHoverCallback: (plugin: StructureViewerPublicInterface, selectorManager: RcsbFvSelectorManager, elements: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
+ sequenceHoverCallback: (plugin: StructureViewerPublicInterface<any, any>, stateManager: RcsbFvStateInterface, elements: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
if(elements == null || elements.length == 0)
|
|
|
plugin.clearSelection("hover");
|
|
|
else
|
|
@@ -77,8 +76,8 @@ export const fvConfig1: FeatureViewInterface = {
|
|
|
end: e.end ?? e.begin
|
|
|
})), "hover", "set");
|
|
|
},
|
|
|
- structureSelectionCallback: (plugin: StructureViewerPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
|
|
|
- const sel: SaguaroRegionList | undefined = selection.getSelectionWithCondition("structure_1", "A", "select");
|
|
|
+ structureSelectionCallback: (plugin: StructureViewerPublicInterface<any, any>, pfv: RcsbFv, stateManager: RcsbFvStateInterface) => {
|
|
|
+ const sel: SaguaroRegionList | undefined = stateManager.selectionState.getSelectionWithCondition("structure_1", "A", "select");
|
|
|
if(sel == null) {
|
|
|
pfv.clearSelection("select");
|
|
|
plugin.resetCamera();
|
|
@@ -86,8 +85,8 @@ export const fvConfig1: FeatureViewInterface = {
|
|
|
pfv.setSelection({elements: sel.regions, mode: "select"});
|
|
|
}
|
|
|
},
|
|
|
- structureHoverCallback: (plugin: StructureViewerPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
|
|
|
- const sel: SaguaroRegionList | undefined = selection.getSelectionWithCondition("structure_1", "A", "hover");
|
|
|
+ structureHoverCallback: (plugin: StructureViewerPublicInterface<any, any>, pfv: RcsbFv, stateManager: RcsbFvStateInterface) => {
|
|
|
+ const sel: SaguaroRegionList | undefined = stateManager.selectionState.getSelectionWithCondition("structure_1", "A", "hover");
|
|
|
if(sel == null)
|
|
|
pfv.clearSelection("hover");
|
|
|
else
|
|
@@ -95,7 +94,7 @@ export const fvConfig1: FeatureViewInterface = {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-export const fvConfig2: FeatureViewInterface = {
|
|
|
+export const fvConfig2: FeatureViewInterface<any, any> = {
|
|
|
boardId:"1ash_board_bis",
|
|
|
boardConfig: {
|
|
|
range: {
|
|
@@ -106,15 +105,15 @@ export const fvConfig2: FeatureViewInterface = {
|
|
|
includeAxis: true
|
|
|
},
|
|
|
rowConfig: rowConfig,
|
|
|
- sequenceSelectionChangeCallback: (plugin: StructureViewerPublicInterface, selectorManager: RcsbFvSelectorManager, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
- selectorManager.clearSelection("select", {modelId:"structure_2", labelAsymId:"A"});
|
|
|
+ sequenceSelectionChangeCallback: (plugin: StructureViewerPublicInterface<any, any>, stateManager: RcsbFvStateInterface, sequenceRegion: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
+ stateManager.selectionState.clearSelection("select", {modelId:"structure_2", labelAsymId:"A"});
|
|
|
if(sequenceRegion.length > 0) {
|
|
|
const regions = sequenceRegion.map(r => ({
|
|
|
modelId: "structure_2",
|
|
|
labelAsymId: "A",
|
|
|
region: {begin: r.begin, end: r.end ?? r.begin, source: "sequence"} as RegionSelectionInterface
|
|
|
}));
|
|
|
- selectorManager.addSelectionFromMultipleRegions(regions, "select");
|
|
|
+ stateManager.selectionState.addSelectionFromMultipleRegions(regions, "select");
|
|
|
plugin.select(regions.map(r => ({
|
|
|
...r,
|
|
|
begin: r.region.begin,
|
|
@@ -125,11 +124,11 @@ export const fvConfig2: FeatureViewInterface = {
|
|
|
plugin.resetCamera();
|
|
|
}
|
|
|
},
|
|
|
- sequenceElementClickCallback: (plugin: StructureViewerPublicInterface, selectorManager: RcsbFvSelectorManager, d: RcsbFvTrackDataElementInterface) => {
|
|
|
+ sequenceElementClickCallback: (plugin: StructureViewerPublicInterface<any, any>, stateManager: RcsbFvStateInterface, d?: RcsbFvTrackDataElementInterface) => {
|
|
|
if(d!=null)
|
|
|
plugin.cameraFocus("structure_2", "A", d.begin, d.end ?? d.begin);
|
|
|
},
|
|
|
- sequenceHoverCallback: (plugin: StructureViewerPublicInterface, selectorManager: RcsbFvSelectorManager, elements: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
+ sequenceHoverCallback: (plugin: StructureViewerPublicInterface<any, any>, stateManager: RcsbFvStateInterface, elements: Array<RcsbFvTrackDataElementInterface>) => {
|
|
|
if(elements == null || elements.length == 0)
|
|
|
plugin.clearSelection("hover");
|
|
|
else
|
|
@@ -140,8 +139,8 @@ export const fvConfig2: FeatureViewInterface = {
|
|
|
end: e.end ?? e.begin
|
|
|
})), "hover", "set");
|
|
|
},
|
|
|
- structureSelectionCallback: (plugin: StructureViewerPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
|
|
|
- const sel: SaguaroRegionList | undefined = selection.getSelectionWithCondition("structure_2", "A", "select");
|
|
|
+ structureSelectionCallback: (plugin: StructureViewerPublicInterface<any, any>, pfv: RcsbFv, stateManager: RcsbFvStateInterface) => {
|
|
|
+ const sel: SaguaroRegionList | undefined = stateManager.selectionState.getSelectionWithCondition("structure_2", "A", "select");
|
|
|
if(sel == null) {
|
|
|
pfv.clearSelection("select");
|
|
|
plugin.resetCamera();
|
|
@@ -149,8 +148,8 @@ export const fvConfig2: FeatureViewInterface = {
|
|
|
pfv.setSelection({elements: sel.regions, mode: "select"});
|
|
|
}
|
|
|
},
|
|
|
- structureHoverCallback: (plugin: StructureViewerPublicInterface, pfv: RcsbFv, selection: RcsbFvSelectorManager) => {
|
|
|
- const sel: SaguaroRegionList | undefined = selection.getSelectionWithCondition("structure_2", "A", "hover");
|
|
|
+ structureHoverCallback: (plugin: StructureViewerPublicInterface<any, any>, pfv: RcsbFv, stateManager: RcsbFvStateInterface) => {
|
|
|
+ const sel: SaguaroRegionList | undefined = stateManager.selectionState.getSelectionWithCondition("structure_2", "A", "hover");
|
|
|
if(sel == null)
|
|
|
pfv.clearSelection("hover");
|
|
|
else
|