Browse Source

added setMolStarDebugMode

David Sehnal 5 years ago
parent
commit
ee34139094
3 changed files with 770 additions and 11 deletions
  1. 2 0
      README.md
  2. 757 9
      package-lock.json
  3. 11 2
      src/mol-util/debug.ts

+ 2 - 0
README.md

@@ -62,6 +62,8 @@ This project builds on experience from previous solutions:
 ### Build with debug mode enabled:
     DEBUG=molstar npm run watch
 
+Debug/production mode in browsers can be turned on/off during runtime by calling ``setMolStarDebugMode(true/false, true/false)`` from the dev console.
+
 ### Build for production:
     NODE_ENV=production npm run build
 

File diff suppressed because it is too large
+ 757 - 9
package-lock.json


+ 11 - 2
src/mol-util/debug.ts

@@ -8,12 +8,21 @@
  * on node `process.env.NODE_ENV` is available, in webpack build it is automatically set
  * by the DefinePlugin to the webpack `mode` value
  */
-const isProductionMode = process.env.NODE_ENV === 'production'
+let isProductionMode = process.env.NODE_ENV === 'production'
 
 /**
  * set to true to enable more comprehensive checks and assertions,
  * mostly used in `mol-gl`
  */
-const isDebugMode = process.env.DEBUG === '*' || process.env.DEBUG === 'molstar'
+let isDebugMode = process.env.DEBUG === '*' || process.env.DEBUG === 'molstar'
+
+if (typeof window !== 'undefined' && !(window as any).setMolStarDebugMode) {
+    try {
+        (window as any).setMolStarDebugMode = function setMolStarDebugMode(isDebug?: boolean, isProduction?: boolean) {
+            if (typeof isDebug !== 'undefined') isDebugMode = isDebug;
+            if (typeof isProduction !== 'undefined') isProductionMode = isProduction;
+        };
+    } catch { }
+}
 
 export { isProductionMode, isDebugMode }

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