Browse Source

expose label as load param

Yana Rose 1 year ago
parent
commit
66b750e954
2 changed files with 4 additions and 3 deletions
  1. 3 3
      src/viewer/helpers/model.ts
  2. 1 0
      src/viewer/types.ts

+ 3 - 3
src/viewer/helpers/model.ts

@@ -15,11 +15,11 @@ import { TrajectoryHierarchyPresetProvider } from 'molstar/lib/mol-plugin-state/
 
 export class ModelLoader {
     async load<P = {}, S={}>(load: LoadParams, props?: PresetProps, matrix?: Mat4, reprProvider?: TrajectoryHierarchyPresetProvider<P, S>, params?: P) {
-        const { fileOrUrl, format, isBinary } = load;
+        const { fileOrUrl, format, isBinary, label } = load;
 
         const data = fileOrUrl instanceof File
-            ? (await this.plugin.builders.data.readFile({ file: Asset.File(fileOrUrl), isBinary })).data
-            : await this.plugin.builders.data.download({ url: fileOrUrl, isBinary });
+            ? (await this.plugin.builders.data.readFile({ file: Asset.File(fileOrUrl), isBinary, label })).data
+            : await this.plugin.builders.data.download({ url: fileOrUrl, isBinary, label });
 
         return await this.handleTrajectory<P, S>(data, format, props, matrix, reprProvider, params);
     }

+ 1 - 0
src/viewer/types.ts

@@ -25,6 +25,7 @@ interface SharedParams {
 export interface LoadParams extends SharedParams {
     /** A File object or URL representing a structure file  */
     fileOrUrl: File | string
+    label?: string
 }
 
 export interface ParseParams extends SharedParams {