chem-generic-ui 0.1.35 → 0.1.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +11 -0
- package/.eslintrc +23 -0
- package/.tool-versions +3 -0
- package/package.json +45 -34
- package/public/ds_details.json +57 -0
- package/public/ds_klass.json +102 -0
- package/public/ds_props.json +54 -0
- package/public/favicon.ico +0 -0
- package/public/images/not_available.svg +1 -0
- package/public/index.html +47 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/public/sg_details.json +2036 -0
- package/public/sg_klass.json +850 -0
- package/public/test/ds_props.json +54 -0
- package/{dist/data/systemUnits.json → public/units_system.json} +0 -0
- package/src/app.js +50 -0
- package/{dist → src}/asserts/main.css +0 -7
- package/{dist → src}/asserts/main.scss +1 -7
- package/src/components/admin/ElementManager.js +28 -0
- package/src/components/details/GenDSDetails.js +164 -0
- package/src/components/details/GenSgDetails.js +396 -0
- package/{dist → src}/components/dnd/DragDropItemTypes.js +1 -9
- package/src/components/dnd/GenericElDropTarget.js +160 -0
- package/src/components/dnd/GridDnD.js +42 -0
- package/src/components/dnd/PanelDnD.js +85 -0
- package/src/components/fields/ButtonConfirm.js +45 -0
- package/src/components/fields/ButtonTooltip.js +46 -0
- package/src/components/fields/FieldLabel.js +18 -0
- package/src/components/fields/GenDSMisType.js +20 -0
- package/src/components/fields/GenFormGroupCb.js +17 -0
- package/src/components/fields/GenProperties.js +56 -0
- package/src/components/fields/GenPropertiesFields.js +318 -0
- package/src/components/layers/GenPropertiesLayer.js +176 -0
- package/src/components/layers/LayerModal.js +52 -0
- package/src/components/layers/LayersLayout.js +68 -0
- package/src/components/models/Attachment.js +37 -0
- package/src/components/models/GenericSubField.js +10 -0
- package/src/components/table/DropLinkRenderer.js +35 -0
- package/src/components/table/DropRenderer.js +31 -0
- package/src/components/table/DropTextRenderer.js +25 -0
- package/src/components/table/GenericElTableDropTarget.js +131 -0
- package/src/components/table/GridBtn.js +41 -0
- package/src/components/table/GridEntry.js +75 -0
- package/src/components/table/SamOption.js +53 -0
- package/src/components/table/SelectRenderer.js +34 -0
- package/src/components/table/TableRecord.js +254 -0
- package/src/components/table/UConverterRenderer.js +24 -0
- package/src/components/tools/collate.js +65 -0
- package/src/components/tools/orten.js +171 -0
- package/src/components/tools/utils.js +414 -0
- package/src/data/SystemUnits.js +434 -0
- package/src/data/systemUnits.json +430 -0
- package/{dist → src}/index.css +0 -0
- package/src/index.html +1 -0
- package/src/index.js +45 -0
- package/{dist → src}/logo.svg +0 -0
- package/src/simulations/SimuDS.js +52 -0
- package/src/simulations/SimuSG.js +54 -0
- package/webpack.config.js +52 -0
- package/dist/app.js +0 -106
- package/dist/app.js.map +0 -1
- package/dist/components/admin/ElementManager.js +0 -55
- package/dist/components/admin/ElementManager.js.map +0 -1
- package/dist/components/details/GenDSDetails.js +0 -274
- package/dist/components/details/GenDSDetails.js.map +0 -1
- package/dist/components/details/GenSgDetails.js +0 -567
- package/dist/components/details/GenSgDetails.js.map +0 -1
- package/dist/components/dnd/DragDropItemTypes.js.map +0 -1
- package/dist/components/dnd/GenericElDropTarget.js +0 -275
- package/dist/components/dnd/GenericElDropTarget.js.map +0 -1
- package/dist/components/dnd/GridDnD.js +0 -78
- package/dist/components/dnd/GridDnD.js.map +0 -1
- package/dist/components/dnd/PanelDnD.js +0 -172
- package/dist/components/dnd/PanelDnD.js.map +0 -1
- package/dist/components/fields/ButtonConfirm.js +0 -77
- package/dist/components/fields/ButtonConfirm.js.map +0 -1
- package/dist/components/fields/ButtonTooltip.js +0 -89
- package/dist/components/fields/ButtonTooltip.js.map +0 -1
- package/dist/components/fields/FieldLabel.js +0 -39
- package/dist/components/fields/FieldLabel.js.map +0 -1
- package/dist/components/fields/GenDSMisType.js +0 -45
- package/dist/components/fields/GenDSMisType.js.map +0 -1
- package/dist/components/fields/GenFormGroupCb.js +0 -32
- package/dist/components/fields/GenFormGroupCb.js.map +0 -1
- package/dist/components/fields/GenProperties.js +0 -84
- package/dist/components/fields/GenProperties.js.map +0 -1
- package/dist/components/fields/GenPropertiesFields.js +0 -617
- package/dist/components/fields/GenPropertiesFields.js.map +0 -1
- package/dist/components/flow/FlowView.js +0 -89
- package/dist/components/flow/FlowView.js.map +0 -1
- package/dist/components/flow/FlowViewerModal.js +0 -82
- package/dist/components/flow/FlowViewerModal.js.map +0 -1
- package/dist/components/flow/LayerNode.js +0 -60
- package/dist/components/flow/LayerNode.js.map +0 -1
- package/dist/components/layers/GenPropertiesLayer.js +0 -281
- package/dist/components/layers/GenPropertiesLayer.js.map +0 -1
- package/dist/components/layers/LayerModal.js +0 -82
- package/dist/components/layers/LayerModal.js.map +0 -1
- package/dist/components/layers/LayersLayout.js +0 -89
- package/dist/components/layers/LayersLayout.js.map +0 -1
- package/dist/components/models/Attachment.js +0 -74
- package/dist/components/models/Attachment.js.map +0 -1
- package/dist/components/models/GenericSubField.js +0 -38
- package/dist/components/models/GenericSubField.js.map +0 -1
- package/dist/components/table/DropLinkRenderer.js +0 -56
- package/dist/components/table/DropLinkRenderer.js.map +0 -1
- package/dist/components/table/DropRenderer.js +0 -46
- package/dist/components/table/DropRenderer.js.map +0 -1
- package/dist/components/table/DropTextRenderer.js +0 -46
- package/dist/components/table/DropTextRenderer.js.map +0 -1
- package/dist/components/table/GenericElTableDropTarget.js +0 -253
- package/dist/components/table/GenericElTableDropTarget.js.map +0 -1
- package/dist/components/table/GridBtn.js +0 -103
- package/dist/components/table/GridBtn.js.map +0 -1
- package/dist/components/table/GridEntry.js +0 -164
- package/dist/components/table/GridEntry.js.map +0 -1
- package/dist/components/table/SamOption.js +0 -88
- package/dist/components/table/SamOption.js.map +0 -1
- package/dist/components/table/SelectRenderer.js +0 -53
- package/dist/components/table/SelectRenderer.js.map +0 -1
- package/dist/components/table/TableRecord.js +0 -455
- package/dist/components/table/TableRecord.js.map +0 -1
- package/dist/components/table/UConverterRenderer.js +0 -42
- package/dist/components/table/UConverterRenderer.js.map +0 -1
- package/dist/components/tools/collate.js +0 -104
- package/dist/components/tools/collate.js.map +0 -1
- package/dist/components/tools/orten.js +0 -295
- package/dist/components/tools/orten.js.map +0 -1
- package/dist/components/tools/utils.js +0 -594
- package/dist/components/tools/utils.js.map +0 -1
- package/dist/data/SystemUnits.js +0 -589
- package/dist/data/SystemUnits.js.map +0 -1
- package/dist/index.js +0 -40
- package/dist/index.js.map +0 -1
- package/dist/simulations/SimWF.js +0 -124
- package/dist/simulations/SimWF.js.map +0 -1
- package/dist/simulations/SimuDS.js +0 -119
- package/dist/simulations/SimuDS.js.map +0 -1
- package/dist/simulations/SimuSG.js +0 -124
- package/dist/simulations/SimuSG.js.map +0 -1
package/.babelrc
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"presets": ["@babel/preset-env", "@babel/preset-react","react-app"]
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
// "plugins": [
|
|
6
|
+
// "babel-plugin-transform-react-class-to-function",
|
|
7
|
+
// "@babel/plugin-proposal-object-rest-spread",
|
|
8
|
+
// "@babel/plugin-transform-classes",
|
|
9
|
+
// "@babel/plugin-proposal-class-properties",
|
|
10
|
+
// "@babel/plugin-transform-react-jsx"
|
|
11
|
+
// ]
|
package/.eslintrc
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": ["airbnb", "plugin:react/recommended", "plugin:react-hooks/recommended"],
|
|
3
|
+
"plugins": [
|
|
4
|
+
"react"
|
|
5
|
+
],
|
|
6
|
+
"parser": "@babel/eslint-parser",
|
|
7
|
+
"env": {
|
|
8
|
+
"browser": true,
|
|
9
|
+
"node": true
|
|
10
|
+
},
|
|
11
|
+
"rules": {
|
|
12
|
+
"no-console": ["off"],
|
|
13
|
+
"comma-dangle": [1,"only-multiline"],
|
|
14
|
+
// "react/destructuring-assignment": "off",
|
|
15
|
+
// "react/no-array-index-key": "off",
|
|
16
|
+
"react/forbid-prop-types": 0,
|
|
17
|
+
// "jsx-a11y/no-static-element-interactions": 0,
|
|
18
|
+
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
|
19
|
+
// "class-methods-use-this": 0,
|
|
20
|
+
// "import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
|
|
21
|
+
"prefer-destructuring": ["error", {"object": true, "array": false}]
|
|
22
|
+
}
|
|
23
|
+
}
|
package/.tool-versions
ADDED
package/package.json
CHANGED
|
@@ -1,71 +1,82 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chem-generic-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38",
|
|
4
4
|
"private": false,
|
|
5
|
+
"author": "",
|
|
5
6
|
"license": "MIT",
|
|
7
|
+
"main": "index.js",
|
|
6
8
|
"scripts": {
|
|
7
|
-
"start": "
|
|
8
|
-
"build": "
|
|
9
|
-
"
|
|
10
|
-
"compile": "rm -rf dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files",
|
|
11
|
-
"build-css": "node-sass src/asserts/ -o dist",
|
|
12
|
-
"sass": "sass src/asserts:src/asserts --watch --no-source-map",
|
|
13
|
-
"test": "react-scripts test --env=jsdom --testPathIgnorePatterns=src/__tests__/helper/* src/__tests__/e2e/*",
|
|
14
|
-
"eject": "react-scripts eject"
|
|
15
|
-
},
|
|
16
|
-
"peerDependencies": {
|
|
17
|
-
"react": "^17.0.2",
|
|
18
|
-
"react-dom": "^17.0.2"
|
|
9
|
+
"start": "webpack serve --config ./webpack.config.js --mode development",
|
|
10
|
+
"build": "webpack --config ./webpack.config.js --mode production",
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
19
12
|
},
|
|
13
|
+
"keywords": [],
|
|
20
14
|
"devDependencies": {
|
|
15
|
+
"@babel/cli": "^7.0.0",
|
|
16
|
+
"@babel/core": "^7.17.7",
|
|
17
|
+
"@babel/eslint-parser": "^7.15.0",
|
|
18
|
+
"@babel/node": "^7.16.8",
|
|
19
|
+
"@babel/preset-env": "^7.16.11",
|
|
20
|
+
"@babel/preset-react": "^7.16.7",
|
|
21
|
+
"babel-eslint": "^10.1.0",
|
|
22
|
+
"babel-loader": "^8.2.3",
|
|
23
|
+
"babel-preset-react-app": "^10.0.0",
|
|
24
|
+
"clean-webpack-plugin": "^3.0.0",
|
|
25
|
+
"dotenv-webpack": "^5.0.0",
|
|
26
|
+
"eslint": "^7.12.1",
|
|
21
27
|
"eslint-config-airbnb": "^16.1.0",
|
|
28
|
+
"eslint-config-prettier": "^6.15.0",
|
|
29
|
+
"eslint-loader": "^4.0.2",
|
|
22
30
|
"eslint-plugin-import": "^2.8.0",
|
|
23
31
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
32
|
+
"eslint-plugin-prettier": "^3.1.4",
|
|
24
33
|
"eslint-plugin-react": "^7.4.0",
|
|
25
34
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
26
|
-
"
|
|
35
|
+
"html-webpack-plugin": "^5.5.0",
|
|
36
|
+
"prettier": "^2.1.2",
|
|
37
|
+
"react-hot-loader": "^4.13.0",
|
|
27
38
|
"redux-logger": "^3.0.6"
|
|
28
39
|
},
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"README.md"
|
|
34
|
-
],
|
|
35
|
-
"browserslist": [
|
|
36
|
-
"defaults"
|
|
37
|
-
],
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"react": "^17.0.2",
|
|
42
|
+
"react-dom": "^17.0.2"
|
|
43
|
+
},
|
|
38
44
|
"dependencies": {
|
|
39
|
-
"@babel/cli": "^7.0.0",
|
|
40
|
-
"@babel/core": "^7.0.0",
|
|
41
|
-
"@babel/eslint-parser": "^7.15.0",
|
|
42
|
-
"@babel/preset-env": "7.3.1",
|
|
43
|
-
"@babel/preset-react": "7.0.0",
|
|
44
45
|
"@fortawesome/fontawesome-svg-core": "^1.3.0",
|
|
45
46
|
"@fortawesome/free-brands-svg-icons": "^6.0.0",
|
|
46
47
|
"@fortawesome/free-regular-svg-icons": "^6.0.0",
|
|
47
48
|
"@fortawesome/free-solid-svg-icons": "^6.0.0",
|
|
48
49
|
"@fortawesome/react-fontawesome": "^0.1.17",
|
|
49
|
-
"
|
|
50
|
+
"babel-plugin-transform-react-class-to-function": "^1.2.2",
|
|
51
|
+
"bootstrap": "5.1.3",
|
|
52
|
+
"css-loader": "^6.7.1",
|
|
53
|
+
"file-loader": "^6.2.0",
|
|
54
|
+
"html-loader": "^3.1.0",
|
|
55
|
+
"html-webpack-plugin": "^5.5.0",
|
|
56
|
+
"image-webpack-loader": "^8.1.0",
|
|
50
57
|
"lodash": "^4.17.21",
|
|
51
58
|
"mini-css-extract-plugin": "0.11.3",
|
|
59
|
+
"node-sass": "^7.0.1",
|
|
52
60
|
"numeral": "^1.5.3",
|
|
61
|
+
"path": "^0.12.7",
|
|
53
62
|
"prop-types": "^15.8.1",
|
|
54
63
|
"react": "^17.0.2",
|
|
55
|
-
"react-bootstrap": "
|
|
64
|
+
"react-bootstrap": "^2.2.1",
|
|
56
65
|
"react-dnd": "^2.6.0",
|
|
57
66
|
"react-dnd-html5-backend": "^2.6.0",
|
|
58
67
|
"react-dom": "^17.0.2",
|
|
59
|
-
"react-draggable": "^4.4.3",
|
|
60
68
|
"react-dropzone": "^3.6.0",
|
|
61
|
-
"react-flow-renderer": "^9.6.4",
|
|
62
69
|
"react-redux": "^7.2.4",
|
|
63
70
|
"react-select": "5.2.2",
|
|
64
71
|
"redux": "^4.1.0",
|
|
65
72
|
"redux-immutable": "^4.0.0",
|
|
66
73
|
"redux-thunk": "^2.0.0",
|
|
67
74
|
"sass": "^1.49.9",
|
|
68
|
-
"sass-loader": "
|
|
69
|
-
"
|
|
75
|
+
"sass-loader": "^12.6.0",
|
|
76
|
+
"style-loader": "^3.3.1",
|
|
77
|
+
"uuid": "^8.3.2",
|
|
78
|
+
"webpack": "^5.70.0",
|
|
79
|
+
"webpack-cli": "^4.9.2",
|
|
80
|
+
"webpack-dev-server": "^4.7.4"
|
|
70
81
|
}
|
|
71
82
|
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataset_klass_id": 1,
|
|
3
|
+
"element_type": "Container",
|
|
4
|
+
"element_id": "2fc641d0-a46f-11ec-93d3-33042392e5c2",
|
|
5
|
+
"properties": {
|
|
6
|
+
"eln": {
|
|
7
|
+
"version": "0.9.1",
|
|
8
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
9
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
10
|
+
},
|
|
11
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
12
|
+
"klass": "DatasetKlass",
|
|
13
|
+
"layers": {
|
|
14
|
+
"params": {
|
|
15
|
+
"key": "params",
|
|
16
|
+
"cols": 3,
|
|
17
|
+
"label": "Parameter",
|
|
18
|
+
"fields": [
|
|
19
|
+
{
|
|
20
|
+
"type": "system-defined",
|
|
21
|
+
"field": "temp",
|
|
22
|
+
"label": "Temperature",
|
|
23
|
+
"default": "",
|
|
24
|
+
"position": 1,
|
|
25
|
+
"description": "measurement temperature",
|
|
26
|
+
"option_layers": "temperature"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"position": 100,
|
|
30
|
+
"condition": ""
|
|
31
|
+
},
|
|
32
|
+
"system": {
|
|
33
|
+
"key": "system",
|
|
34
|
+
"cols": 3,
|
|
35
|
+
"label": "Settings",
|
|
36
|
+
"fields": [
|
|
37
|
+
{
|
|
38
|
+
"type": "integer",
|
|
39
|
+
"field": "scan",
|
|
40
|
+
"label": "Number of Scans",
|
|
41
|
+
"default": "",
|
|
42
|
+
"position": 1
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"position": 100,
|
|
46
|
+
"condition": ""
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"select_options": {}
|
|
50
|
+
},
|
|
51
|
+
"klass_ols": "CHMO:0000593",
|
|
52
|
+
"klass_label": "1H nuclear magnetic resonance spectroscopy (1H NMR)",
|
|
53
|
+
"changed": false,
|
|
54
|
+
"id": "2fd3fd70-a46f-11ec-93d3-33042392e5c2",
|
|
55
|
+
"is_new": true,
|
|
56
|
+
"_checksum": "20a39d76e0299642ac75686f5c2de76f326271d713045365d2c9c7343020b698"
|
|
57
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": 1,
|
|
3
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
4
|
+
"ols_term_id": "CHMO:0000593",
|
|
5
|
+
"label": "1H nuclear magnetic resonance spectroscopy (1H NMR)",
|
|
6
|
+
"desc": "1H nuclear magnetic resonance spectroscopy (1H NMR)",
|
|
7
|
+
"properties_template": {
|
|
8
|
+
"eln": {
|
|
9
|
+
"version": "0.9.1",
|
|
10
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
11
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
12
|
+
},
|
|
13
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
14
|
+
"klass": "DatasetKlass",
|
|
15
|
+
"layers": {
|
|
16
|
+
"params": {
|
|
17
|
+
"key": "params",
|
|
18
|
+
"cols": 3,
|
|
19
|
+
"label": "Parameter",
|
|
20
|
+
"fields": [
|
|
21
|
+
{
|
|
22
|
+
"type": "system-defined",
|
|
23
|
+
"field": "temp",
|
|
24
|
+
"label": "Temperature",
|
|
25
|
+
"default": "",
|
|
26
|
+
"position": 1,
|
|
27
|
+
"description": "measurement temperature",
|
|
28
|
+
"option_layers": "temperature"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"position": 100,
|
|
32
|
+
"condition": ""
|
|
33
|
+
},
|
|
34
|
+
"system": {
|
|
35
|
+
"key": "system",
|
|
36
|
+
"cols": 3,
|
|
37
|
+
"label": "Settings",
|
|
38
|
+
"fields": [
|
|
39
|
+
{
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"field": "scan",
|
|
42
|
+
"label": "Number of Scans",
|
|
43
|
+
"default": "",
|
|
44
|
+
"position": 1
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"position": 100,
|
|
48
|
+
"condition": ""
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"select_options": {}
|
|
52
|
+
},
|
|
53
|
+
"properties_release": {
|
|
54
|
+
"eln": {
|
|
55
|
+
"version": "0.9.1",
|
|
56
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
57
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
58
|
+
},
|
|
59
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
60
|
+
"klass": "DatasetKlass",
|
|
61
|
+
"layers": {
|
|
62
|
+
"params": {
|
|
63
|
+
"key": "params",
|
|
64
|
+
"cols": 3,
|
|
65
|
+
"label": "Parameter",
|
|
66
|
+
"fields": [
|
|
67
|
+
{
|
|
68
|
+
"type": "system-defined",
|
|
69
|
+
"field": "temp",
|
|
70
|
+
"label": "Temperature",
|
|
71
|
+
"default": "",
|
|
72
|
+
"position": 1,
|
|
73
|
+
"description": "measurement temperature",
|
|
74
|
+
"option_layers": "temperature"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"position": 100,
|
|
78
|
+
"condition": ""
|
|
79
|
+
},
|
|
80
|
+
"system": {
|
|
81
|
+
"key": "system",
|
|
82
|
+
"cols": 3,
|
|
83
|
+
"label": "Settings",
|
|
84
|
+
"fields": [
|
|
85
|
+
{
|
|
86
|
+
"type": "integer",
|
|
87
|
+
"field": "scan",
|
|
88
|
+
"label": "Number of Scans",
|
|
89
|
+
"default": "",
|
|
90
|
+
"position": 1
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"position": 100,
|
|
94
|
+
"condition": ""
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"select_options": {}
|
|
98
|
+
},
|
|
99
|
+
"is_active": true,
|
|
100
|
+
"place": 10,
|
|
101
|
+
"released_at": "02.08.2021, 19:26"
|
|
102
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"eln": {
|
|
3
|
+
"version": "0.9.1",
|
|
4
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
5
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
6
|
+
},
|
|
7
|
+
"uuid": "27f2d3b7-57bd-4eea-bb49-bd718d68077f",
|
|
8
|
+
"klass": "Dataset",
|
|
9
|
+
"layers": {
|
|
10
|
+
"params": {
|
|
11
|
+
"wf": false,
|
|
12
|
+
"key": "params",
|
|
13
|
+
"cols": 3,
|
|
14
|
+
"label": "Parameter",
|
|
15
|
+
"layer": "params",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"type": "system-defined",
|
|
19
|
+
"field": "temp",
|
|
20
|
+
"label": "Temperature",
|
|
21
|
+
"value": "18",
|
|
22
|
+
"default": "",
|
|
23
|
+
"position": 1,
|
|
24
|
+
"description": "measurement temperature",
|
|
25
|
+
"value_system": "C",
|
|
26
|
+
"option_layers": "temperature"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"position": 100,
|
|
30
|
+
"condition": ""
|
|
31
|
+
},
|
|
32
|
+
"system": {
|
|
33
|
+
"wf": false,
|
|
34
|
+
"key": "system",
|
|
35
|
+
"cols": 3,
|
|
36
|
+
"label": "Settings",
|
|
37
|
+
"layer": "system",
|
|
38
|
+
"fields": [
|
|
39
|
+
{
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"field": "scan",
|
|
42
|
+
"label": "Number of Scans",
|
|
43
|
+
"value": 2,
|
|
44
|
+
"default": "",
|
|
45
|
+
"position": 1
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"position": 100,
|
|
49
|
+
"condition": ""
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"klass_uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
53
|
+
"select_options": {}
|
|
54
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="180" height="180" xmlns="http://www.w3.org/2000/svg"><linearGradient id="lg"><stop offset="0%" stop-color="#ffffff"/><stop offset="100%" stop-color="#ffffff"/></linearGradient><rect x="2" y="2" width="176" height="176" style="fill:url(#lg);stroke:#ffffff;stroke-width:2"/><text x="50%" y="40%" font-size="18" text-anchor="middle" alignment-baseline="middle" font-family="monospace, sans-serif" fill="#770000">Preview</text><text x="50%" y="60%" font-size="18" text-anchor="middle" alignment-baseline="middle" font-family="monospace, sans-serif" fill="#770000">not available</text></svg>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<meta name="theme-color" content="#000000" />
|
|
8
|
+
<meta
|
|
9
|
+
name="description"
|
|
10
|
+
content="Web site created using create-react-app"
|
|
11
|
+
/>
|
|
12
|
+
<!-- Latest compiled and minified CSS -->
|
|
13
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
14
|
+
<!-- Optional theme -->
|
|
15
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
|
|
16
|
+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
17
|
+
<!--
|
|
18
|
+
manifest.json provides metadata used when your web app is installed on a
|
|
19
|
+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
|
20
|
+
-->
|
|
21
|
+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
22
|
+
<!--
|
|
23
|
+
Notice the use of %PUBLIC_URL% in the tags above.
|
|
24
|
+
It will be replaced with the URL of the `public` folder during the build.
|
|
25
|
+
Only files inside the `public` folder can be referenced from the HTML.
|
|
26
|
+
|
|
27
|
+
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
|
28
|
+
work correctly both with client-side routing and a non-root public URL.
|
|
29
|
+
Learn how to configure a non-root public URL by running `npm run build`.
|
|
30
|
+
-->
|
|
31
|
+
<title>React App</title>
|
|
32
|
+
</head>
|
|
33
|
+
<body>
|
|
34
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
35
|
+
<div id="root"></div>
|
|
36
|
+
<!--
|
|
37
|
+
This HTML file is a template.
|
|
38
|
+
If you open it directly in the browser, you will see an empty page.
|
|
39
|
+
|
|
40
|
+
You can add webfonts, meta tags, or analytics to this file.
|
|
41
|
+
The build step will place the bundled scripts into the <body> tag.
|
|
42
|
+
|
|
43
|
+
To begin the development, run `npm start` or `yarn start`.
|
|
44
|
+
To create a production bundle, use `npm run build` or `yarn build`.
|
|
45
|
+
-->
|
|
46
|
+
</body>
|
|
47
|
+
</html>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"short_name": "React App",
|
|
3
|
+
"name": "Create React App Sample",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "favicon.ico",
|
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
+
"type": "image/x-icon"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "logo192.png",
|
|
12
|
+
"type": "image/png",
|
|
13
|
+
"sizes": "192x192"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "logo512.png",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"sizes": "512x512"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"start_url": ".",
|
|
22
|
+
"display": "standalone",
|
|
23
|
+
"theme_color": "#000000",
|
|
24
|
+
"background_color": "#ffffff"
|
|
25
|
+
}
|