@operato/scene-visualizer 1.2.46 → 1.2.56
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/CHANGELOG.md +18 -0
- package/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -23
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -23
- package/logs/application-2023-09-04-13.log +6 -0
- package/logs/connections-2023-09-04-13.log +38 -0
- package/package.json +3 -3
- package/src/component.d.ts +0 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/camera copy.d.ts +0 -20
- package/dist/camera copy.js +0 -103
- package/dist/camera copy.js.map +0 -1
- package/dist/point-light.d.ts +0 -14
- package/dist/point-light.js +0 -77
- package/dist/point-light.js.map +0 -1
- package/dist/templates/point-light.d.ts +0 -22
- package/dist/templates/point-light.js +0 -23
- package/dist/templates/point-light.js.map +0 -1
- package/dist/templates/wall copy.d.ts +0 -19
- package/dist/templates/wall copy.js +0 -20
- package/dist/templates/wall copy.js.map +0 -1
- package/dist/three-modeller.d.ts +0 -0
- package/dist/three-modeller.js +0 -2
- package/dist/three-modeller.js.map +0 -1
- package/logs/application-2023-05-23-21.log +0 -6
- package/logs/application-2023-05-24-21.log +0 -6
- package/logs/application-2023-05-25-00.log +0 -20
- package/logs/application-2023-05-25-15.log +0 -6
- package/logs/application-2023-05-25-16.log +0 -5
- package/logs/connections-2023-05-20-07.log +0 -41
- package/logs/connections-2023-05-23-21.log +0 -41
- package/logs/connections-2023-05-24-21.log +0 -41
- package/logs/connections-2023-05-25-00.log +0 -123
- package/logs/connections-2023-05-25-15.log +0 -41
- package/schema.gql +0 -2668
package/dist/camera copy.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
2
|
-
import * as THREE from 'three';
|
|
3
|
-
import { RealObject } from './threed/real-object';
|
|
4
|
-
export declare class Camera3D extends RealObject<THREE.Mesh> {
|
|
5
|
-
camera?: THREE.PerspectiveCamera;
|
|
6
|
-
helper?: THREE.CameraHelper;
|
|
7
|
-
protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry, THREE.Material | THREE.Material[]>;
|
|
8
|
-
updateCamera(): void;
|
|
9
|
-
build(): void;
|
|
10
|
-
}
|
|
11
|
-
declare const Camera_base: typeof Shape;
|
|
12
|
-
export declare class Camera extends Camera_base {
|
|
13
|
-
static _image: HTMLImageElement;
|
|
14
|
-
is3dish(): boolean;
|
|
15
|
-
static get image(): HTMLImageElement;
|
|
16
|
-
render(context: CanvasRenderingContext2D): void;
|
|
17
|
-
buildRealObject(): RealObject | undefined;
|
|
18
|
-
get nature(): ComponentNature;
|
|
19
|
-
}
|
|
20
|
-
export {};
|
package/dist/camera copy.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright © HatioLab Inc. All rights reserved.
|
|
3
|
-
*/
|
|
4
|
-
import { Component, RectPath, Shape } from '@hatiolab/things-scene';
|
|
5
|
-
import * as THREE from 'three';
|
|
6
|
-
import { RealObject } from './threed/real-object';
|
|
7
|
-
const DEFAULT = {
|
|
8
|
-
far: 100000,
|
|
9
|
-
fov: 80,
|
|
10
|
-
near: 1,
|
|
11
|
-
zoom: 1
|
|
12
|
-
};
|
|
13
|
-
const NATURE = {
|
|
14
|
-
mutable: false,
|
|
15
|
-
resizable: true,
|
|
16
|
-
rotatable: true,
|
|
17
|
-
properties: [
|
|
18
|
-
{
|
|
19
|
-
type: 'number',
|
|
20
|
-
label: 'near',
|
|
21
|
-
name: 'near'
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
type: 'number',
|
|
25
|
-
label: 'far',
|
|
26
|
-
name: 'far'
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
type: 'number',
|
|
30
|
-
label: 'fov',
|
|
31
|
-
name: 'fov'
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
type: 'number',
|
|
35
|
-
label: 'zoom',
|
|
36
|
-
name: 'zoom'
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
type: 'checkbox',
|
|
40
|
-
label: 'show-helper',
|
|
41
|
-
name: 'showHelper'
|
|
42
|
-
}
|
|
43
|
-
],
|
|
44
|
-
help: 'scene/component/camera'
|
|
45
|
-
};
|
|
46
|
-
export class Camera3D extends RealObject {
|
|
47
|
-
getObject3dInstance() {
|
|
48
|
-
return new THREE.Mesh();
|
|
49
|
-
}
|
|
50
|
-
updateCamera() {
|
|
51
|
-
var { near = DEFAULT.near, far = DEFAULT.far, fov = DEFAULT.fov, zoom = DEFAULT.zoom, showHelper } = this.component.state;
|
|
52
|
-
this.camera.far = far;
|
|
53
|
-
this.camera.fov = fov;
|
|
54
|
-
this.camera.near = near;
|
|
55
|
-
this.camera.zoom = zoom;
|
|
56
|
-
if (showHelper) {
|
|
57
|
-
if (!this.helper) {
|
|
58
|
-
this.helper = new THREE.CameraHelper(this.camera);
|
|
59
|
-
this.object3d.add(this.helper);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
else if (this.helper) {
|
|
63
|
-
this.object3d.remove(this.helper);
|
|
64
|
-
delete this.helper;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
build() {
|
|
68
|
-
super.build();
|
|
69
|
-
var { width = 0, height = 0, depth = 0, fillStyle = 'lightgray' } = this.component.state;
|
|
70
|
-
this.object3d.geometry = new THREE.BoxGeometry(width, depth, height);
|
|
71
|
-
this.object3d.material = new THREE.MeshStandardMaterial({ color: fillStyle, side: THREE.FrontSide });
|
|
72
|
-
this.camera = new THREE.PerspectiveCamera();
|
|
73
|
-
this.camera.position.set(0, 0, 0);
|
|
74
|
-
this.object3d.add(this.camera);
|
|
75
|
-
this.object3d.lookAt(0, 0, 0);
|
|
76
|
-
this.updateCamera();
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
export class Camera extends RectPath(Shape) {
|
|
80
|
-
is3dish() {
|
|
81
|
-
return true;
|
|
82
|
-
}
|
|
83
|
-
static get image() {
|
|
84
|
-
if (!Camera._image) {
|
|
85
|
-
Camera._image = new Image();
|
|
86
|
-
Camera._image.src = new URL('../icons/camera-big.png', import.meta.url).href;
|
|
87
|
-
}
|
|
88
|
-
return Camera._image;
|
|
89
|
-
}
|
|
90
|
-
render(context) {
|
|
91
|
-
var { left, top, width, height } = this.bounds;
|
|
92
|
-
context.beginPath();
|
|
93
|
-
this.drawImage(context, Camera.image, left, top, width, height);
|
|
94
|
-
}
|
|
95
|
-
buildRealObject() {
|
|
96
|
-
return new Camera3D(this);
|
|
97
|
-
}
|
|
98
|
-
get nature() {
|
|
99
|
-
return NATURE;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
Component.register('camera', Camera);
|
|
103
|
-
//# sourceMappingURL=camera%20copy.js.map
|
package/dist/camera copy.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"camera copy.js","sourceRoot":"","sources":["../src/camera copy.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\nimport { Component, ComponentNature, RectPath, Shape } from '@hatiolab/things-scene'\nimport * as THREE from 'three'\nimport { RealObject } from './threed/real-object'\n\nconst DEFAULT = {\n far: 100000,\n fov: 80,\n near: 1,\n zoom: 1\n}\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'near',\n name: 'near'\n },\n {\n type: 'number',\n label: 'far',\n name: 'far'\n },\n {\n type: 'number',\n label: 'fov',\n name: 'fov'\n },\n {\n type: 'number',\n label: 'zoom',\n name: 'zoom'\n },\n {\n type: 'checkbox',\n label: 'show-helper',\n name: 'showHelper'\n }\n ],\n help: 'scene/component/camera'\n}\n\nexport class Camera3D extends RealObject<THREE.Mesh> {\n camera?: THREE.PerspectiveCamera\n helper?: THREE.CameraHelper\n\n protected getObject3dInstance() {\n return new THREE.Mesh()\n }\n\n updateCamera() {\n var {\n near = DEFAULT.near,\n far = DEFAULT.far,\n fov = DEFAULT.fov,\n zoom = DEFAULT.zoom,\n showHelper\n } = this.component.state\n\n this.camera!.far = far\n this.camera!.fov = fov\n this.camera!.near = near\n this.camera!.zoom = zoom\n\n if (showHelper) {\n if (!this.helper) {\n this.helper = new THREE.CameraHelper(this.camera!)\n this.object3d.add(this.helper)\n }\n } else if (this.helper) {\n this.object3d.remove(this.helper)\n delete this.helper\n }\n }\n\n build() {\n super.build()\n\n var { width = 0, height = 0, depth = 0, fillStyle = 'lightgray' } = this.component.state\n\n this.object3d.geometry = new THREE.BoxGeometry(width, depth, height)\n this.object3d.material = new THREE.MeshStandardMaterial({ color: fillStyle, side: THREE.FrontSide })\n\n this.camera = new THREE.PerspectiveCamera()\n this.camera.position.set(0, 0, 0)\n\n this.object3d.add(this.camera)\n this.object3d.lookAt(0, 0, 0)\n\n this.updateCamera()\n }\n}\n\nexport class Camera extends RectPath(Shape) {\n static _image: HTMLImageElement\n\n is3dish() {\n return true\n }\n\n static get image() {\n if (!Camera._image) {\n Camera._image = new Image()\n Camera._image.src = new URL('../icons/camera-big.png', import.meta.url).href\n }\n\n return Camera._image\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, Camera.image, left, top, width, height)\n }\n\n buildRealObject(): RealObject | undefined {\n return new Camera3D(this)\n }\n\n get nature(): ComponentNature {\n return NATURE\n }\n}\n\nComponent.register('camera', Camera)\n"]}
|
package/dist/point-light.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Anchor, ComponentNature, Ellipse } from '@hatiolab/things-scene';
|
|
2
|
-
import * as THREE from 'three';
|
|
3
|
-
import { RealObject } from './threed/real-object';
|
|
4
|
-
export declare class PointLightObject extends RealObject<THREE.PointLight> {
|
|
5
|
-
updatePointLight(): void;
|
|
6
|
-
protected getObject3dInstance(): THREE.PointLight;
|
|
7
|
-
update(): void;
|
|
8
|
-
}
|
|
9
|
-
export declare class PointLight extends Ellipse {
|
|
10
|
-
is3dish(): boolean;
|
|
11
|
-
buildRealObject(): RealObject | undefined;
|
|
12
|
-
get anchors(): Array<Anchor>;
|
|
13
|
-
get nature(): ComponentNature;
|
|
14
|
-
}
|
package/dist/point-light.js
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright © HatioLab Inc. All rights reserved.
|
|
3
|
-
*/
|
|
4
|
-
import { Component, Ellipse } from '@hatiolab/things-scene';
|
|
5
|
-
import * as THREE from 'three';
|
|
6
|
-
import { RealObject } from './threed/real-object';
|
|
7
|
-
const DEFAULT = {
|
|
8
|
-
color: '0xffffff',
|
|
9
|
-
intensity: 100000,
|
|
10
|
-
distance: 0,
|
|
11
|
-
decay: 1,
|
|
12
|
-
castShadow: false
|
|
13
|
-
};
|
|
14
|
-
const NATURE = {
|
|
15
|
-
mutable: false,
|
|
16
|
-
resizable: true,
|
|
17
|
-
rotatable: true,
|
|
18
|
-
properties: [
|
|
19
|
-
{
|
|
20
|
-
type: 'number',
|
|
21
|
-
label: 'intensity',
|
|
22
|
-
name: 'intensity'
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
type: 'number',
|
|
26
|
-
label: 'distance',
|
|
27
|
-
name: 'distance'
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
type: 'number',
|
|
31
|
-
label: 'decay',
|
|
32
|
-
name: 'decay'
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
type: 'checkbox',
|
|
36
|
-
label: 'cast-shadow',
|
|
37
|
-
name: 'castShadow'
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
help: 'scene/component/point-light'
|
|
41
|
-
};
|
|
42
|
-
export class PointLightObject extends RealObject {
|
|
43
|
-
updatePointLight() {
|
|
44
|
-
var { distance = DEFAULT.distance, intensity = DEFAULT.intensity, decay = DEFAULT.decay, fillStyle: color = DEFAULT.color, castShadow } = this.component.state;
|
|
45
|
-
this.object3d.color = new THREE.Color(color);
|
|
46
|
-
this.object3d.distance = distance;
|
|
47
|
-
this.object3d.intensity = intensity;
|
|
48
|
-
this.object3d.decay = decay;
|
|
49
|
-
this.object3d.castShadow = !!castShadow;
|
|
50
|
-
}
|
|
51
|
-
getObject3dInstance() {
|
|
52
|
-
return new THREE.PointLight();
|
|
53
|
-
}
|
|
54
|
-
update() {
|
|
55
|
-
this.clear();
|
|
56
|
-
this.build();
|
|
57
|
-
this.updateDimension();
|
|
58
|
-
this.updateHidden();
|
|
59
|
-
this.updatePointLight();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export class PointLight extends Ellipse {
|
|
63
|
-
is3dish() {
|
|
64
|
-
return true;
|
|
65
|
-
}
|
|
66
|
-
buildRealObject() {
|
|
67
|
-
return new PointLightObject(this);
|
|
68
|
-
}
|
|
69
|
-
get anchors() {
|
|
70
|
-
return [];
|
|
71
|
-
}
|
|
72
|
-
get nature() {
|
|
73
|
-
return NATURE;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
Component.register('point-light', PointLight);
|
|
77
|
-
//# sourceMappingURL=point-light.js.map
|
package/dist/point-light.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"point-light.js","sourceRoot":"","sources":["../src/point-light.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAU,SAAS,EAAmB,OAAO,EAAE,MAAM,wBAAwB,CAAA;AACpF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,MAAM,OAAO,GAAG;IACd,KAAK,EAAE,UAAU;IACjB,SAAS,EAAE,MAAM;IACjB,QAAQ,EAAE,CAAC;IACX,KAAK,EAAE,CAAC;IACR,UAAU,EAAE,KAAK;CAClB,CAAA;AAED,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,WAAW;YAClB,IAAI,EAAE,WAAW;SAClB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,UAAU;YACjB,IAAI,EAAE,UAAU;SACjB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,OAAO;SACd;QACD;YACE,IAAI,EAAE,UAAU;YAChB,KAAK,EAAE,aAAa;YACpB,IAAI,EAAE,YAAY;SACnB;KACF;IACD,IAAI,EAAE,6BAA6B;CACpC,CAAA;AAED,MAAM,OAAO,gBAAiB,SAAQ,UAA4B;IAChE,gBAAgB;QACd,IAAI,EACF,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAC3B,SAAS,GAAG,OAAO,CAAC,SAAS,EAC7B,KAAK,GAAG,OAAO,CAAC,KAAK,EACrB,SAAS,EAAE,KAAK,GAAG,OAAO,CAAC,KAAK,EAChC,UAAU,EACX,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAA;QAExB,IAAI,CAAC,QAAS,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;QAC7C,IAAI,CAAC,QAAS,CAAC,QAAQ,GAAG,QAAQ,CAAA;QAClC,IAAI,CAAC,QAAS,CAAC,SAAS,GAAG,SAAS,CAAA;QACpC,IAAI,CAAC,QAAS,CAAC,KAAK,GAAG,KAAK,CAAA;QAC5B,IAAI,CAAC,QAAS,CAAC,UAAU,GAAG,CAAC,CAAC,UAAU,CAAA;IAC1C,CAAC;IAES,mBAAmB;QAC3B,OAAO,IAAI,KAAK,CAAC,UAAU,EAAsB,CAAA;IACnD,CAAC;IAED,MAAM;QACJ,IAAI,CAAC,KAAK,EAAE,CAAA;QACZ,IAAI,CAAC,KAAK,EAAE,CAAA;QAEZ,IAAI,CAAC,eAAe,EAAE,CAAA;QACtB,IAAI,CAAC,YAAY,EAAE,CAAA;QAEnB,IAAI,CAAC,gBAAgB,EAAE,CAAA;IACzB,CAAC;CACF;AAED,MAAM,OAAO,UAAW,SAAQ,OAAO;IACrC,OAAO;QACL,OAAO,IAAI,CAAA;IACb,CAAC;IAED,eAAe;QACb,OAAO,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAA;IACnC,CAAC;IAED,IAAI,OAAO;QACT,OAAO,EAAE,CAAA;IACX,CAAC;IAED,IAAI,MAAM;QACR,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,aAAa,EAAE,UAAU,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\nimport { Anchor, Component, ComponentNature, Ellipse } from '@hatiolab/things-scene'\nimport * as THREE from 'three'\nimport { RealObject } from './threed/real-object'\n\nconst DEFAULT = {\n color: '0xffffff', // white color\n intensity: 100000,\n distance: 0, // unlimited\n decay: 1, //\n castShadow: false\n}\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'intensity',\n name: 'intensity'\n },\n {\n type: 'number',\n label: 'distance',\n name: 'distance'\n },\n {\n type: 'number',\n label: 'decay',\n name: 'decay'\n },\n {\n type: 'checkbox',\n label: 'cast-shadow',\n name: 'castShadow'\n }\n ],\n help: 'scene/component/point-light'\n}\n\nexport class PointLightObject extends RealObject<THREE.PointLight> {\n updatePointLight() {\n var {\n distance = DEFAULT.distance,\n intensity = DEFAULT.intensity,\n decay = DEFAULT.decay,\n fillStyle: color = DEFAULT.color,\n castShadow\n } = this.component.state\n\n this.object3d!.color = new THREE.Color(color)\n this.object3d!.distance = distance\n this.object3d!.intensity = intensity\n this.object3d!.decay = decay\n this.object3d!.castShadow = !!castShadow\n }\n\n protected getObject3dInstance(): THREE.PointLight {\n return new THREE.PointLight() as THREE.PointLight\n }\n\n update() {\n this.clear()\n this.build()\n\n this.updateDimension()\n this.updateHidden()\n\n this.updatePointLight()\n }\n}\n\nexport class PointLight extends Ellipse {\n is3dish() {\n return true\n }\n\n buildRealObject(): RealObject | undefined {\n return new PointLightObject(this)\n }\n\n get anchors(): Array<Anchor> {\n return []\n }\n\n get nature(): ComponentNature {\n return NATURE\n }\n}\n\nComponent.register('point-light', PointLight)\n"]}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
type: string;
|
|
3
|
-
description: string;
|
|
4
|
-
group: string;
|
|
5
|
-
icon: string;
|
|
6
|
-
model: {
|
|
7
|
-
type: string;
|
|
8
|
-
rx: number;
|
|
9
|
-
ry: number;
|
|
10
|
-
cx: number;
|
|
11
|
-
cy: number;
|
|
12
|
-
zPos: number;
|
|
13
|
-
fillStyle: string;
|
|
14
|
-
strokeStyle: string;
|
|
15
|
-
alpha: number;
|
|
16
|
-
hidden: boolean;
|
|
17
|
-
lineWidth: number;
|
|
18
|
-
lineDash: string;
|
|
19
|
-
lineCap: string;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
const icon = new URL('../../icons/point-light.png', import.meta.url).href;
|
|
2
|
-
export default {
|
|
3
|
-
type: 'point-light',
|
|
4
|
-
description: 'Point Light',
|
|
5
|
-
group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,
|
|
6
|
-
icon,
|
|
7
|
-
model: {
|
|
8
|
-
type: 'point-light',
|
|
9
|
-
rx: 50,
|
|
10
|
-
ry: 50,
|
|
11
|
-
cx: 150,
|
|
12
|
-
cy: 150,
|
|
13
|
-
zPos: 100,
|
|
14
|
-
fillStyle: '#fff',
|
|
15
|
-
strokeStyle: '#000',
|
|
16
|
-
alpha: 1,
|
|
17
|
-
hidden: false,
|
|
18
|
-
lineWidth: 1,
|
|
19
|
-
lineDash: 'solid',
|
|
20
|
-
lineCap: 'butt'
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
//# sourceMappingURL=point-light.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"point-light.js","sourceRoot":"","sources":["../../src/templates/point-light.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,6BAA6B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEzE,eAAe;IACb,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,IAAI,CAAC,gGAAgG;IAC5G,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,aAAa;QACnB,EAAE,EAAE,EAAE;QACN,EAAE,EAAE,EAAE;QACN,EAAE,EAAE,GAAG;QACP,EAAE,EAAE,GAAG;QACP,IAAI,EAAE,GAAG;QACT,SAAS,EAAE,MAAM;QACjB,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/point-light.png', import.meta.url).href\n\nexport default {\n type: 'point-light',\n description: 'Point Light',\n group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,\n icon,\n model: {\n type: 'point-light',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n zPos: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
type: string;
|
|
3
|
-
description: string;
|
|
4
|
-
group: string;
|
|
5
|
-
icon: string;
|
|
6
|
-
model: {
|
|
7
|
-
type: string;
|
|
8
|
-
left: number;
|
|
9
|
-
top: number;
|
|
10
|
-
width: number;
|
|
11
|
-
height: number;
|
|
12
|
-
depth: number;
|
|
13
|
-
fillStyle: string;
|
|
14
|
-
strokeStyle: string;
|
|
15
|
-
lineWidth: number;
|
|
16
|
-
alpha: number;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export default _default;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
const icon = new URL('../../icons/wall.png', import.meta.url).href;
|
|
2
|
-
export default {
|
|
3
|
-
type: 'wall',
|
|
4
|
-
description: '3D wall',
|
|
5
|
-
group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,
|
|
6
|
-
icon,
|
|
7
|
-
model: {
|
|
8
|
-
type: 'wall',
|
|
9
|
-
left: 100,
|
|
10
|
-
top: 100,
|
|
11
|
-
width: 100,
|
|
12
|
-
height: 100,
|
|
13
|
-
depth: 50,
|
|
14
|
-
fillStyle: '#ffffff',
|
|
15
|
-
strokeStyle: '#999',
|
|
16
|
-
lineWidth: 1,
|
|
17
|
-
alpha: 1
|
|
18
|
-
}
|
|
19
|
-
};
|
|
20
|
-
//# sourceMappingURL=wall%20copy.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"wall copy.js","sourceRoot":"","sources":["../../src/templates/wall copy.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,sBAAsB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAElE,eAAe;IACb,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,SAAS;IACtB,KAAK,EAAE,IAAI,CAAC,gGAAgG;IAC5G,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,KAAK,EAAE,EAAE;QACT,SAAS,EAAE,SAAS;QACpB,WAAW,EAAE,MAAM;QACnB,SAAS,EAAE,CAAC;QACZ,KAAK,EAAE,CAAC;KACT;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/wall.png', import.meta.url).href\n\nexport default {\n type: 'wall',\n description: '3D wall',\n group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,\n icon,\n model: {\n type: 'wall',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n depth: 50,\n fillStyle: '#ffffff',\n strokeStyle: '#999',\n lineWidth: 1,\n alpha: 1\n }\n}\n"]}
|
package/dist/three-modeller.d.ts
DELETED
|
File without changes
|
package/dist/three-modeller.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"three-modeller.js","sourceRoot":"","sources":["../src/three-modeller.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2023-05-23T21:42:12+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-23T21:42:13+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-23T21:42:13+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-23T21:42:14+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-23T21:42:14+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-23T21:42:14+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2023-05-24T21:23:41+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-24T21:23:41+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-24T21:23:42+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-24T21:23:42+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-24T21:23:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-24T21:23:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
2023-05-25T00:03:30+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-25T00:03:31+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-25T00:03:31+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-25T00:03:31+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-25T00:03:32+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-25T00:03:32+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
7
|
-
2023-05-25T00:12:11+09:00 error: thumbnail not found
|
|
8
|
-
2023-05-25T00:12:13+09:00 error: thumbnail not found
|
|
9
|
-
2023-05-25T00:27:18+09:00 info: File Storage is Ready.
|
|
10
|
-
2023-05-25T00:27:19+09:00 error: oracledb module loading failed
|
|
11
|
-
2023-05-25T00:27:20+09:00 info: Default DataSource established
|
|
12
|
-
2023-05-25T00:27:20+09:00 info: Transaction DataSource established
|
|
13
|
-
2023-05-25T00:27:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
14
|
-
2023-05-25T00:27:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
15
|
-
2023-05-25T00:28:38+09:00 info: File Storage is Ready.
|
|
16
|
-
2023-05-25T00:28:39+09:00 error: oracledb module loading failed
|
|
17
|
-
2023-05-25T00:28:39+09:00 info: Default DataSource established
|
|
18
|
-
2023-05-25T00:28:39+09:00 info: Transaction DataSource established
|
|
19
|
-
2023-05-25T00:28:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
20
|
-
2023-05-25T00:28:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2023-05-25T15:54:39+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-25T15:54:40+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-25T15:54:41+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-25T15:54:41+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-25T15:54:42+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-25T15:54:42+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
2023-05-25T16:31:07+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
2
|
-
2023-05-25T16:31:11+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
3
|
-
2023-05-25T16:31:25+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
4
|
-
2023-05-25T16:31:27+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
5
|
-
2023-05-25T16:47:25+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-20T07:27:23+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-20T07:27:23+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-20T07:27:23+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-20T07:27:23+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-20T07:27:23+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-20T07:27:23+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-20T07:27:23+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-20T07:27:23+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-20T07:27:23+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-20T07:27:23+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-20T07:27:23+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-20T07:27:23+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-20T07:27:23+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-20T07:27:23+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-20T07:27:23+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-20T07:27:23+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-20T07:27:23+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-20T07:27:23+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-20T07:27:23+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-20T07:27:23+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-20T07:27:23+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-20T07:27:23+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-20T07:27:23+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-20T07:27:23+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-20T07:27:23+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-20T07:27:23+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-20T07:27:23+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-20T07:27:23+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-23T21:42:14+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-23T21:42:14+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-23T21:42:14+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-23T21:42:14+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-23T21:42:14+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-23T21:42:14+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-23T21:42:14+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-23T21:42:14+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-23T21:42:14+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-23T21:42:14+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-23T21:42:14+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-23T21:42:14+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-23T21:42:14+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-23T21:42:14+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-23T21:42:14+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-23T21:42:14+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-23T21:42:14+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-23T21:42:14+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-23T21:42:14+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-23T21:42:14+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-23T21:42:14+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-23T21:42:14+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-23T21:42:14+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-23T21:42:14+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-23T21:42:14+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-23T21:42:14+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-23T21:42:14+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-23T21:42:14+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-24T21:23:43+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-24T21:23:43+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-24T21:23:43+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-24T21:23:43+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-24T21:23:43+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-24T21:23:43+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-24T21:23:43+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-24T21:23:43+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-24T21:23:43+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-24T21:23:43+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-24T21:23:43+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-24T21:23:43+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-24T21:23:43+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-24T21:23:43+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-24T21:23:43+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-24T21:23:43+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-24T21:23:43+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-24T21:23:43+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-24T21:23:43+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-24T21:23:43+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-24T21:23:43+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-24T21:23:43+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-24T21:23:43+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-24T21:23:43+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-24T21:23:43+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-24T21:23:43+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-24T21:23:43+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-24T21:23:43+09:00 info: ConnectionManager initialization done:
|