@operato/scene-gantt 2.0.0-beta.0 → 2.0.0-beta.1

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.
Files changed (72) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/cache/translations/system/en.json +1 -1
  3. package/cache/translations/system/ko.json +1 -1
  4. package/db.sqlite +0 -0
  5. package/dist/editors/index.d.ts +6 -0
  6. package/dist/editors/index.js +8 -0
  7. package/dist/editors/index.js.map +1 -0
  8. package/dist/gantt.d.ts +61 -0
  9. package/dist/gantt.js +224 -0
  10. package/dist/gantt.js.map +1 -0
  11. package/dist/index.d.ts +1 -0
  12. package/dist/index.js +1 -0
  13. package/dist/index.js.map +1 -1
  14. package/dist/templates/gantt.d.ts +14 -0
  15. package/dist/templates/gantt.js +16 -0
  16. package/dist/templates/gantt.js.map +1 -0
  17. package/dist/templates/index.js +2 -1
  18. package/dist/templates/index.js.map +1 -1
  19. package/icons/gantt.png +0 -0
  20. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +66 -6
  21. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +75 -15
  22. package/logs/application-2024-06-10-00.log +6 -0
  23. package/logs/application-2024-06-10-12.log +6 -0
  24. package/logs/application-2024-06-10-13.log +18 -0
  25. package/logs/application-2024-06-10-22.log +10 -0
  26. package/logs/application-2024-06-11-00.log +6 -0
  27. package/logs/application-2024-06-11-01.log +7 -0
  28. package/logs/application-2024-06-11-02.log +12 -0
  29. package/logs/application-2024-06-11-03.log +12 -0
  30. package/logs/application-2024-06-11-04.log +12 -0
  31. package/logs/application-2024-06-11-14.log +6 -0
  32. package/logs/application-2024-06-11-15.log +6 -0
  33. package/logs/application-2024-06-11-16.log +6 -0
  34. package/logs/application-2024-06-11-17.log +24 -0
  35. package/logs/application-2024-06-11-19.log +36 -0
  36. package/logs/connections-2024-06-04-11.log +50 -0
  37. package/logs/connections-2024-06-04-12.log +0 -0
  38. package/logs/connections-2024-06-04-13.log +50 -0
  39. package/logs/connections-2024-06-10-00.log +50 -0
  40. package/logs/connections-2024-06-10-12.log +50 -0
  41. package/logs/connections-2024-06-10-13.log +150 -0
  42. package/logs/connections-2024-06-10-22.log +50 -0
  43. package/logs/connections-2024-06-11-00.log +50 -0
  44. package/logs/connections-2024-06-11-01.log +50 -0
  45. package/logs/connections-2024-06-11-02.log +100 -0
  46. package/logs/connections-2024-06-11-03.log +100 -0
  47. package/logs/connections-2024-06-11-04.log +100 -0
  48. package/logs/connections-2024-06-11-14.log +50 -0
  49. package/logs/connections-2024-06-11-15.log +50 -0
  50. package/logs/connections-2024-06-11-16.log +50 -0
  51. package/logs/connections-2024-06-11-17.log +200 -0
  52. package/logs/connections-2024-06-11-19.log +300 -0
  53. package/package.json +3 -2
  54. package/src/editors/index.ts +8 -0
  55. package/src/gantt.ts +261 -0
  56. package/src/index.ts +1 -0
  57. package/src/templates/gantt.ts +16 -0
  58. package/src/templates/index.ts +2 -1
  59. package/things-scene.config.js +3 -1
  60. package/translations/en.json +17 -1
  61. package/translations/ja.json +17 -1
  62. package/translations/ko.json +16 -1
  63. package/translations/ms.json +17 -1
  64. package/translations/zh.json +16 -1
  65. package/tsconfig.tsbuildinfo +1 -1
  66. package/logs/application-2024-05-27-14.log +0 -6
  67. package/logs/application-2024-05-27-17.log +0 -6
  68. package/logs/connections-2024-05-20-22.log +0 -50
  69. package/logs/connections-2024-05-21-00.log +0 -100
  70. package/logs/connections-2024-05-21-01.log +0 -50
  71. package/logs/connections-2024-05-27-14.log +0 -50
  72. package/logs/connections-2024-05-27-17.log +0 -50
package/dist/gantt.js ADDED
@@ -0,0 +1,224 @@
1
+ import { i18next } from '@operato/i18n';
2
+ /*
3
+ * Copyright © HatioLab Inc. All rights reserved.
4
+ */
5
+ const NATURE = {
6
+ mutable: false,
7
+ resizable: true,
8
+ rotatable: true,
9
+ properties: [
10
+ {
11
+ type: 'date',
12
+ label: 'gantt-from-date',
13
+ name: 'fromDate',
14
+ defaultValue: () => new Date(new Date().getFullYear(), 0, 1).toISOString().split('T')[0] /* beginning of this year */
15
+ },
16
+ {
17
+ type: 'date',
18
+ label: 'gantt-to-date',
19
+ name: 'toDate',
20
+ defaultValue: () => new Date(new Date().getFullYear(), 11, 31).toISOString().split('T')[0] /* end of this year */
21
+ },
22
+ {
23
+ type: 'boolean',
24
+ label: 'gantt-gridline',
25
+ name: 'gridline',
26
+ defaultValue: true
27
+ },
28
+ {
29
+ type: 'select',
30
+ label: 'gantt-time-scale',
31
+ name: 'timeScale',
32
+ property: {
33
+ options: [
34
+ {
35
+ display: 'week-day',
36
+ value: 'week-day'
37
+ },
38
+ {
39
+ display: 'month-week',
40
+ value: 'month-week'
41
+ },
42
+ {
43
+ display: 'quarter-week',
44
+ value: 'quarter-week'
45
+ },
46
+ {
47
+ display: 'year-quarter',
48
+ value: 'year-quarter'
49
+ }
50
+ ]
51
+ },
52
+ defaultValue: 'week-day'
53
+ },
54
+ {
55
+ type: 'column-config',
56
+ label: 'gantt-column-config',
57
+ name: 'columnConfig',
58
+ defaultValue: () => [
59
+ { name: 'id', label: i18next.t('label.gantt-task-id') || 'ID', visible: true, width: '50px', order: 1 },
60
+ {
61
+ name: 'section',
62
+ label: i18next.t('label.gantt-task-section') || 'section',
63
+ visible: true,
64
+ width: '100px',
65
+ order: 2
66
+ },
67
+ {
68
+ name: 'title',
69
+ label: i18next.t('label.gantt-task-title') || 'title',
70
+ visible: true,
71
+ width: '150px',
72
+ order: 3
73
+ },
74
+ { name: 'type', label: i18next.t('label.gantt-task-type') || 'type', visible: true, width: '100px', order: 4 },
75
+ {
76
+ name: 'startDate',
77
+ label: i18next.t('label.gantt-task-start-date') || 'start date',
78
+ visible: true,
79
+ width: '100px',
80
+ order: 5
81
+ },
82
+ {
83
+ name: 'endDate',
84
+ label: i18next.t('label.gantt-task-end-date') || 'end date',
85
+ visible: true,
86
+ width: '100px',
87
+ order: 6
88
+ },
89
+ { name: 'tags', label: i18next.t('label.gantt-task-tags') || 'tags', visible: true, width: '100px', order: 7 },
90
+ {
91
+ name: 'progress',
92
+ label: i18next.t('label.gantt-task-progress') || 'progress',
93
+ visible: true,
94
+ width: '100px',
95
+ order: 8
96
+ },
97
+ {
98
+ name: 'dependsOn',
99
+ label: i18next.t('label.gantt-task-previous') || 'previous',
100
+ visible: true,
101
+ width: '100px',
102
+ order: 9
103
+ }
104
+ ]
105
+ }
106
+ ],
107
+ 'value-property': 'tasks'
108
+ };
109
+ import '@operato/gantt/ox-gantt.js';
110
+ import { Component, HTMLOverlayContainer } from '@hatiolab/things-scene';
111
+ function getGlobalScale(component) {
112
+ var scale = { x: 1, y: 1 };
113
+ var parent = component;
114
+ while (parent) {
115
+ let { x, y } = parent.get('scale') || { x: 1, y: 1 };
116
+ scale.x *= x || 1;
117
+ scale.y *= y || 1;
118
+ parent = parent.parent;
119
+ }
120
+ return scale;
121
+ }
122
+ export default class GanttScene extends HTMLOverlayContainer {
123
+ constructor() {
124
+ super(...arguments);
125
+ this._tasks = [];
126
+ this.listener = function (after) {
127
+ after.scale && this.rescale();
128
+ }.bind(this);
129
+ }
130
+ static get nature() {
131
+ return NATURE;
132
+ }
133
+ createElement() {
134
+ super.createElement();
135
+ this.gantt = document.createElement('ox-gantt');
136
+ this.gantt.style.width = 'inherit';
137
+ this.gantt.style.height = 'inherit';
138
+ this.element.appendChild(this.gantt);
139
+ this.rescale();
140
+ const { fromDate, toDate, gridline, columnConfig, timeScale = 'week-day' } = this.state;
141
+ this.gantt.fromDate = fromDate;
142
+ this.gantt.toDate = toDate;
143
+ this.gantt.extendGridLines = gridline;
144
+ this.gantt.columnConfig = columnConfig;
145
+ this.gantt.timeScale = timeScale;
146
+ }
147
+ dispose() {
148
+ super.dispose();
149
+ }
150
+ /*
151
+ * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,
152
+ * 그에 따른 html element의 반영이 필요한 부분을 구현한다.
153
+ *
154
+ * ThingsComponent state => HTML element properties
155
+ */
156
+ setElementProperties(div) {
157
+ this.rescale();
158
+ }
159
+ /*
160
+ * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
161
+ * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
162
+ */
163
+ reposition() {
164
+ super.reposition();
165
+ }
166
+ get tagName() {
167
+ return 'div';
168
+ }
169
+ get tasks() {
170
+ return this.get('tasks');
171
+ }
172
+ set tasks(tasks) {
173
+ this.set('tasks', tasks);
174
+ this.gantt.tasks = tasks;
175
+ }
176
+ ready() {
177
+ super.ready();
178
+ if (this.rootModel) {
179
+ this.listenTo = this.rootModel;
180
+ this.rootModel.on('change', this.listener);
181
+ }
182
+ }
183
+ removed() {
184
+ if (this.listenTo) {
185
+ this.listenTo.off('change', this.listener);
186
+ delete this.listenTo;
187
+ delete this.listener;
188
+ }
189
+ }
190
+ /*
191
+ * gantt은 scale된 상태에서 마우스/터치 포지션을 정확히 매핑하지 못하므로, 타임 범위를 정상적으로 지정하지 못한다.
192
+ * 따라서, gantt의 경우에는 부모의 스케일의 역으로 transform해서, scale을 1로 맞추어야 한다.
193
+ */
194
+ rescale() {
195
+ var scale = getGlobalScale(this);
196
+ var sx = 1 / scale.x;
197
+ var sy = 1 / scale.y;
198
+ var transform = `scale(${sx}, ${sy})`;
199
+ ['-webkit-', '-moz-', '-ms-', '-o-', ''].forEach(prefix => {
200
+ this.gantt.style[(prefix + 'transform')] = transform;
201
+ this.gantt.style[(prefix + 'transform-origin')] = '0px 0px';
202
+ });
203
+ var { width, height } = this.state;
204
+ this.gantt.style.width = width * scale.x + 'px';
205
+ this.gantt.style.height = height * scale.y + 'px';
206
+ this.gantt.requestUpdate();
207
+ }
208
+ onchange(props) {
209
+ ;
210
+ ['fromDate', 'toDate', 'timeScale', 'columnConfig'].forEach(prop => {
211
+ if (prop in props) {
212
+ ;
213
+ this.gantt[prop] = this.state[prop];
214
+ }
215
+ });
216
+ if ('gridline' in props) {
217
+ ;
218
+ this.gantt.extendGridLines = this.state['gridline'];
219
+ }
220
+ this.rescale();
221
+ }
222
+ }
223
+ Component.register('gantt', GanttScene);
224
+ //# sourceMappingURL=gantt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gantt.js","sourceRoot":"","sources":["../src/gantt.ts"],"names":[],"mappings":"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","sourcesContent":["import { i18next } from '@operato/i18n'\n\n/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'date',\n label: 'gantt-from-date',\n name: 'fromDate',\n defaultValue: () =>\n new Date(new Date().getFullYear(), 0, 1).toISOString().split('T')[0] /* beginning of this year */\n },\n {\n type: 'date',\n label: 'gantt-to-date',\n name: 'toDate',\n defaultValue: () => new Date(new Date().getFullYear(), 11, 31).toISOString().split('T')[0] /* end of this year */\n },\n {\n type: 'boolean',\n label: 'gantt-gridline',\n name: 'gridline',\n defaultValue: true\n },\n {\n type: 'select',\n label: 'gantt-time-scale',\n name: 'timeScale',\n property: {\n options: [\n {\n display: 'week-day',\n value: 'week-day'\n },\n {\n display: 'month-week',\n value: 'month-week'\n },\n {\n display: 'quarter-week',\n value: 'quarter-week'\n },\n {\n display: 'year-quarter',\n value: 'year-quarter'\n }\n ]\n },\n defaultValue: 'week-day'\n },\n {\n type: 'column-config',\n label: 'gantt-column-config',\n name: 'columnConfig',\n defaultValue: () => [\n { name: 'id', label: i18next.t('label.gantt-task-id') || 'ID', visible: true, width: '50px', order: 1 },\n {\n name: 'section',\n label: i18next.t('label.gantt-task-section') || 'section',\n visible: true,\n width: '100px',\n order: 2\n },\n {\n name: 'title',\n label: i18next.t('label.gantt-task-title') || 'title',\n visible: true,\n width: '150px',\n order: 3\n },\n { name: 'type', label: i18next.t('label.gantt-task-type') || 'type', visible: true, width: '100px', order: 4 },\n {\n name: 'startDate',\n label: i18next.t('label.gantt-task-start-date') || 'start date',\n visible: true,\n width: '100px',\n order: 5\n },\n {\n name: 'endDate',\n label: i18next.t('label.gantt-task-end-date') || 'end date',\n visible: true,\n width: '100px',\n order: 6\n },\n { name: 'tags', label: i18next.t('label.gantt-task-tags') || 'tags', visible: true, width: '100px', order: 7 },\n {\n name: 'progress',\n label: i18next.t('label.gantt-task-progress') || 'progress',\n visible: true,\n width: '100px',\n order: 8\n },\n {\n name: 'dependsOn',\n label: i18next.t('label.gantt-task-previous') || 'previous',\n visible: true,\n width: '100px',\n order: 9\n }\n ]\n }\n ],\n 'value-property': 'tasks'\n}\n\nimport '@operato/gantt/ox-gantt.js'\n\nimport { OxGantt } from '@operato/gantt/dist/src/ox-gantt.js'\nimport { Task } from '@operato/gantt/dist/src/types.js'\n\nimport { Component, HTMLOverlayContainer, Properties, error } from '@hatiolab/things-scene'\n\nfunction getGlobalScale(component: GanttScene) {\n var scale = { x: 1, y: 1 }\n var parent: Component = component\n\n while (parent) {\n let { x, y } = parent.get('scale') || { x: 1, y: 1 }\n scale.x *= x || 1\n scale.y *= y || 1\n\n parent = parent.parent\n }\n return scale\n}\n\nexport default class GanttScene extends HTMLOverlayContainer {\n static get nature() {\n return NATURE\n }\n\n private _tasks: Task[] = []\n\n private listenTo?: Component\n private listener? = function (this: GanttScene, after: any) {\n after.scale && this.rescale()\n }.bind(this)\n\n private gantt!: OxGantt\n\n createElement() {\n super.createElement()\n\n this.gantt = document.createElement('ox-gantt') as OxGantt\n this.gantt.style.width = 'inherit'\n this.gantt.style.height = 'inherit'\n\n this.element.appendChild(this.gantt)\n\n this.rescale()\n\n const { fromDate, toDate, gridline, columnConfig, timeScale = 'week-day' } = this.state\n\n this.gantt.fromDate = fromDate\n this.gantt.toDate = toDate\n this.gantt.extendGridLines = gridline\n this.gantt.columnConfig = columnConfig\n this.gantt.timeScale = timeScale\n }\n\n dispose() {\n super.dispose()\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n\n setElementProperties(div: HTMLDivElement) {\n this.rescale()\n }\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n }\n\n get tagName() {\n return 'div'\n }\n\n get tasks() {\n return this.get('tasks')\n }\n\n set tasks(tasks) {\n this.set('tasks', tasks)\n ;(this.gantt as OxGantt).tasks = tasks\n }\n\n ready() {\n super.ready()\n\n if (this.rootModel) {\n this.listenTo = this.rootModel\n this.rootModel.on('change', this.listener!)\n }\n }\n\n removed() {\n if (this.listenTo) {\n this.listenTo.off('change', this.listener!)\n\n delete this.listenTo\n delete this.listener\n }\n }\n\n /*\n * gantt은 scale된 상태에서 마우스/터치 포지션을 정확히 매핑하지 못하므로, 타임 범위를 정상적으로 지정하지 못한다.\n * 따라서, gantt의 경우에는 부모의 스케일의 역으로 transform해서, scale을 1로 맞추어야 한다.\n */\n rescale() {\n var scale = getGlobalScale(this)\n\n var sx = 1 / scale.x\n var sy = 1 / scale.y\n\n var transform = `scale(${sx}, ${sy})`\n\n ;['-webkit-', '-moz-', '-ms-', '-o-', ''].forEach(prefix => {\n this.gantt!.style[(prefix + 'transform') as any] = transform\n this.gantt!.style[(prefix + 'transform-origin') as any] = '0px 0px'\n })\n\n var { width, height } = this.state\n this.gantt!.style.width = width * scale.x + 'px'\n this.gantt!.style.height = height * scale.y + 'px'\n\n this.gantt.requestUpdate()\n }\n\n onchange(props: Properties) {\n ;['fromDate', 'toDate', 'timeScale', 'columnConfig'].forEach(prop => {\n if (prop in props) {\n ;(this.gantt as any)[prop] = this.state[prop]\n }\n })\n\n if ('gridline' in props) {\n ;(this.gantt as OxGantt).extendGridLines = this.state['gridline']\n }\n\n this.rescale()\n }\n}\n\nComponent.register('gantt', GanttScene)\n"]}
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
+ export { default as GanttScene } from './gantt';
1
2
  export { default as WellstekGanttScene } from './wellstek-gantt';
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
+ export { default as GanttScene } from './gantt';
1
2
  export { default as WellstekGanttScene } from './wellstek-gantt';
2
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAA","sourcesContent":["export { default as WellstekGanttScene } from './wellstek-gantt'\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,kBAAkB,CAAA","sourcesContent":["export { default as GanttScene } from './gantt'\nexport { default as WellstekGanttScene } from './wellstek-gantt'\n"]}
@@ -0,0 +1,14 @@
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
+ };
13
+ };
14
+ export default _default;
@@ -0,0 +1,16 @@
1
+ const icon = new URL('../../icons/gantt.png', import.meta.url).href;
2
+ export default {
3
+ type: 'gantt',
4
+ description: 'gantt',
5
+ group: 'etc',
6
+ /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
7
+ icon,
8
+ model: {
9
+ type: 'gantt',
10
+ left: 150,
11
+ top: 150,
12
+ width: 300,
13
+ height: 200
14
+ }
15
+ };
16
+ //# sourceMappingURL=gantt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gantt.js","sourceRoot":"","sources":["../../src/templates/gantt.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,uBAAuB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEnE,eAAe;IACb,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,OAAO;IACpB,KAAK,EAAE,KAAK;IACZ,gGAAgG;IAChG,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;KACZ;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/gantt.png', import.meta.url).href\n\nexport default {\n type: 'gantt',\n description: 'gantt',\n group: 'etc',\n /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */\n icon,\n model: {\n type: 'gantt',\n left: 150,\n top: 150,\n width: 300,\n height: 200\n }\n}\n"]}
@@ -1,3 +1,4 @@
1
+ import Gantt from './gantt';
1
2
  import WellstekGantt from './wellstek-gantt';
2
- export default [WellstekGantt];
3
+ export default [Gantt, WellstekGantt];
3
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,MAAM,kBAAkB,CAAA;AAE5C,eAAe,CAAC,aAAa,CAAC,CAAA","sourcesContent":["import WellstekGantt from './wellstek-gantt'\n\nexport default [WellstekGantt]\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,SAAS,CAAA;AAC3B,OAAO,aAAa,MAAM,kBAAkB,CAAA;AAE5C,eAAe,CAAC,KAAK,EAAE,aAAa,CAAC,CAAA","sourcesContent":["import Gantt from './gantt'\nimport WellstekGantt from './wellstek-gantt'\n\nexport default [Gantt, WellstekGantt]\n"]}
Binary file
@@ -6,14 +6,74 @@
6
6
  "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1716789288841,
10
- "name": "logs/application-2024-05-27-14.log",
11
- "hash": "42db36955f9b5f52ca44d1852d7e71b93efb0dbc836d89f3c0c1d075123a3b59"
9
+ "date": 1717946822839,
10
+ "name": "logs/application-2024-06-10-00.log",
11
+ "hash": "4caf2ff66151fc9a08e71876c85ed3f04ab26111aa964a666a32e88731feadc6"
12
12
  },
13
13
  {
14
- "date": 1716798007544,
15
- "name": "logs/application-2024-05-27-17.log",
16
- "hash": "7e366ab687dbaf43fe5d5fffe10ea1174f9cb257a444d2116cde3e7f662d1370"
14
+ "date": 1717991267792,
15
+ "name": "logs/application-2024-06-10-12.log",
16
+ "hash": "eeb4275549b1e70de1fdae26a2060de05db42217a6ae364ad70fa3842ef472c3"
17
+ },
18
+ {
19
+ "date": 1717992591611,
20
+ "name": "logs/application-2024-06-10-13.log",
21
+ "hash": "7c198c077715e3a0c78ea5e0fac0a96b987feb62f2575b6e0eaf4ba53e339b5d"
22
+ },
23
+ {
24
+ "date": 1718024692403,
25
+ "name": "logs/application-2024-06-10-22.log",
26
+ "hash": "570d536d54c37bb2036695c6808abd8e21145c6401df885a4e065af6bdb350aa"
27
+ },
28
+ {
29
+ "date": 1718034695847,
30
+ "name": "logs/application-2024-06-11-00.log",
31
+ "hash": "e4ed4ec65c7129203c783bfcc80c74cda5217a09842e37daa68bb588b09476c3"
32
+ },
33
+ {
34
+ "date": 1718038741761,
35
+ "name": "logs/application-2024-06-11-01.log",
36
+ "hash": "0fb8ccec3bef14eda5853e54c74eea9eef81a0049e979240e6f0bd3cd634fc9b"
37
+ },
38
+ {
39
+ "date": 1718040750818,
40
+ "name": "logs/application-2024-06-11-02.log",
41
+ "hash": "53c288beacc2c6a128e74788541d3b697121d9933e1520436ddca9fede33b00b"
42
+ },
43
+ {
44
+ "date": 1718045447197,
45
+ "name": "logs/application-2024-06-11-03.log",
46
+ "hash": "edcba41c028c2380fa70240c50495943247ed484f9bb8300e798a6f60dad6366"
47
+ },
48
+ {
49
+ "date": 1718046615074,
50
+ "name": "logs/application-2024-06-11-04.log",
51
+ "hash": "d1df10714afcb09883e1a4473a6d7118d0302e4509f9e3a41187f489ee8c398e"
52
+ },
53
+ {
54
+ "date": 1718083818996,
55
+ "name": "logs/application-2024-06-11-14.log",
56
+ "hash": "410d27c7f23e837674bdfb60b208e3da5ea6ea5646a9f7e9e8c1038a4d8977dd"
57
+ },
58
+ {
59
+ "date": 1718088851483,
60
+ "name": "logs/application-2024-06-11-15.log",
61
+ "hash": "13e8a2e40bf5bb49b3dd3ecc2ddff5760c659a7ce9989ff7d17295269f44f6a2"
62
+ },
63
+ {
64
+ "date": 1718091933554,
65
+ "name": "logs/application-2024-06-11-16.log",
66
+ "hash": "38219b28c8cbeddcaf84c05fd58c01a12f039b14848e16dbd78715835ccbdc20"
67
+ },
68
+ {
69
+ "date": 1718093770636,
70
+ "name": "logs/application-2024-06-11-17.log",
71
+ "hash": "092b66ed70631656288ea6f1287519df2b460ec2d391bc81e6d8a1cbb1c5a610"
72
+ },
73
+ {
74
+ "date": 1718100142515,
75
+ "name": "logs/application-2024-06-11-19.log",
76
+ "hash": "30c09dd604bce185de36513403a62cc51a4bd4dfde8b6a95edb25677edf56b3d"
17
77
  }
18
78
  ],
19
79
  "hashType": "sha256"
@@ -6,29 +6,89 @@
6
6
  "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1716212498188,
10
- "name": "logs/connections-2024-05-20-22.log",
11
- "hash": "c9cc4eaf2ea1b4ca64b207ce81a34b9ce388863449848d73aa3f7cc786de6f30"
9
+ "date": 1717468938119,
10
+ "name": "logs/connections-2024-06-04-11.log",
11
+ "hash": "1caf24454578b5357b6bccf4ba91901eb316d263e284cb3716127734f8ff8e7d"
12
12
  },
13
13
  {
14
- "date": 1716218396273,
15
- "name": "logs/connections-2024-05-21-00.log",
16
- "hash": "ad09d04b5bfa22621f5f85824fb90cc37e9ba2761beab420dc45454a52872dad"
14
+ "date": 1717471418699,
15
+ "name": "logs/connections-2024-06-04-12.log",
16
+ "hash": "8e4f6db64c0eba0cf6a0b108198522a9ca4e8efe22b6abda5c24b891c8e313d0"
17
17
  },
18
18
  {
19
- "date": 1716222057375,
20
- "name": "logs/connections-2024-05-21-01.log",
21
- "hash": "7dcf60eac970b7b8a62584c836a4b316032e821291691f0f6eafc1a50fd8067c"
19
+ "date": 1717476190537,
20
+ "name": "logs/connections-2024-06-04-13.log",
21
+ "hash": "97e50feb8776032e99b749453ed16f3166dba1522355f19d6e6b3d0b90d428e3"
22
22
  },
23
23
  {
24
- "date": 1716789290491,
25
- "name": "logs/connections-2024-05-27-14.log",
26
- "hash": "67368e5c97bc1bbed06fda170ddddd6a7bb6459b4c23714539a2f6759f2ff72f"
24
+ "date": 1717947275762,
25
+ "name": "logs/connections-2024-06-10-00.log",
26
+ "hash": "001ba1e3fdd4ed90d33e4e34cdaf4e2980b4fc306110a2750a82cf8ba20ae052"
27
27
  },
28
28
  {
29
- "date": 1716798009365,
30
- "name": "logs/connections-2024-05-27-17.log",
31
- "hash": "2d5ed3838d6fcd466a0732938f91b074c11b546a91a110022aa94702626d7927"
29
+ "date": 1717991269614,
30
+ "name": "logs/connections-2024-06-10-12.log",
31
+ "hash": "9c51978dfca2e97f2a000f6751af0e337f06d141ef47b69c54a332730aa8eae4"
32
+ },
33
+ {
34
+ "date": 1717992593284,
35
+ "name": "logs/connections-2024-06-10-13.log",
36
+ "hash": "d5899921f965c34b580beb044314cd0a90ea0235f7f68783ed651170d4ad8a4c"
37
+ },
38
+ {
39
+ "date": 1718024694259,
40
+ "name": "logs/connections-2024-06-10-22.log",
41
+ "hash": "8e60153b5bc81853fe1758a5e081714c3b29ba770a83e4a266b866d87efd4f60"
42
+ },
43
+ {
44
+ "date": 1718034697653,
45
+ "name": "logs/connections-2024-06-11-00.log",
46
+ "hash": "4825b202b4a32f3034212f3c1325c8fc5f62cfcd1f131ecacf2815cca20c407c"
47
+ },
48
+ {
49
+ "date": 1718038757922,
50
+ "name": "logs/connections-2024-06-11-01.log",
51
+ "hash": "abeb5a7bdc56bbd18fefb8d531b32c093825aa6a77c392598dea63a328c03c4b"
52
+ },
53
+ {
54
+ "date": 1718040752498,
55
+ "name": "logs/connections-2024-06-11-02.log",
56
+ "hash": "f0ec84b7c3c78a2a0b5a2361df4a794f9c603c0c9fed5f4602720982ce379a6a"
57
+ },
58
+ {
59
+ "date": 1718045449434,
60
+ "name": "logs/connections-2024-06-11-03.log",
61
+ "hash": "ff2362ef82a10190adbd2ea9e58f4881051adab075ff366ea01ed6227cbda926"
62
+ },
63
+ {
64
+ "date": 1718046616881,
65
+ "name": "logs/connections-2024-06-11-04.log",
66
+ "hash": "43bfbada43420b17d19aef2cdff918524b935523068c4f54457c4463c2020ca1"
67
+ },
68
+ {
69
+ "date": 1718083820830,
70
+ "name": "logs/connections-2024-06-11-14.log",
71
+ "hash": "48b599ab8afc0142c584f2c989fb8319632933609520d158ff7b4bffeea413bc"
72
+ },
73
+ {
74
+ "date": 1718088853417,
75
+ "name": "logs/connections-2024-06-11-15.log",
76
+ "hash": "d73a68d9ad5bf2be354aab04e72ca223abfa36b16a4a1555a25743f0bf730439"
77
+ },
78
+ {
79
+ "date": 1718091935324,
80
+ "name": "logs/connections-2024-06-11-16.log",
81
+ "hash": "dbdae76d7ca82aa604eddb0ff2eaaa6b1d8a4e4f4b1e905bcd21b280924932d4"
82
+ },
83
+ {
84
+ "date": 1718093772364,
85
+ "name": "logs/connections-2024-06-11-17.log",
86
+ "hash": "8f068b58aaaf2d1401a0d3eac509a7452c4023b6afc7b6fa844b865b6ba8d4d7"
87
+ },
88
+ {
89
+ "date": 1718100144208,
90
+ "name": "logs/connections-2024-06-11-19.log",
91
+ "hash": "8760d38083a1aaf6ca1448b78da83270d5e2ee5520c7aa068b9b3c755b296c51"
32
92
  }
33
93
  ],
34
94
  "hashType": "sha256"
@@ -0,0 +1,6 @@
1
+ 2024-06-10T00:34:35+09:00 info: File Storage is Ready.
2
+ 2024-06-10T00:34:36+09:00 error: oracledb module loading failed
3
+ 2024-06-10T00:34:36+09:00 error: oracledb module loading failed
4
+ 2024-06-10T00:34:37+09:00 info: Default DataSource established
5
+ 2024-06-10T00:34:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-10T00:34:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,6 @@
1
+ 2024-06-10T12:47:49+09:00 info: File Storage is Ready.
2
+ 2024-06-10T12:47:49+09:00 error: oracledb module loading failed
3
+ 2024-06-10T12:47:50+09:00 error: oracledb module loading failed
4
+ 2024-06-10T12:47:51+09:00 info: Default DataSource established
5
+ 2024-06-10T12:47:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-10T12:47:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,18 @@
1
+ 2024-06-10T13:09:52+09:00 info: File Storage is Ready.
2
+ 2024-06-10T13:09:53+09:00 error: oracledb module loading failed
3
+ 2024-06-10T13:09:53+09:00 error: oracledb module loading failed
4
+ 2024-06-10T13:09:54+09:00 info: Default DataSource established
5
+ 2024-06-10T13:09:56+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-10T13:09:56+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2024-06-10T13:14:53+09:00 info: File Storage is Ready.
8
+ 2024-06-10T13:14:54+09:00 error: oracledb module loading failed
9
+ 2024-06-10T13:14:54+09:00 error: oracledb module loading failed
10
+ 2024-06-10T13:14:55+09:00 info: Default DataSource established
11
+ 2024-06-10T13:14:57+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2024-06-10T13:14:57+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
+ 2024-06-10T13:29:02+09:00 info: File Storage is Ready.
14
+ 2024-06-10T13:29:03+09:00 error: oracledb module loading failed
15
+ 2024-06-10T13:29:03+09:00 error: oracledb module loading failed
16
+ 2024-06-10T13:29:04+09:00 info: Default DataSource established
17
+ 2024-06-10T13:29:06+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
+ 2024-06-10T13:29:06+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,10 @@
1
+ 2024-06-10T22:04:53+09:00 info: File Storage is Ready.
2
+ 2024-06-10T22:04:54+09:00 error: oracledb module loading failed
3
+ 2024-06-10T22:04:54+09:00 error: oracledb module loading failed
4
+ 2024-06-10T22:04:56+09:00 info: Default DataSource established
5
+ 2024-06-10T22:05:10+09:00 info: File Storage is Ready.
6
+ 2024-06-10T22:05:11+09:00 error: oracledb module loading failed
7
+ 2024-06-10T22:05:11+09:00 error: oracledb module loading failed
8
+ 2024-06-10T22:05:12+09:00 info: Default DataSource established
9
+ 2024-06-10T22:05:14+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
10
+ 2024-06-10T22:05:14+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,6 @@
1
+ 2024-06-11T00:51:37+09:00 info: File Storage is Ready.
2
+ 2024-06-11T00:51:37+09:00 error: oracledb module loading failed
3
+ 2024-06-11T00:51:38+09:00 error: oracledb module loading failed
4
+ 2024-06-11T00:51:39+09:00 info: Default DataSource established
5
+ 2024-06-11T00:51:41+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T00:51:41+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,7 @@
1
+ 2024-06-11T01:59:01+09:00 error: stream is not readable
2
+ 2024-06-11T01:59:17+09:00 info: File Storage is Ready.
3
+ 2024-06-11T01:59:18+09:00 error: oracledb module loading failed
4
+ 2024-06-11T01:59:18+09:00 error: oracledb module loading failed
5
+ 2024-06-11T01:59:19+09:00 info: Default DataSource established
6
+ 2024-06-11T01:59:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
7
+ 2024-06-11T01:59:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,12 @@
1
+ 2024-06-11T02:32:32+09:00 info: File Storage is Ready.
2
+ 2024-06-11T02:32:32+09:00 error: oracledb module loading failed
3
+ 2024-06-11T02:32:32+09:00 error: oracledb module loading failed
4
+ 2024-06-11T02:32:34+09:00 info: Default DataSource established
5
+ 2024-06-11T02:32:36+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T02:32:36+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2024-06-11T02:54:56+09:00 info: File Storage is Ready.
8
+ 2024-06-11T02:54:56+09:00 error: oracledb module loading failed
9
+ 2024-06-11T02:54:57+09:00 error: oracledb module loading failed
10
+ 2024-06-11T02:54:58+09:00 info: Default DataSource established
11
+ 2024-06-11T02:55:00+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2024-06-11T02:55:00+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,12 @@
1
+ 2024-06-11T03:50:48+09:00 info: File Storage is Ready.
2
+ 2024-06-11T03:50:49+09:00 error: oracledb module loading failed
3
+ 2024-06-11T03:50:50+09:00 error: oracledb module loading failed
4
+ 2024-06-11T03:50:51+09:00 info: Default DataSource established
5
+ 2024-06-11T03:50:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T03:50:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2024-06-11T03:59:12+09:00 info: File Storage is Ready.
8
+ 2024-06-11T03:59:12+09:00 error: oracledb module loading failed
9
+ 2024-06-11T03:59:13+09:00 error: oracledb module loading failed
10
+ 2024-06-11T03:59:14+09:00 info: Default DataSource established
11
+ 2024-06-11T03:59:16+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2024-06-11T03:59:16+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,12 @@
1
+ 2024-06-11T04:10:16+09:00 info: File Storage is Ready.
2
+ 2024-06-11T04:10:17+09:00 error: oracledb module loading failed
3
+ 2024-06-11T04:10:17+09:00 error: oracledb module loading failed
4
+ 2024-06-11T04:10:19+09:00 info: Default DataSource established
5
+ 2024-06-11T04:10:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T04:10:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2024-06-11T04:24:50+09:00 info: File Storage is Ready.
8
+ 2024-06-11T04:24:51+09:00 error: oracledb module loading failed
9
+ 2024-06-11T04:24:51+09:00 error: oracledb module loading failed
10
+ 2024-06-11T04:24:53+09:00 info: Default DataSource established
11
+ 2024-06-11T04:24:55+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2024-06-11T04:24:55+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,6 @@
1
+ 2024-06-11T14:30:20+09:00 info: File Storage is Ready.
2
+ 2024-06-11T14:30:21+09:00 error: oracledb module loading failed
3
+ 2024-06-11T14:30:21+09:00 error: oracledb module loading failed
4
+ 2024-06-11T14:30:23+09:00 info: Default DataSource established
5
+ 2024-06-11T14:30:25+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T14:30:25+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,6 @@
1
+ 2024-06-11T15:54:13+09:00 info: File Storage is Ready.
2
+ 2024-06-11T15:54:13+09:00 error: oracledb module loading failed
3
+ 2024-06-11T15:54:13+09:00 error: oracledb module loading failed
4
+ 2024-06-11T15:54:15+09:00 info: Default DataSource established
5
+ 2024-06-11T15:54:17+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T15:54:17+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,6 @@
1
+ 2024-06-11T16:45:34+09:00 info: File Storage is Ready.
2
+ 2024-06-11T16:45:35+09:00 error: oracledb module loading failed
3
+ 2024-06-11T16:45:35+09:00 error: oracledb module loading failed
4
+ 2024-06-11T16:45:36+09:00 info: Default DataSource established
5
+ 2024-06-11T16:45:38+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2024-06-11T16:45:38+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql