Browse Source

Change sequence chain in Assembly view bug fixed && Dependency update

bioinsilico 1 year ago
parent
commit
73808ba6bf

+ 10 - 0
CHANGELOG.md

@@ -2,6 +2,16 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [3.0.10] - 2023-07-11
+### Bug fix
+- Change sequence chain in Assembly view bug fixed
+ 
+- ### Dependency update
+- rcsb-api-tools v4.1.13,
+- rcsb-saguaro v2.5.13,
+- rcsb-saguaro-app v5.0.8
+- Updated multiple dependencies 
+
 ## [3.0.9] - 2023-05-19
 ### Bug fix
 - Chain checkbox label bug fixed in assembly view

File diff suppressed because it is too large
+ 256 - 438
package-lock.json


+ 31 - 31
package.json

@@ -1,6 +1,6 @@
 {
   "name": "@rcsb/rcsb-saguaro-3d",
-  "version": "3.0.9",
+  "version": "3.0.10",
   "description": "RCSB Molstar/Saguaro Web App",
   "main": "build/dist/app.js",
   "files": [
@@ -46,54 +46,54 @@
   },
   "license": "MIT",
   "devDependencies": {
-    "@babel/core": "^7.18.10",
+    "@babel/core": "^7.22.8",
     "@babel/plugin-proposal-class-properties": "^7.18.6",
-    "@babel/preset-env": "^7.18.10",
-    "@types/d3-selection": "^3.0.3",
-    "@types/d3-zoom": "^3.0.1",
-    "@types/lodash": "^4.14.191",
-    "@types/react": "^18.0.15",
-    "@types/react-dom": "^18.0.6",
+    "@babel/preset-env": "^7.22.7",
+    "@types/d3-selection": "^3.0.5",
+    "@types/d3-zoom": "^3.0.3",
+    "@types/lodash": "^4.14.195",
+    "@types/react": "^18.2.14",
+    "@types/react-dom": "^18.2.6",
     "@types/uniqid": "^5.3.2",
-    "babel-loader": "^8.2.5",
+    "babel-loader": "^9.1.3",
     "buffer": "^6.0.3",
-    "concurrently": "^7.3.0",
+    "concurrently": "^8.2.0",
     "crypto-browserify": "^3.12.0",
-    "css-loader": "^6.6.0",
+    "css-loader": "^6.8.1",
     "del-cli": "^5.0.0",
     "file-loader": "^6.2.0",
-    "html-webpack-plugin": "^5.5.0",
+    "html-webpack-plugin": "^5.5.3",
     "lodash": "^4.17.21",
-    "mini-css-extract-plugin": "^2.6.1",
-    "mkdirp": "^2.1.5",
+    "mini-css-extract-plugin": "^2.7.6",
+    "mkdirp": "^3.0.1",
     "ncp": "^2.0.0",
     "path-browserify": "^1.0.1",
     "react": "^18.1.0",
     "react-dom": "^18.1.0",
-    "react-icons": "^4.4.0",
+    "react-icons": "^4.10.1",
     "rxjs": "^7.5.6",
-    "sass": "^1.54.0",
-    "sass-loader": "^13.0.2",
+    "sass": "^1.63.6",
+    "sass-loader": "^13.3.2",
     "stream-browserify": "^3.0.0",
-    "style-loader": "^3.3.1",
-    "ts-loader": "^9.3.1",
-    "tslib": "^2.4.0",
-    "typedoc": "^0.23.20",
-    "typedoc-plugin-missing-exports": "^1.0.0",
-    "typescript": "^4.7.4",
+    "style-loader": "^3.3.3",
+    "ts-loader": "^9.4.4",
+    "tslib": "^2.6.0",
+    "typedoc": "^0.24.8",
+    "typedoc-plugin-missing-exports": "^2.0.0",
+    "typescript": "^5.1.6",
     "uniqid": "^5.4.0",
-    "webpack": "^5.73.0",
-    "webpack-cli": "^4.10.0",
-    "webpack-dev-server": "^4.9.3"
+    "webpack": "^5.88.1",
+    "webpack-cli": "^5.1.4",
+    "webpack-dev-server": "^4.15.1"
   },
   "dependencies": {
-    "@rcsb/rcsb-api-tools": "^4.1.3",
-    "@rcsb/rcsb-saguaro": "^2.5.9",
-    "@rcsb/rcsb-saguaro-app": "^5.0.7"
+    "@rcsb/rcsb-api-tools": "^4.1.13",
+    "@rcsb/rcsb-saguaro": "^2.5.13",
+    "@rcsb/rcsb-saguaro-app": "^5.0.8"
   },
   "peerDependencies": {
-    "@rcsb/rcsb-molstar": "^2.6.1",
-    "molstar": "^3.35.0"
+    "@rcsb/rcsb-molstar": "^2.7.1",
+    "molstar": "^3.37.1"
   },
   "bugs": {
     "url": "https://github.com/rcsb/rcsb-saguaro-3d/issues"

+ 2 - 5
src/RcsbFvSequence/SequenceViews/RcsbView/CallbackManagerFactoryImplementation/AssemblyCallbackManager.ts

@@ -1,17 +1,14 @@
 import {
-    SaguaroChain,
     SaguaroRange,
     SaguaroRegionList
 } from "../../../../RcsbFvStructure/StructureViewerInterface";
 import {RcsbFvTrackDataElementInterface} from "@rcsb/rcsb-saguaro";
-import {asyncScheduler} from "rxjs";
 import {
     AbstractCallbackManager, CallbackConfigInterface,
     CallbackManagerFactoryInterface,
     CallbackManagerInterface
 } from "../CallbackManagerFactoryInterface";
 import {RegionSelectionInterface} from "../../../../RcsbFvState/RcsbFvSelectorManager";
-import {DataContainer} from "../../../../Utils/DataContainer";
 
 export class AssemblyCallbackManagerFactory implements CallbackManagerFactoryInterface<undefined> {
     getCallbackManager(config: CallbackConfigInterface): CallbackManagerInterface<undefined> {
@@ -75,8 +72,8 @@ class AssemblyCallbackManager extends AbstractCallbackManager<undefined> {
         if(allSel == null || allSel.length ===0) {
             this.rcsbFvContainer.get()?.getFv().clearSelection(mode);
         }else if( mode === 'select' && ((lastSel?.labelAsymId && lastSel?.labelAsymId != labelAsymId) || (lastSel?.operatorName && lastSel?.operatorName != operatorName)) ){
-            const authId: string | undefined = this.stateManager.assemblyModelSate.getChainInfo(lastSel?.labelAsymId!)?.auth;
-            await this.modelChangeCallback(authId, lastSel?.operatorName);
+            const labelAsymId: string | undefined = this.stateManager.assemblyModelSate.getChainInfo(lastSel?.labelAsymId!)?.label;
+            await this.modelChangeCallback(labelAsymId, lastSel?.operatorName);
         }else if(modelId && labelAsymId){
             const sel: SaguaroRegionList | undefined = this.stateManager.selectionState.getSelectionWithCondition(
                 modelId,

+ 1 - 1
src/RcsbFvStructure/StructureViewers/StructureViewer.ts

@@ -13,7 +13,7 @@ import {ColorTheme} from "molstar/lib/mol-theme/color";
 import {Subscription} from "rxjs";
 import {RcsbFvStateInterface} from "../../RcsbFvState/RcsbFvStateInterface";
 
-export class StructureViewer<R,L,S> implements StructureViewerInterface<R,L,S> {
+export class StructureViewer<R,L,S extends {}> implements StructureViewerInterface<R,L,S> {
     private readonly structureViewerManagerFactory:  ViewerManagerFactoryInterface<R,L,S>;
     private callbackManager: ViewerCallbackManagerInterface;
     private actionManager: ViewerActionManagerInterface<R,L>;

Some files were not shown because too many files changed in this diff