@dssp/dkpi 1.0.0-alpha.10
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/.dockerignore +31 -0
- package/CHANGELOG.md +8 -0
- package/Dockerfile +16 -0
- package/_index.html +70 -0
- package/assets/favicon.ico +0 -0
- package/assets/helps/index.md +1 -0
- package/assets/images/hatiolab-logo.png +0 -0
- package/assets/images/spinner.png +0 -0
- package/assets/images/user.png +0 -0
- package/assets/manifest/apple-1024.png +0 -0
- package/assets/manifest/apple-120.png +0 -0
- package/assets/manifest/apple-152.png +0 -0
- package/assets/manifest/apple-167.png +0 -0
- package/assets/manifest/apple-180.png +0 -0
- package/assets/manifest/apple-touch-icon.png +0 -0
- package/assets/manifest/badge-128x128.png +0 -0
- package/assets/manifest/chrome-splashscreen-icon-384x384.png +0 -0
- package/assets/manifest/chrome-touch-icon-192x192.png +0 -0
- package/assets/manifest/icon-128x128.png +0 -0
- package/assets/manifest/icon-192x192.png +0 -0
- package/assets/manifest/icon-512x512.png +0 -0
- package/assets/manifest/icon-72x72.png +0 -0
- package/assets/manifest/icon-96x96.png +0 -0
- package/assets/manifest/image-metaog.png +0 -0
- package/assets/manifest/maskable_icon.png +0 -0
- package/assets/manifest/ms-icon-144x144.png +0 -0
- package/assets/manifest/ms-touch-icon-144x144-precomposed.png +0 -0
- package/assets/manifest.json +27 -0
- package/assets/videos/intro.mp4 +0 -0
- package/config/config.development.js +49 -0
- package/config/config.production.js +83 -0
- package/dist-client/bootstrap.d.ts +8 -0
- package/dist-client/bootstrap.js +244 -0
- package/dist-client/bootstrap.js.map +1 -0
- package/dist-client/entries/public/home.d.ts +8 -0
- package/dist-client/entries/public/home.js +97 -0
- package/dist-client/entries/public/home.js.map +1 -0
- package/dist-client/icons/menu-icons.d.ts +5 -0
- package/dist-client/icons/menu-icons.js +84 -0
- package/dist-client/icons/menu-icons.js.map +1 -0
- package/dist-client/index.d.ts +0 -0
- package/dist-client/index.js +2 -0
- package/dist-client/index.js.map +1 -0
- package/dist-client/menu.d.ts +23 -0
- package/dist-client/menu.js +59 -0
- package/dist-client/menu.js.map +1 -0
- package/dist-client/pages/sv-user-management.d.ts +5 -0
- package/dist-client/pages/sv-user-management.js +219 -0
- package/dist-client/pages/sv-user-management.js.map +1 -0
- package/dist-client/route.d.ts +1 -0
- package/dist-client/route.js +10 -0
- package/dist-client/route.js.map +1 -0
- package/dist-client/themes/dark.css +51 -0
- package/dist-client/themes/light.css +51 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -0
- package/dist-client/viewparts/menu-tools.d.ts +27 -0
- package/dist-client/viewparts/menu-tools.js +289 -0
- package/dist-client/viewparts/menu-tools.js.map +1 -0
- package/dist-client/viewparts/user-circle.d.ts +5 -0
- package/dist-client/viewparts/user-circle.js +26 -0
- package/dist-client/viewparts/user-circle.js.map +1 -0
- package/dist-server/index.d.ts +0 -0
- package/dist-server/index.js +1 -0
- package/dist-server/index.js.map +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -0
- package/openapi/unstable.yaml +41 -0
- package/package.json +97 -0
- package/schema.graphql +11572 -0
- package/things-factory.config.js +8 -0
- package/translations/en.json +3 -0
- package/translations/ja.json +3 -0
- package/translations/ko.json +3 -0
- package/translations/ms.json +3 -0
- package/translations/zh.json +3 -0
- package/views/auth-page.html +82 -0
- package/views/public/home.html +72 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import '@material/web/icon/icon.js';
|
|
2
|
+
import { LitElement } from 'lit';
|
|
3
|
+
declare const MenuTools_base: (new (...args: any[]) => {
|
|
4
|
+
_storeUnsubscribe: import("redux").Unsubscribe;
|
|
5
|
+
connectedCallback(): void;
|
|
6
|
+
disconnectedCallback(): void;
|
|
7
|
+
stateChanged(_state: unknown): void;
|
|
8
|
+
readonly isConnected: boolean;
|
|
9
|
+
}) & typeof LitElement;
|
|
10
|
+
export declare class MenuTools extends MenuTools_base {
|
|
11
|
+
static styles: import("lit").CSSResult[];
|
|
12
|
+
page?: string;
|
|
13
|
+
width?: string;
|
|
14
|
+
private menus;
|
|
15
|
+
openedMenuIndex: number | null;
|
|
16
|
+
menuUl: HTMLUListElement;
|
|
17
|
+
submenuHeight: number | null;
|
|
18
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
19
|
+
firstUpdated(): void;
|
|
20
|
+
updated(changedProps: any): void;
|
|
21
|
+
_setSubmenuHeight(): void;
|
|
22
|
+
connectedCallback(): void;
|
|
23
|
+
disconnectedCallback(): void;
|
|
24
|
+
private _closeSubmenu;
|
|
25
|
+
stateChanged(state: any): void;
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import '@material/web/icon/icon.js';
|
|
3
|
+
import { css, html, LitElement } from 'lit';
|
|
4
|
+
import { customElement, property, query } from 'lit/decorators.js';
|
|
5
|
+
import { connect } from 'pwa-helpers';
|
|
6
|
+
import { store } from '@operato/shell';
|
|
7
|
+
// import { ICONS_HOME, ICONS_KPIS, ICONS_INTEGRATION, ICONS_SETTING } from '../icons/menu-icons'
|
|
8
|
+
let MenuTools = class MenuTools extends connect(store)(LitElement) {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this.menus = [
|
|
12
|
+
{
|
|
13
|
+
name: '홈',
|
|
14
|
+
path: 'project-list',
|
|
15
|
+
icon: 'home'
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'KPI',
|
|
19
|
+
path: 'kpi-overview',
|
|
20
|
+
icon: 'bar_chart',
|
|
21
|
+
submenus: [
|
|
22
|
+
{ name: 'KPI 개요', path: 'kpi-overview' },
|
|
23
|
+
{ name: 'KPI 성과판', path: 'kpi-dashboard' },
|
|
24
|
+
{ name: 'KPI 카테고리 목록', path: 'kpi-category-list' },
|
|
25
|
+
{ name: 'KPI 목록', path: 'kpi-list' },
|
|
26
|
+
{ name: 'KPI 등급 목록', path: 'kpi-grade-list' },
|
|
27
|
+
{ name: 'KPI 메트릭 목록', path: 'kpi-metric-list' },
|
|
28
|
+
{ name: 'KPI 값 목록', path: 'kpi-value-list' },
|
|
29
|
+
{ name: 'KPI 값 수동 입력', path: 'kpi-value-manual-entry' }
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Data Set',
|
|
34
|
+
path: 'data-set-list',
|
|
35
|
+
icon: 'dataset',
|
|
36
|
+
submenus: [
|
|
37
|
+
{ name: 'Data Set 목록', path: 'data-set-list' },
|
|
38
|
+
{ name: 'Data Key 목록', path: 'data-key-set-list' },
|
|
39
|
+
{ name: 'Data Sample 값 수동 입력', path: 'data-entry-list' },
|
|
40
|
+
{ name: 'Data Sample 목록', path: 'data-sample-list' },
|
|
41
|
+
{ name: 'Data Summary 목록', path: 'data-summary-list' }
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: '시스템연계',
|
|
46
|
+
path: 'project-schedule-list',
|
|
47
|
+
icon: 'hub',
|
|
48
|
+
submenus: [
|
|
49
|
+
{ name: '연계 현황', path: 'integration-status' },
|
|
50
|
+
{ name: '연계 설정', path: 'connection' },
|
|
51
|
+
{ name: '연계 시나리오', path: 'scenario' }
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: '셋팅',
|
|
56
|
+
path: 'project-setting-list',
|
|
57
|
+
icon: 'settings',
|
|
58
|
+
submenus: [
|
|
59
|
+
{ name: '사용자 관리', path: 'user-management' },
|
|
60
|
+
{ name: '환경 설정', path: 'env-setting' }
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
];
|
|
64
|
+
this.openedMenuIndex = null;
|
|
65
|
+
this.submenuHeight = null;
|
|
66
|
+
this._closeSubmenu = () => {
|
|
67
|
+
this.openedMenuIndex = null;
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
render() {
|
|
71
|
+
var _a;
|
|
72
|
+
var page = this.page || '';
|
|
73
|
+
return html `
|
|
74
|
+
<ul>
|
|
75
|
+
${this.menus.map((menu, i) => html `
|
|
76
|
+
<li
|
|
77
|
+
@click=${(e) => {
|
|
78
|
+
e.stopPropagation();
|
|
79
|
+
this.openedMenuIndex = i;
|
|
80
|
+
this._setSubmenuHeight();
|
|
81
|
+
}}
|
|
82
|
+
>
|
|
83
|
+
<a href="javascript:void(0)" ?active=${!!~page.indexOf(menu.path)}>
|
|
84
|
+
<md-icon>${menu.icon}</md-icon>
|
|
85
|
+
<div>${menu.name}</div>
|
|
86
|
+
</a>
|
|
87
|
+
</li>
|
|
88
|
+
`)}
|
|
89
|
+
</ul>
|
|
90
|
+
${this.openedMenuIndex !== null
|
|
91
|
+
? html `
|
|
92
|
+
<div class="submenu-popup" @click=${(e) => e.stopPropagation()}>
|
|
93
|
+
<ul>
|
|
94
|
+
${(_a = this.menus[this.openedMenuIndex].submenus) === null || _a === void 0 ? void 0 : _a.map(sub => html `<li><a href=${sub.path}>${sub.name}</a></li>`)}
|
|
95
|
+
</ul>
|
|
96
|
+
</div>
|
|
97
|
+
`
|
|
98
|
+
: ''}
|
|
99
|
+
`;
|
|
100
|
+
}
|
|
101
|
+
firstUpdated() {
|
|
102
|
+
this._setSubmenuHeight();
|
|
103
|
+
}
|
|
104
|
+
updated(changedProps) {
|
|
105
|
+
if (changedProps.has('openedMenuIndex')) {
|
|
106
|
+
this._setSubmenuHeight();
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
_setSubmenuHeight() {
|
|
110
|
+
if (this.menuUl) {
|
|
111
|
+
this.submenuHeight = this.menuUl.clientHeight;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
connectedCallback() {
|
|
115
|
+
super.connectedCallback();
|
|
116
|
+
window.addEventListener('click', this._closeSubmenu);
|
|
117
|
+
}
|
|
118
|
+
disconnectedCallback() {
|
|
119
|
+
window.removeEventListener('click', this._closeSubmenu);
|
|
120
|
+
super.disconnectedCallback();
|
|
121
|
+
}
|
|
122
|
+
stateChanged(state) {
|
|
123
|
+
this.page = state.route.page;
|
|
124
|
+
this.width = state.layout.width;
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
MenuTools.styles = [
|
|
128
|
+
css `
|
|
129
|
+
:host {
|
|
130
|
+
position: relative;
|
|
131
|
+
display: flex;
|
|
132
|
+
background-color: var(--secondary-color);
|
|
133
|
+
|
|
134
|
+
/* for narrow mode */
|
|
135
|
+
flex-direction: column;
|
|
136
|
+
width: 100%;
|
|
137
|
+
--menu-tools-color: rgba(255, 255, 255, 0.9);
|
|
138
|
+
--menu-tools-active-color: rgba(107, 178, 249, 1);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
:host([width='WIDE']) {
|
|
142
|
+
/* for wide mode */
|
|
143
|
+
flex-direction: row;
|
|
144
|
+
width: initial;
|
|
145
|
+
height: 100%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
ul {
|
|
149
|
+
display: flex;
|
|
150
|
+
flex-direction: row;
|
|
151
|
+
|
|
152
|
+
margin: auto;
|
|
153
|
+
padding: 0;
|
|
154
|
+
list-style: none;
|
|
155
|
+
height: 100%;
|
|
156
|
+
overflow: none;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
:host([width='NARROW']) ul {
|
|
160
|
+
width: 100%;
|
|
161
|
+
justify-content: space-around;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:host([width='WIDE']) ul {
|
|
165
|
+
flex-direction: column;
|
|
166
|
+
}
|
|
167
|
+
:host([width='NARROW']) li {
|
|
168
|
+
flex: 1;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:host([width='WIDE']) li {
|
|
172
|
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
173
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
a {
|
|
177
|
+
display: flex;
|
|
178
|
+
flex-direction: column;
|
|
179
|
+
padding: 8px 8px 4px 8px;
|
|
180
|
+
opacity: 0.7;
|
|
181
|
+
align-items: center;
|
|
182
|
+
text-align: center;
|
|
183
|
+
text-decoration: none;
|
|
184
|
+
text-transform: capitalize;
|
|
185
|
+
color: var(--menu-tools-color);
|
|
186
|
+
border-left: 2px solid transparent;
|
|
187
|
+
|
|
188
|
+
--md-icon-size: 36px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
a[active] {
|
|
192
|
+
opacity: 1;
|
|
193
|
+
color: var(--menu-tools-active-color);
|
|
194
|
+
font-weight: bold;
|
|
195
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
196
|
+
border-left: 2px solid var(--menu-tools-active-color);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
:host([width='NARROW']) a {
|
|
200
|
+
padding: 0px 0px 5px 0px;
|
|
201
|
+
opacity: 0.8;
|
|
202
|
+
color: var(--menu-tools-color);
|
|
203
|
+
border-left: none;
|
|
204
|
+
border-top: 2px solid transparent;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
:host([width='NARROW']) a[active] {
|
|
208
|
+
opacity: 1;
|
|
209
|
+
color: var(--menu-tools-active-color);
|
|
210
|
+
font-weight: bold;
|
|
211
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
212
|
+
border-left: none;
|
|
213
|
+
border-top: 2px solid var(--menu-tools-active-color);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
img {
|
|
217
|
+
display: block;
|
|
218
|
+
width: 35px;
|
|
219
|
+
padding: 5px 10px 0px 10px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
:host([width='NARROW']) img {
|
|
223
|
+
padding: 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
div {
|
|
227
|
+
font-size: 0.6em;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.submenu-popup {
|
|
231
|
+
position: absolute;
|
|
232
|
+
left: 60px; /* 탑메뉴 width */
|
|
233
|
+
top: 0;
|
|
234
|
+
width: 220px;
|
|
235
|
+
height: 100%;
|
|
236
|
+
background: #222;
|
|
237
|
+
color: #fff;
|
|
238
|
+
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
|
|
239
|
+
z-index: 1000;
|
|
240
|
+
display: flex;
|
|
241
|
+
flex-direction: column;
|
|
242
|
+
border-radius: 0 10px 10px 0;
|
|
243
|
+
}
|
|
244
|
+
.submenu-popup ul {
|
|
245
|
+
list-style: none;
|
|
246
|
+
margin: 0;
|
|
247
|
+
padding: 0;
|
|
248
|
+
}
|
|
249
|
+
.submenu-popup li {
|
|
250
|
+
padding: 16px 24px;
|
|
251
|
+
font-size: 1.1em;
|
|
252
|
+
}
|
|
253
|
+
.submenu-popup li a {
|
|
254
|
+
color: #fff;
|
|
255
|
+
text-decoration: none;
|
|
256
|
+
display: block;
|
|
257
|
+
border-radius: 4px;
|
|
258
|
+
transition: background 0.2s;
|
|
259
|
+
}
|
|
260
|
+
.submenu-popup li a:hover {
|
|
261
|
+
background: #333;
|
|
262
|
+
}
|
|
263
|
+
`
|
|
264
|
+
];
|
|
265
|
+
__decorate([
|
|
266
|
+
property({ type: String }),
|
|
267
|
+
__metadata("design:type", String)
|
|
268
|
+
], MenuTools.prototype, "page", void 0);
|
|
269
|
+
__decorate([
|
|
270
|
+
property({ type: String, reflect: true }),
|
|
271
|
+
__metadata("design:type", String)
|
|
272
|
+
], MenuTools.prototype, "width", void 0);
|
|
273
|
+
__decorate([
|
|
274
|
+
property({ type: Number }),
|
|
275
|
+
__metadata("design:type", Object)
|
|
276
|
+
], MenuTools.prototype, "openedMenuIndex", void 0);
|
|
277
|
+
__decorate([
|
|
278
|
+
query('ul'),
|
|
279
|
+
__metadata("design:type", HTMLUListElement)
|
|
280
|
+
], MenuTools.prototype, "menuUl", void 0);
|
|
281
|
+
__decorate([
|
|
282
|
+
property({ type: Number }),
|
|
283
|
+
__metadata("design:type", Object)
|
|
284
|
+
], MenuTools.prototype, "submenuHeight", void 0);
|
|
285
|
+
MenuTools = __decorate([
|
|
286
|
+
customElement('menu-tools')
|
|
287
|
+
], MenuTools);
|
|
288
|
+
export { MenuTools };
|
|
289
|
+
//# sourceMappingURL=menu-tools.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menu-tools.js","sourceRoot":"","sources":["../../client/viewparts/menu-tools.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/web/icon/icon.js'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\n\nimport { connect } from 'pwa-helpers'\n\nimport { store } from '@operato/shell'\n\n// import { ICONS_HOME, ICONS_KPIS, ICONS_INTEGRATION, ICONS_SETTING } from '../icons/menu-icons'\n\n@customElement('menu-tools')\nexport class MenuTools extends connect(store)(LitElement) {\n static styles = [\n css`\n :host {\n position: relative;\n display: flex;\n background-color: var(--secondary-color);\n\n /* for narrow mode */\n flex-direction: column;\n width: 100%;\n --menu-tools-color: rgba(255, 255, 255, 0.9);\n --menu-tools-active-color: rgba(107, 178, 249, 1);\n }\n\n :host([width='WIDE']) {\n /* for wide mode */\n flex-direction: row;\n width: initial;\n height: 100%;\n }\n\n ul {\n display: flex;\n flex-direction: row;\n\n margin: auto;\n padding: 0;\n list-style: none;\n height: 100%;\n overflow: none;\n }\n\n :host([width='NARROW']) ul {\n width: 100%;\n justify-content: space-around;\n }\n\n :host([width='WIDE']) ul {\n flex-direction: column;\n }\n :host([width='NARROW']) li {\n flex: 1;\n }\n\n :host([width='WIDE']) li {\n border-top: 1px solid rgba(255, 255, 255, 0.1);\n border-bottom: 1px solid rgba(0, 0, 0, 0.1);\n }\n\n a {\n display: flex;\n flex-direction: column;\n padding: 8px 8px 4px 8px;\n opacity: 0.7;\n align-items: center;\n text-align: center;\n text-decoration: none;\n text-transform: capitalize;\n color: var(--menu-tools-color);\n border-left: 2px solid transparent;\n\n --md-icon-size: 36px;\n }\n\n a[active] {\n opacity: 1;\n color: var(--menu-tools-active-color);\n font-weight: bold;\n background-color: rgba(0, 0, 0, 0.15);\n border-left: 2px solid var(--menu-tools-active-color);\n }\n\n :host([width='NARROW']) a {\n padding: 0px 0px 5px 0px;\n opacity: 0.8;\n color: var(--menu-tools-color);\n border-left: none;\n border-top: 2px solid transparent;\n }\n\n :host([width='NARROW']) a[active] {\n opacity: 1;\n color: var(--menu-tools-active-color);\n font-weight: bold;\n background-color: rgba(0, 0, 0, 0.15);\n border-left: none;\n border-top: 2px solid var(--menu-tools-active-color);\n }\n\n img {\n display: block;\n width: 35px;\n padding: 5px 10px 0px 10px;\n }\n\n :host([width='NARROW']) img {\n padding: 0;\n }\n\n div {\n font-size: 0.6em;\n }\n\n .submenu-popup {\n position: absolute;\n left: 60px; /* 탑메뉴 width */\n top: 0;\n width: 220px;\n height: 100%;\n background: #222;\n color: #fff;\n box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);\n z-index: 1000;\n display: flex;\n flex-direction: column;\n border-radius: 0 10px 10px 0;\n }\n .submenu-popup ul {\n list-style: none;\n margin: 0;\n padding: 0;\n }\n .submenu-popup li {\n padding: 16px 24px;\n font-size: 1.1em;\n }\n .submenu-popup li a {\n color: #fff;\n text-decoration: none;\n display: block;\n border-radius: 4px;\n transition: background 0.2s;\n }\n .submenu-popup li a:hover {\n background: #333;\n }\n `\n ]\n\n @property({ type: String }) page?: string\n @property({ type: String, reflect: true }) width?: string\n\n private menus: { name: string; path: string; icon: string; submenus?: { name: string; path: string }[] }[] = [\n {\n name: '홈',\n path: 'project-list',\n icon: 'home'\n },\n {\n name: 'KPI',\n path: 'kpi-overview',\n icon: 'bar_chart',\n submenus: [\n { name: 'KPI 개요', path: 'kpi-overview' },\n { name: 'KPI 성과판', path: 'kpi-dashboard' },\n { name: 'KPI 카테고리 목록', path: 'kpi-category-list' },\n { name: 'KPI 목록', path: 'kpi-list' },\n { name: 'KPI 등급 목록', path: 'kpi-grade-list' },\n { name: 'KPI 메트릭 목록', path: 'kpi-metric-list' },\n { name: 'KPI 값 목록', path: 'kpi-value-list' },\n { name: 'KPI 값 수동 입력', path: 'kpi-value-manual-entry' }\n ]\n },\n {\n name: 'Data Set',\n path: 'data-set-list',\n icon: 'dataset',\n submenus: [\n { name: 'Data Set 목록', path: 'data-set-list' },\n { name: 'Data Key 목록', path: 'data-key-set-list' },\n { name: 'Data Sample 값 수동 입력', path: 'data-entry-list' },\n { name: 'Data Sample 목록', path: 'data-sample-list' },\n { name: 'Data Summary 목록', path: 'data-summary-list' }\n ]\n },\n {\n name: '시스템연계',\n path: 'project-schedule-list',\n icon: 'hub',\n submenus: [\n { name: '연계 현황', path: 'integration-status' },\n { name: '연계 설정', path: 'connection' },\n { name: '연계 시나리오', path: 'scenario' }\n ]\n },\n {\n name: '셋팅',\n path: 'project-setting-list',\n icon: 'settings',\n submenus: [\n { name: '사용자 관리', path: 'user-management' },\n { name: '환경 설정', path: 'env-setting' }\n ]\n }\n ]\n\n @property({ type: Number }) openedMenuIndex: number | null = null\n @query('ul') menuUl!: HTMLUListElement\n @property({ type: Number }) submenuHeight: number | null = null\n\n render() {\n var page = this.page || ''\n return html`\n <ul>\n ${this.menus.map(\n (menu, i) => html`\n <li\n @click=${(e: Event) => {\n e.stopPropagation()\n this.openedMenuIndex = i\n this._setSubmenuHeight()\n }}\n >\n <a href=\"javascript:void(0)\" ?active=${!!~page.indexOf(menu.path)}>\n <md-icon>${menu.icon}</md-icon>\n <div>${menu.name}</div>\n </a>\n </li>\n `\n )}\n </ul>\n ${this.openedMenuIndex !== null\n ? html`\n <div class=\"submenu-popup\" @click=${(e: Event) => e.stopPropagation()}>\n <ul>\n ${this.menus[this.openedMenuIndex].submenus?.map(sub => html`<li><a href=${sub.path}>${sub.name}</a></li>`)}\n </ul>\n </div>\n `\n : ''}\n `\n }\n\n firstUpdated() {\n this._setSubmenuHeight()\n }\n\n updated(changedProps) {\n if (changedProps.has('openedMenuIndex')) {\n this._setSubmenuHeight()\n }\n }\n\n _setSubmenuHeight() {\n if (this.menuUl) {\n this.submenuHeight = this.menuUl.clientHeight\n }\n }\n\n connectedCallback() {\n super.connectedCallback()\n window.addEventListener('click', this._closeSubmenu)\n }\n disconnectedCallback() {\n window.removeEventListener('click', this._closeSubmenu)\n super.disconnectedCallback()\n }\n private _closeSubmenu = () => {\n this.openedMenuIndex = null\n }\n\n stateChanged(state) {\n this.page = state.route.page\n this.width = state.layout.width\n }\n}\n"]}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { LitElement, html, css } from 'lit';
|
|
3
|
+
import { customElement } from 'lit/decorators.js';
|
|
4
|
+
const userIcon = new URL('../../assets/images/user.png', import.meta.url).href;
|
|
5
|
+
let UserCircle = class UserCircle extends LitElement {
|
|
6
|
+
render() {
|
|
7
|
+
return html ` <img src=${userIcon} class="user" /> `;
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
UserCircle.styles = [
|
|
11
|
+
css `
|
|
12
|
+
img {
|
|
13
|
+
display: block;
|
|
14
|
+
width: 36px;
|
|
15
|
+
height: 36px;
|
|
16
|
+
border-radius: 50%;
|
|
17
|
+
|
|
18
|
+
object-fit: cover;
|
|
19
|
+
}
|
|
20
|
+
`
|
|
21
|
+
];
|
|
22
|
+
UserCircle = __decorate([
|
|
23
|
+
customElement('user-circle')
|
|
24
|
+
], UserCircle);
|
|
25
|
+
export { UserCircle };
|
|
26
|
+
//# sourceMappingURL=user-circle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user-circle.js","sourceRoot":"","sources":["../../client/viewparts/user-circle.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAEjD,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,8BAA8B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAGvE,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,UAAU;IAcxC,MAAM;QACJ,OAAO,IAAI,CAAA,aAAa,QAAQ,mBAAmB,CAAA;IACrD,CAAC;;AAfM,iBAAM,GAAG;IACd,GAAG,CAAA;;;;;;;;;KASF;CACF,AAXY,CAWZ;AAZU,UAAU;IADtB,aAAa,CAAC,aAAa,CAAC;GAChB,UAAU,CAiBtB","sourcesContent":["import { LitElement, html, css } from 'lit'\nimport { customElement } from 'lit/decorators.js'\n\nconst userIcon = new URL('../../assets/images/user.png', import.meta.url).href\n\n@customElement('user-circle')\nexport class UserCircle extends LitElement {\n static styles = [\n css`\n img {\n display: block;\n width: 36px;\n height: 36px;\n border-radius: 50%;\n\n object-fit: cover;\n }\n `\n ]\n\n render() {\n return html` <img src=${userIcon} class=\"user\" /> `\n }\n}\n"]}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../server/index.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[53,98],[53,98,151],[53,98,153,156],[53,95,98],[53,97,98],[98],[53,98,103,133],[53,98,99,104,110,111,118,130,141],[53,98,99,100,110,118],[53,98,101,142],[53,98,102,103,111,119],[53,98,103,130,138],[53,98,104,106,110,118],[53,97,98,105],[53,98,106,107],[53,98,108,110],[53,97,98,110],[53,98,110,111,112,130,141],[53,98,110,111,112,125,130,133],[53,93,98],[53,93,98,106,110,113,118,130,141],[53,98,110,111,113,114,118,130,138,141],[53,98,113,115,130,138,141],[51,52,53,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[53,98,110,116],[53,98,117,141],[53,98,106,110,118,130],[53,98,119],[53,98,120],[53,97,98,121],[53,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[53,98,123],[53,98,124],[53,98,110,125,126],[53,98,125,127,142,144],[53,98,110,130,131,133],[53,98,132,133],[53,98,130,131],[53,98,133],[53,98,134],[53,95,98,130,135],[53,98,110,136,137],[53,98,136,137],[53,98,103,118,130,138],[53,98,139],[53,98,118,140],[53,98,113,124,141],[53,98,103,142],[53,98,130,143],[53,98,117,144],[53,98,145],[53,98,110,112,121,130,133,141,143,144,146],[53,98,130,147],[53,98,149,155],[53,98,153],[53,98,150,154],[53,98,152],[53,63,67,98,141],[53,63,98,130,141],[53,98,130],[53,58,98],[53,60,63,98,141],[53,98,118,138],[53,98,148],[53,58,98,148],[53,60,63,98,118,141],[53,55,56,57,59,62,98,110,130,141],[53,63,71,98],[53,56,61,98],[53,63,87,88,98],[53,56,59,63,98,133,141,148],[53,63,98],[53,55,98],[53,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,98],[53,63,80,83,98,106],[53,63,71,72,73,98],[53,61,63,72,74,98],[53,62,98],[53,56,58,63,98],[53,63,67,72,74,98],[53,67,98],[53,61,63,66,98,141],[53,56,60,63,71,98],[53,63,80,98],[53,58,63,87,98,133,146,148]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","impliedFormat":1},{"version":"0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","impliedFormat":1},{"version":"b0a84d9348601dbc217017c0721d6064c3b1af9b392663348ba146fdae0c7afd","impliedFormat":1},{"version":"161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb","impliedFormat":1},{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","impliedFormat":1},{"version":"d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e","impliedFormat":1},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[50],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":false,"target":4,"useDefineForClassFields":false},"referencedMap":[[149,1],[152,2],[151,1],[157,3],[95,4],[96,4],[97,5],[53,6],[98,7],[99,8],[100,9],[51,1],[101,10],[102,11],[103,12],[104,13],[105,14],[106,15],[107,15],[109,1],[108,16],[110,17],[111,18],[112,19],[94,20],[52,1],[113,21],[114,22],[115,23],[148,24],[116,25],[117,26],[118,27],[119,28],[120,29],[121,30],[122,31],[123,32],[124,33],[125,34],[126,34],[127,35],[128,1],[129,1],[130,36],[132,37],[131,38],[133,39],[134,40],[135,41],[136,42],[137,43],[138,44],[139,45],[140,46],[141,47],[142,48],[143,49],[144,50],[145,51],[146,52],[147,53],[54,1],[150,1],[156,54],[154,55],[155,56],[153,57],[48,1],[49,1],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[20,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[1,1],[46,1],[47,1],[71,58],[82,59],[69,58],[83,60],[92,61],[61,62],[60,63],[91,64],[86,65],[90,66],[63,67],[79,68],[62,69],[89,70],[58,71],[59,65],[64,72],[65,1],[70,62],[68,72],[56,73],[93,74],[84,75],[74,76],[73,72],[75,77],[77,78],[72,79],[76,80],[87,64],[66,81],[67,82],[78,83],[57,60],[81,84],[80,72],[85,1],[55,1],[88,85],[50,1]],"version":"5.8.3"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
openapi: 3.0.0
|
|
2
|
+
info:
|
|
3
|
+
description: >
|
|
4
|
+
For the latest release information please check our [release notes](https://developer.dssp.com/release_notes).
|
|
5
|
+
The Digital Digital KPI Platform API exposes integrations endpoint and related functions.
|
|
6
|
+
version: 'unstable'
|
|
7
|
+
title: 'Digital Digital KPI Platform'
|
|
8
|
+
termsOfService: 'https://dssp.com/terms/'
|
|
9
|
+
contact:
|
|
10
|
+
email: 'heartyoh@hatiolab.com'
|
|
11
|
+
license:
|
|
12
|
+
name: MIT
|
|
13
|
+
url: http://mit-license.org/
|
|
14
|
+
tags:
|
|
15
|
+
- name: 'dssp'
|
|
16
|
+
description: 'API for read, create and update operato-haccps'
|
|
17
|
+
schemes:
|
|
18
|
+
- 'https'
|
|
19
|
+
- 'http'
|
|
20
|
+
servers:
|
|
21
|
+
- url: '/api/unstable'
|
|
22
|
+
|
|
23
|
+
components:
|
|
24
|
+
securitySchemes:
|
|
25
|
+
basicAuth:
|
|
26
|
+
type: http
|
|
27
|
+
scheme: basic
|
|
28
|
+
bearerAuth:
|
|
29
|
+
type: http
|
|
30
|
+
scheme: bearer
|
|
31
|
+
|
|
32
|
+
security:
|
|
33
|
+
- basicAuth: []
|
|
34
|
+
- bearerAuth: []
|
|
35
|
+
responses:
|
|
36
|
+
UnauthorizedError:
|
|
37
|
+
description: Unauthorized
|
|
38
|
+
|
|
39
|
+
externalDocs:
|
|
40
|
+
description: 'Find out about our release notes'
|
|
41
|
+
url: 'https://developer.dssp.com/release_notes'
|
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dssp/dkpi",
|
|
3
|
+
"version": "1.0.0-alpha.10",
|
|
4
|
+
"main": "dist-server/index.js",
|
|
5
|
+
"browser": "dist-client/index.js",
|
|
6
|
+
"things-factory": true,
|
|
7
|
+
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
8
|
+
"description": "Foundation of the Future: Digitalizing Supervision for Quality Construction",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public",
|
|
11
|
+
"@dssp:registry": "https://registry.npmjs.org"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/hatiolab/dssp.git",
|
|
16
|
+
"directory": "packages/dkpi"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"serve": "things-factory dkpi",
|
|
20
|
+
"serve:dev": "npm run build:server && concurrently -k -r \"npm run build:client:watch\" \"things-factory-dev dkpi\"",
|
|
21
|
+
"copy:files": "copyfiles -e \"./client/**/*.{ts,js,json}\" -u 1 \"./client/**/*\" dist-client",
|
|
22
|
+
"build": "npm run build:server && npm run build:client",
|
|
23
|
+
"build:client": "npm run clean:client && npm run copy:files && tsc --p ./client/tsconfig.json",
|
|
24
|
+
"build:client:watch": "npm run copy:files && tsc --p ./client/tsconfig.json --watch --preserveWatchOutput",
|
|
25
|
+
"build:server": "npm run clean:server && tsc --p ./server/tsconfig.json",
|
|
26
|
+
"build:app": "npm run clean:app && webpack --config ../../node_modules/@things-factory/builder/webpack.config.js",
|
|
27
|
+
"clean:server": "rimraf dist-server",
|
|
28
|
+
"clean:client": "rimraf dist-client",
|
|
29
|
+
"clean:app": "rimraf dist-app",
|
|
30
|
+
"clean": "npm run clean:server && npm run clean:client",
|
|
31
|
+
"migration": "npm run build:server && things-factory-migration",
|
|
32
|
+
"migration:privileges": "npm run build:server && things-factory-migration-privileges",
|
|
33
|
+
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create ./server/migrations/migration",
|
|
34
|
+
"migration:revert": "things-factory-migration --undo",
|
|
35
|
+
"stop:dev": "kill $(lsof -t -i:3000,3001)",
|
|
36
|
+
"stop": "things-factory-stop dkpi",
|
|
37
|
+
"docker": "npm run build:app && things-factory-dockerize hatiolab/dkpi:latest hatiolab/dkpi:$npm_package_version linux/amd64",
|
|
38
|
+
"docker:run": "docker run --platform linux/amd64 -p 4000:3000 hatiolab/dkpi:latest",
|
|
39
|
+
"docker:push": "docker image push hatiolab/dkpi:latest && docker image push hatiolab/dkpi:$npm_package_version"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@dssp/project": "^1.0.0-alpha.9",
|
|
43
|
+
"@material/web": "^2.1.0",
|
|
44
|
+
"@operato/chart": "^9.0.0",
|
|
45
|
+
"@operato/gantt": "^9.0.0",
|
|
46
|
+
"@operato/scene-auth": "^9.0.0",
|
|
47
|
+
"@operato/scene-chartjs": "^9.0.0",
|
|
48
|
+
"@operato/scene-clock": "^9.0.0",
|
|
49
|
+
"@operato/scene-data-transform": "^9.0.0",
|
|
50
|
+
"@operato/scene-form": "^9.0.0",
|
|
51
|
+
"@operato/scene-gauge": "^9.0.0",
|
|
52
|
+
"@operato/scene-grist": "^9.0.0",
|
|
53
|
+
"@operato/scene-half-roundrect": "^9.0.0",
|
|
54
|
+
"@operato/scene-image-slider": "^9.0.0",
|
|
55
|
+
"@operato/scene-integration": "^9.0.0",
|
|
56
|
+
"@operato/scene-legend": "^9.0.0",
|
|
57
|
+
"@operato/scene-news-ticker": "^9.0.0",
|
|
58
|
+
"@operato/scene-progressbar": "^9.0.0",
|
|
59
|
+
"@operato/scene-random": "^9.0.0",
|
|
60
|
+
"@operato/scene-switch": "^9.0.0",
|
|
61
|
+
"@operato/scene-tab": "^9.0.0",
|
|
62
|
+
"@operato/scene-table": "^9.0.0",
|
|
63
|
+
"@operato/scene-timer": "^9.0.0",
|
|
64
|
+
"@things-factory/api": "^9.0.0",
|
|
65
|
+
"@things-factory/apptool-base": "^9.0.0",
|
|
66
|
+
"@things-factory/apptool-ui": "^9.0.0",
|
|
67
|
+
"@things-factory/auth-base": "^9.0.0",
|
|
68
|
+
"@things-factory/auth-ui": "^9.0.0",
|
|
69
|
+
"@things-factory/board-service": "^9.0.0",
|
|
70
|
+
"@things-factory/board-ui": "^9.0.0",
|
|
71
|
+
"@things-factory/code-ui": "^9.0.0",
|
|
72
|
+
"@things-factory/context-ui": "^9.0.0",
|
|
73
|
+
"@things-factory/dashboard": "^9.0.0",
|
|
74
|
+
"@things-factory/dataset": "^9.0.0",
|
|
75
|
+
"@things-factory/evaluation": "^9.0.0",
|
|
76
|
+
"@things-factory/export-ui": "^9.0.0",
|
|
77
|
+
"@things-factory/help": "^9.0.0",
|
|
78
|
+
"@things-factory/i18n-base": "^9.0.0",
|
|
79
|
+
"@things-factory/integration-base": "^9.0.0",
|
|
80
|
+
"@things-factory/integration-ui": "^9.0.0",
|
|
81
|
+
"@things-factory/kpi": "^9.0.0",
|
|
82
|
+
"@things-factory/lite-menu": "^9.0.0",
|
|
83
|
+
"@things-factory/more-base": "^9.0.0",
|
|
84
|
+
"@things-factory/more-ui": "^9.0.0",
|
|
85
|
+
"@things-factory/notification": "^9.0.0",
|
|
86
|
+
"@things-factory/resource-ui": "^9.0.0",
|
|
87
|
+
"@things-factory/setting-base": "^9.0.0",
|
|
88
|
+
"@things-factory/setting-ui": "^9.0.0",
|
|
89
|
+
"@things-factory/shell": "^9.0.0",
|
|
90
|
+
"@things-factory/system": "^9.0.0",
|
|
91
|
+
"puppeteer": "^24.5.0"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"@things-factory/builder": "^9.0.0"
|
|
95
|
+
},
|
|
96
|
+
"gitHead": "7322fc8da4c5c286a5956e48dd9ef31a18cba0d1"
|
|
97
|
+
}
|