Browse Source

wip, started mol-gl

arose 7 years ago
parent
commit
3c5f5d3a6b
5 changed files with 46 additions and 2 deletions
  1. 7 2
      package.json
  2. 11 0
      src/apps/render-test/index.tsx
  3. 15 0
      src/apps/render-test/ui.tsx
  4. 12 0
      src/mol-gl/context.ts
  5. 1 0
      tsconfig.json

+ 7 - 2
package.json

@@ -49,9 +49,11 @@
     "@types/jest": "^22.1.3",
     "@types/node": "^9.4.6",
     "@types/node-fetch": "^1.6.7",
-    "argparse": "^1.0.10",
+    "@types/react": "^16.0.4",
+    "@types/react-dom": "^16.0.4",
     "benchmark": "^2.1.4",
     "jest": "^22.4.2",
+    "regl": "git+https://github.com/regl-project/regl.git#45c6ec570232420fca21567499c9c5a2a054432e",
     "rollup": "^0.56.2",
     "rollup-plugin-buble": "^0.19.2",
     "rollup-plugin-commonjs": "^8.3.0",
@@ -65,7 +67,10 @@
     "util.promisify": "^1.0.0"
   },
   "dependencies": {
+    "argparse": "^1.0.10",
     "express": "^4.16.2",
-    "node-fetch": "^2.0.0"
+    "node-fetch": "^2.0.0",
+    "react": "^16.2.0",
+    "react-dom": "^16.2.0"
   }
 }

+ 11 - 0
src/apps/render-test/index.tsx

@@ -0,0 +1,11 @@
+/**
+ * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
+
+import UI from './ui'
+import * as React from 'react'
+import * as ReactDOM from 'react-dom'
+
+ReactDOM.render(<UI/>, document.getElementById('app'));

+ 15 - 0
src/apps/render-test/ui.tsx

@@ -0,0 +1,15 @@
+/**
+ * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
+
+import * as React from 'react'
+
+export default class Root extends React.Component {
+    render() {
+        return <div style={{ position: 'absolute', top: 0, right: 0, left: 0, bottom: 0, overflow: 'hidden' }}>
+            
+        </div>
+    }
+}

+ 12 - 0
src/mol-gl/context.ts

@@ -0,0 +1,12 @@
+/**
+ * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
+ *
+ * @author Alexander Rose <alexander.rose@weirdbyte.de>
+ */
+
+import REGL = require('regl');
+import { InitializationOptions } from 'regl'
+
+export function create(params: InitializationOptions) {
+    return REGL(params)
+}

+ 1 - 0
tsconfig.json

@@ -9,6 +9,7 @@
         "strictNullChecks": true,
         "strictFunctionTypes": true,
         //"downlevelIteration": true,
+        "jsx": "react",
         "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
         "outDir": "build/node_modules",
         "baseUrl": "src",