@things-factory/dataset 4.3.2 → 4.4.0-alpha.0
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/dist-server/controllers/create-data-sample.js +133 -0
- package/dist-server/controllers/create-data-sample.js.map +1 -0
- package/dist-server/controllers/data-use-case.js +57 -0
- package/dist-server/controllers/data-use-case.js.map +1 -0
- package/dist-server/index.js +5 -1
- package/dist-server/index.js.map +1 -1
- package/dist-server/service/data-ooc/data-ooc-mutation.js +92 -0
- package/dist-server/service/data-ooc/data-ooc-mutation.js.map +1 -0
- package/dist-server/service/data-ooc/data-ooc-query.js +120 -0
- package/dist-server/service/data-ooc/data-ooc-query.js.map +1 -0
- package/dist-server/service/data-ooc/data-ooc-subscription.js +65 -0
- package/dist-server/service/data-ooc/data-ooc-subscription.js.map +1 -0
- package/dist-server/service/data-ooc/data-ooc-type.js +107 -0
- package/dist-server/service/data-ooc/data-ooc-type.js.map +1 -0
- package/dist-server/service/data-ooc/data-ooc.js +237 -0
- package/dist-server/service/data-ooc/data-ooc.js.map +1 -0
- package/dist-server/service/data-ooc/index.js +10 -0
- package/dist-server/service/data-ooc/index.js.map +1 -0
- package/dist-server/service/data-sensor/data-sensor-mutation.js +120 -0
- package/dist-server/service/data-sensor/data-sensor-mutation.js.map +1 -0
- package/dist-server/service/data-sensor/data-sensor-query.js +113 -0
- package/dist-server/service/data-sensor/data-sensor-query.js.map +1 -0
- package/dist-server/service/data-sensor/data-sensor-type.js +147 -0
- package/dist-server/service/data-sensor/data-sensor-type.js.map +1 -0
- package/dist-server/service/data-sensor/data-sensor.js +168 -0
- package/dist-server/service/data-sensor/data-sensor.js.map +1 -0
- package/dist-server/service/data-sensor/index.js +9 -0
- package/dist-server/service/data-sensor/index.js.map +1 -0
- package/dist-server/service/data-spec/data-spec-manager.js +20 -0
- package/dist-server/service/data-spec/data-spec-manager.js.map +1 -0
- package/dist-server/service/data-spec/data-spec-query.js +48 -0
- package/dist-server/service/data-spec/data-spec-query.js.map +1 -0
- package/dist-server/service/data-spec/data-spec.js +78 -0
- package/dist-server/service/data-spec/data-spec.js.map +1 -0
- package/dist-server/service/data-spec/index.js +8 -0
- package/dist-server/service/data-spec/index.js.map +1 -0
- package/dist-server/service/index.js +5 -1
- package/dist-server/service/index.js.map +1 -1
- package/package.json +4 -4
@@ -0,0 +1,237 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
|
+
};
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
|
+
};
|
11
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
13
|
+
exports.DataOoc = exports.DataOocStatus = void 0;
|
14
|
+
const type_graphql_1 = require("type-graphql");
|
15
|
+
const typeorm_1 = require("typeorm");
|
16
|
+
const auth_base_1 = require("@things-factory/auth-base");
|
17
|
+
const env_1 = require("@things-factory/env");
|
18
|
+
const shell_1 = require("@things-factory/shell");
|
19
|
+
const data_sample_1 = require("../data-sample/data-sample");
|
20
|
+
const data_set_1 = require("../data-set/data-set");
|
21
|
+
const ORMCONFIG = env_1.config.get('ormconfig', {});
|
22
|
+
const DATABASE_TYPE = ORMCONFIG.type;
|
23
|
+
var DataOocStatus;
|
24
|
+
(function (DataOocStatus) {
|
25
|
+
DataOocStatus["CREATED"] = "CREATED";
|
26
|
+
DataOocStatus["REVIEWED"] = "REVIEWED";
|
27
|
+
DataOocStatus["CORRECTED"] = "CORRECTED";
|
28
|
+
})(DataOocStatus = exports.DataOocStatus || (exports.DataOocStatus = {}));
|
29
|
+
(0, type_graphql_1.registerEnumType)(DataOocStatus, {
|
30
|
+
name: 'DataOocStatus',
|
31
|
+
description: 'Out of control data corrective action process progress status'
|
32
|
+
});
|
33
|
+
let DataOoc = class DataOoc {
|
34
|
+
};
|
35
|
+
__decorate([
|
36
|
+
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
37
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.ID),
|
38
|
+
__metadata("design:type", String)
|
39
|
+
], DataOoc.prototype, "id", void 0);
|
40
|
+
__decorate([
|
41
|
+
(0, typeorm_1.ManyToOne)(type => shell_1.Domain),
|
42
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
43
|
+
__metadata("design:type", typeof (_a = typeof shell_1.Domain !== "undefined" && shell_1.Domain) === "function" ? _a : Object)
|
44
|
+
], DataOoc.prototype, "domain", void 0);
|
45
|
+
__decorate([
|
46
|
+
(0, typeorm_1.RelationId)((dataOoc) => dataOoc.domain),
|
47
|
+
__metadata("design:type", String)
|
48
|
+
], DataOoc.prototype, "domainId", void 0);
|
49
|
+
__decorate([
|
50
|
+
(0, typeorm_1.Column)(),
|
51
|
+
(0, type_graphql_1.Field)(),
|
52
|
+
__metadata("design:type", String)
|
53
|
+
], DataOoc.prototype, "name", void 0);
|
54
|
+
__decorate([
|
55
|
+
(0, typeorm_1.Column)({
|
56
|
+
nullable: true
|
57
|
+
}),
|
58
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
59
|
+
__metadata("design:type", String)
|
60
|
+
], DataOoc.prototype, "description", void 0);
|
61
|
+
__decorate([
|
62
|
+
(0, typeorm_1.ManyToOne)(type => data_set_1.DataSet),
|
63
|
+
(0, type_graphql_1.Field)(type => data_set_1.DataSet, { nullable: true }),
|
64
|
+
__metadata("design:type", data_set_1.DataSet)
|
65
|
+
], DataOoc.prototype, "dataSet", void 0);
|
66
|
+
__decorate([
|
67
|
+
(0, typeorm_1.RelationId)((dataOoc) => dataOoc.dataSet),
|
68
|
+
__metadata("design:type", String)
|
69
|
+
], DataOoc.prototype, "dataSetId", void 0);
|
70
|
+
__decorate([
|
71
|
+
(0, typeorm_1.OneToOne)(type => data_sample_1.DataSample),
|
72
|
+
(0, typeorm_1.JoinColumn)(),
|
73
|
+
(0, type_graphql_1.Field)(type => data_sample_1.DataSample, { nullable: true }),
|
74
|
+
__metadata("design:type", data_sample_1.DataSample)
|
75
|
+
], DataOoc.prototype, "dataSample", void 0);
|
76
|
+
__decorate([
|
77
|
+
(0, typeorm_1.RelationId)((dataOoc) => dataOoc.dataSample),
|
78
|
+
__metadata("design:type", String)
|
79
|
+
], DataOoc.prototype, "dataSampleId", void 0);
|
80
|
+
__decorate([
|
81
|
+
(0, typeorm_1.Column)({
|
82
|
+
nullable: true
|
83
|
+
}),
|
84
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
85
|
+
__metadata("design:type", Boolean)
|
86
|
+
], DataOoc.prototype, "ooc", void 0);
|
87
|
+
__decorate([
|
88
|
+
(0, typeorm_1.Column)({
|
89
|
+
nullable: true
|
90
|
+
}),
|
91
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
92
|
+
__metadata("design:type", Boolean)
|
93
|
+
], DataOoc.prototype, "oos", void 0);
|
94
|
+
__decorate([
|
95
|
+
(0, typeorm_1.Column)({
|
96
|
+
nullable: true
|
97
|
+
}),
|
98
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
99
|
+
__metadata("design:type", String)
|
100
|
+
], DataOoc.prototype, "state", void 0);
|
101
|
+
__decorate([
|
102
|
+
(0, typeorm_1.Column)({
|
103
|
+
nullable: true,
|
104
|
+
type: DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
|
105
|
+
? 'longtext'
|
106
|
+
: DATABASE_TYPE == 'oracle'
|
107
|
+
? 'clob'
|
108
|
+
: 'varchar'
|
109
|
+
}),
|
110
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
111
|
+
__metadata("design:type", String)
|
112
|
+
], DataOoc.prototype, "correctiveAction", void 0);
|
113
|
+
__decorate([
|
114
|
+
(0, typeorm_1.Column)({
|
115
|
+
nullable: true
|
116
|
+
}),
|
117
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
118
|
+
__metadata("design:type", String)
|
119
|
+
], DataOoc.prototype, "type", void 0);
|
120
|
+
__decorate([
|
121
|
+
(0, typeorm_1.Column)({
|
122
|
+
nullable: true
|
123
|
+
}),
|
124
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
125
|
+
__metadata("design:type", String)
|
126
|
+
], DataOoc.prototype, "useCase", void 0);
|
127
|
+
__decorate([
|
128
|
+
(0, typeorm_1.Column)('simple-json', { nullable: true }),
|
129
|
+
(0, type_graphql_1.Field)(type => shell_1.ScalarObject, { nullable: true }),
|
130
|
+
__metadata("design:type", typeof (_b = typeof shell_1.ScalarObject !== "undefined" && shell_1.ScalarObject) === "function" ? _b : Object)
|
131
|
+
], DataOoc.prototype, "partitionKeys", void 0);
|
132
|
+
__decorate([
|
133
|
+
(0, typeorm_1.Column)('simple-json', { nullable: true }),
|
134
|
+
(0, type_graphql_1.Field)(type => shell_1.ScalarObject, { nullable: true }),
|
135
|
+
__metadata("design:type", typeof (_c = typeof shell_1.ScalarObject !== "undefined" && shell_1.ScalarObject) === "function" ? _c : Object)
|
136
|
+
], DataOoc.prototype, "data", void 0);
|
137
|
+
__decorate([
|
138
|
+
(0, typeorm_1.Column)('simple-json', { nullable: true }),
|
139
|
+
(0, type_graphql_1.Field)(type => shell_1.ScalarObject, { nullable: true }),
|
140
|
+
__metadata("design:type", typeof (_d = typeof shell_1.ScalarObject !== "undefined" && shell_1.ScalarObject) === "function" ? _d : Object)
|
141
|
+
], DataOoc.prototype, "spec", void 0);
|
142
|
+
__decorate([
|
143
|
+
(0, typeorm_1.Column)('simple-json', { nullable: true }),
|
144
|
+
(0, type_graphql_1.Field)(type => shell_1.ScalarObject, { nullable: true }),
|
145
|
+
__metadata("design:type", typeof (_e = typeof shell_1.ScalarObject !== "undefined" && shell_1.ScalarObject) === "function" ? _e : Object)
|
146
|
+
], DataOoc.prototype, "history", void 0);
|
147
|
+
__decorate([
|
148
|
+
(0, typeorm_1.Column)({
|
149
|
+
nullable: true,
|
150
|
+
type: DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
|
151
|
+
? 'longtext'
|
152
|
+
: DATABASE_TYPE == 'oracle'
|
153
|
+
? 'clob'
|
154
|
+
: 'varchar'
|
155
|
+
}),
|
156
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
157
|
+
__metadata("design:type", String)
|
158
|
+
], DataOoc.prototype, "rawData", void 0);
|
159
|
+
__decorate([
|
160
|
+
(0, typeorm_1.Column)({
|
161
|
+
nullable: true
|
162
|
+
}),
|
163
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
164
|
+
__metadata("design:type", String)
|
165
|
+
], DataOoc.prototype, "source", void 0);
|
166
|
+
__decorate([
|
167
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
168
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
169
|
+
__metadata("design:type", String)
|
170
|
+
], DataOoc.prototype, "workDate", void 0);
|
171
|
+
__decorate([
|
172
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
173
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
174
|
+
__metadata("design:type", String)
|
175
|
+
], DataOoc.prototype, "workShift", void 0);
|
176
|
+
__decorate([
|
177
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
178
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
179
|
+
__metadata("design:type", Date)
|
180
|
+
], DataOoc.prototype, "collectedAt", void 0);
|
181
|
+
__decorate([
|
182
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
183
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
184
|
+
__metadata("design:type", Date)
|
185
|
+
], DataOoc.prototype, "correctedAt", void 0);
|
186
|
+
__decorate([
|
187
|
+
(0, typeorm_1.CreateDateColumn)(),
|
188
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
189
|
+
__metadata("design:type", Date)
|
190
|
+
], DataOoc.prototype, "createdAt", void 0);
|
191
|
+
__decorate([
|
192
|
+
(0, typeorm_1.UpdateDateColumn)(),
|
193
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
194
|
+
__metadata("design:type", Date)
|
195
|
+
], DataOoc.prototype, "updatedAt", void 0);
|
196
|
+
__decorate([
|
197
|
+
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
198
|
+
nullable: true
|
199
|
+
}),
|
200
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
201
|
+
__metadata("design:type", typeof (_f = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _f : Object)
|
202
|
+
], DataOoc.prototype, "corrector", void 0);
|
203
|
+
__decorate([
|
204
|
+
(0, typeorm_1.RelationId)((dataOoc) => dataOoc.corrector),
|
205
|
+
__metadata("design:type", String)
|
206
|
+
], DataOoc.prototype, "correctorId", void 0);
|
207
|
+
__decorate([
|
208
|
+
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
209
|
+
nullable: true
|
210
|
+
}),
|
211
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
212
|
+
__metadata("design:type", typeof (_g = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _g : Object)
|
213
|
+
], DataOoc.prototype, "creator", void 0);
|
214
|
+
__decorate([
|
215
|
+
(0, typeorm_1.RelationId)((dataOoc) => dataOoc.creator),
|
216
|
+
__metadata("design:type", String)
|
217
|
+
], DataOoc.prototype, "creatorId", void 0);
|
218
|
+
__decorate([
|
219
|
+
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
220
|
+
nullable: true
|
221
|
+
}),
|
222
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
223
|
+
__metadata("design:type", typeof (_h = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _h : Object)
|
224
|
+
], DataOoc.prototype, "updater", void 0);
|
225
|
+
__decorate([
|
226
|
+
(0, typeorm_1.RelationId)((dataOoc) => dataOoc.creator),
|
227
|
+
__metadata("design:type", String)
|
228
|
+
], DataOoc.prototype, "updaterId", void 0);
|
229
|
+
DataOoc = __decorate([
|
230
|
+
(0, typeorm_1.Entity)(),
|
231
|
+
(0, typeorm_1.Index)('ix_data_ooc_0', (dataOoc) => [dataOoc.domain, dataOoc.dataSet], { unique: false }),
|
232
|
+
(0, typeorm_1.Index)('ix_data_ooc_1', (dataOoc) => [dataOoc.domain, dataOoc.dataSample], { unique: true }),
|
233
|
+
(0, typeorm_1.Index)('ix_data_ooc_2', (dataOoc) => [dataOoc.domain, dataOoc.collectedAt], { unique: false }),
|
234
|
+
(0, type_graphql_1.ObjectType)({ description: 'Entity for Out of control data' })
|
235
|
+
], DataOoc);
|
236
|
+
exports.DataOoc = DataOoc;
|
237
|
+
//# sourceMappingURL=data-ooc.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"data-ooc.js","sourceRoot":"","sources":["../../../server/service/data-ooc/data-ooc.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.resolvers = exports.entities = void 0;
|
4
|
+
const data_ooc_1 = require("./data-ooc");
|
5
|
+
const data_ooc_mutation_1 = require("./data-ooc-mutation");
|
6
|
+
const data_ooc_query_1 = require("./data-ooc-query");
|
7
|
+
const data_ooc_subscription_1 = require("./data-ooc-subscription");
|
8
|
+
exports.entities = [data_ooc_1.DataOoc];
|
9
|
+
exports.resolvers = [data_ooc_query_1.DataOocQuery, data_ooc_mutation_1.DataOocMutation, data_ooc_subscription_1.DataOocSubscription];
|
10
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/service/data-ooc/index.ts"],"names":[],"mappings":";;;AAAA,yCAAoC;AACpC,2DAAqD;AACrD,qDAA+C;AAC/C,mEAA6D;AAEhD,QAAA,QAAQ,GAAG,CAAC,kBAAO,CAAC,CAAA;AACpB,QAAA,SAAS,GAAG,CAAC,6BAAY,EAAE,mCAAe,EAAE,2CAAmB,CAAC,CAAA"}
|
@@ -0,0 +1,120 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
|
+
};
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
|
+
};
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
13
|
+
};
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
15
|
+
exports.DataSensorMutation = void 0;
|
16
|
+
const type_graphql_1 = require("type-graphql");
|
17
|
+
const typeorm_1 = require("typeorm");
|
18
|
+
const data_sensor_1 = require("./data-sensor");
|
19
|
+
const data_sensor_type_1 = require("./data-sensor-type");
|
20
|
+
let DataSensorMutation = class DataSensorMutation {
|
21
|
+
async createDataSensor(dataSensor, context) {
|
22
|
+
const { domain, user, tx } = context.state;
|
23
|
+
return await tx.getRepository(data_sensor_1.DataSensor).save(Object.assign(Object.assign({}, dataSensor), { domain, creator: user, updater: user }));
|
24
|
+
}
|
25
|
+
async updateDataSensor(id, patch, context) {
|
26
|
+
const { domain, user, tx } = context.state;
|
27
|
+
const repository = tx.getRepository(data_sensor_1.DataSensor);
|
28
|
+
const dataSensor = await repository.findOne({
|
29
|
+
where: { domain, id }
|
30
|
+
});
|
31
|
+
return await repository.save(Object.assign(Object.assign(Object.assign({}, dataSensor), patch), { updater: user }));
|
32
|
+
}
|
33
|
+
async updateMultipleDataSensor(patches, context) {
|
34
|
+
const { domain, user, tx } = context.state;
|
35
|
+
let results = [];
|
36
|
+
const _createRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === '+');
|
37
|
+
const _updateRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === 'M');
|
38
|
+
const dataSensorRepo = tx.getRepository(data_sensor_1.DataSensor);
|
39
|
+
if (_createRecords.length > 0) {
|
40
|
+
for (let i = 0; i < _createRecords.length; i++) {
|
41
|
+
const newRecord = _createRecords[i];
|
42
|
+
const result = await dataSensorRepo.save(Object.assign(Object.assign({}, newRecord), { domain, creator: user, updater: user }));
|
43
|
+
results.push(Object.assign(Object.assign({}, result), { cuFlag: '+' }));
|
44
|
+
}
|
45
|
+
}
|
46
|
+
if (_updateRecords.length > 0) {
|
47
|
+
for (let i = 0; i < _updateRecords.length; i++) {
|
48
|
+
const newRecord = _updateRecords[i];
|
49
|
+
const dataSensor = await dataSensorRepo.findOne(newRecord.id);
|
50
|
+
const result = await dataSensorRepo.save(Object.assign(Object.assign(Object.assign({}, dataSensor), newRecord), { updater: user }));
|
51
|
+
results.push(Object.assign(Object.assign({}, result), { cuFlag: 'M' }));
|
52
|
+
}
|
53
|
+
}
|
54
|
+
return results;
|
55
|
+
}
|
56
|
+
async deleteDataSensor(id, context) {
|
57
|
+
const { domain, tx } = context.state;
|
58
|
+
await tx.getRepository(data_sensor_1.DataSensor).delete({ domain, id });
|
59
|
+
return true;
|
60
|
+
}
|
61
|
+
async deleteDataSensors(ids, context) {
|
62
|
+
const { domain, tx } = context.state;
|
63
|
+
await tx.getRepository(data_sensor_1.DataSensor).delete({
|
64
|
+
domain,
|
65
|
+
id: (0, typeorm_1.In)(ids)
|
66
|
+
});
|
67
|
+
return true;
|
68
|
+
}
|
69
|
+
};
|
70
|
+
__decorate([
|
71
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
72
|
+
(0, type_graphql_1.Mutation)(returns => data_sensor_1.DataSensor, { description: 'To create new DataSensor' }),
|
73
|
+
__param(0, (0, type_graphql_1.Arg)('dataSensor')),
|
74
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
75
|
+
__metadata("design:type", Function),
|
76
|
+
__metadata("design:paramtypes", [data_sensor_type_1.NewDataSensor, Object]),
|
77
|
+
__metadata("design:returntype", Promise)
|
78
|
+
], DataSensorMutation.prototype, "createDataSensor", null);
|
79
|
+
__decorate([
|
80
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
81
|
+
(0, type_graphql_1.Mutation)(returns => data_sensor_1.DataSensor, { description: 'To modify DataSensor information' }),
|
82
|
+
__param(0, (0, type_graphql_1.Arg)('id')),
|
83
|
+
__param(1, (0, type_graphql_1.Arg)('patch')),
|
84
|
+
__param(2, (0, type_graphql_1.Ctx)()),
|
85
|
+
__metadata("design:type", Function),
|
86
|
+
__metadata("design:paramtypes", [String, data_sensor_type_1.DataSensorPatch, Object]),
|
87
|
+
__metadata("design:returntype", Promise)
|
88
|
+
], DataSensorMutation.prototype, "updateDataSensor", null);
|
89
|
+
__decorate([
|
90
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
91
|
+
(0, type_graphql_1.Mutation)(returns => [data_sensor_1.DataSensor], { description: "To modify multiple DataSensors' information" }),
|
92
|
+
__param(0, (0, type_graphql_1.Arg)('patches', type => [data_sensor_type_1.DataSensorPatch])),
|
93
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
94
|
+
__metadata("design:type", Function),
|
95
|
+
__metadata("design:paramtypes", [Array, Object]),
|
96
|
+
__metadata("design:returntype", Promise)
|
97
|
+
], DataSensorMutation.prototype, "updateMultipleDataSensor", null);
|
98
|
+
__decorate([
|
99
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
100
|
+
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete DataSensor' }),
|
101
|
+
__param(0, (0, type_graphql_1.Arg)('id')),
|
102
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
103
|
+
__metadata("design:type", Function),
|
104
|
+
__metadata("design:paramtypes", [String, Object]),
|
105
|
+
__metadata("design:returntype", Promise)
|
106
|
+
], DataSensorMutation.prototype, "deleteDataSensor", null);
|
107
|
+
__decorate([
|
108
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
109
|
+
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete multiple dataSensors' }),
|
110
|
+
__param(0, (0, type_graphql_1.Arg)('ids', type => [String])),
|
111
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
112
|
+
__metadata("design:type", Function),
|
113
|
+
__metadata("design:paramtypes", [Array, Object]),
|
114
|
+
__metadata("design:returntype", Promise)
|
115
|
+
], DataSensorMutation.prototype, "deleteDataSensors", null);
|
116
|
+
DataSensorMutation = __decorate([
|
117
|
+
(0, type_graphql_1.Resolver)(data_sensor_1.DataSensor)
|
118
|
+
], DataSensorMutation);
|
119
|
+
exports.DataSensorMutation = DataSensorMutation;
|
120
|
+
//# sourceMappingURL=data-sensor-mutation.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"data-sensor-mutation.js","sourceRoot":"","sources":["../../../server/service/data-sensor/data-sensor-mutation.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,113 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
|
+
};
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
|
+
};
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
13
|
+
};
|
14
|
+
var _a;
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
16
|
+
exports.DataSensorQuery = void 0;
|
17
|
+
const type_graphql_1 = require("type-graphql");
|
18
|
+
const typeorm_1 = require("typeorm");
|
19
|
+
const auth_base_1 = require("@things-factory/auth-base");
|
20
|
+
const shell_1 = require("@things-factory/shell");
|
21
|
+
const data_set_1 = require("../data-set/data-set");
|
22
|
+
const data_sensor_1 = require("./data-sensor");
|
23
|
+
const data_sensor_type_1 = require("./data-sensor-type");
|
24
|
+
let DataSensorQuery = class DataSensorQuery {
|
25
|
+
async dataSensor(id, context) {
|
26
|
+
const { domain } = context.state;
|
27
|
+
return await (0, typeorm_1.getRepository)(data_sensor_1.DataSensor).findOne({
|
28
|
+
where: { domain, id }
|
29
|
+
});
|
30
|
+
}
|
31
|
+
async dataSensors(params, context) {
|
32
|
+
const { domain } = context.state;
|
33
|
+
const queryBuilder = (0, shell_1.getQueryBuilderFromListParams)({
|
34
|
+
repository: (0, typeorm_1.getRepository)(data_sensor_1.DataSensor),
|
35
|
+
params,
|
36
|
+
domain,
|
37
|
+
alias: 'datasensor'
|
38
|
+
});
|
39
|
+
const [items, total] = await queryBuilder.getManyAndCount();
|
40
|
+
return { items, total };
|
41
|
+
}
|
42
|
+
async appliance(dataSensor) {
|
43
|
+
return await (0, typeorm_1.getRepository)(auth_base_1.Appliance).findOne(dataSensor.applianceId || '');
|
44
|
+
}
|
45
|
+
async dataSet(dataSensor) {
|
46
|
+
return await (0, typeorm_1.getRepository)(data_set_1.DataSet).findOne(dataSensor.dataSetId || '');
|
47
|
+
}
|
48
|
+
async domain(dataSensor) {
|
49
|
+
return await (0, typeorm_1.getRepository)(shell_1.Domain).findOne(dataSensor.domainId);
|
50
|
+
}
|
51
|
+
async updater(dataSensor) {
|
52
|
+
return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(dataSensor.updaterId);
|
53
|
+
}
|
54
|
+
async creator(dataSensor) {
|
55
|
+
return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(dataSensor.creatorId);
|
56
|
+
}
|
57
|
+
};
|
58
|
+
__decorate([
|
59
|
+
(0, type_graphql_1.Query)(returns => data_sensor_1.DataSensor, { description: 'To fetch a DataSensor' }),
|
60
|
+
__param(0, (0, type_graphql_1.Arg)('id')),
|
61
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
62
|
+
__metadata("design:type", Function),
|
63
|
+
__metadata("design:paramtypes", [String, Object]),
|
64
|
+
__metadata("design:returntype", Promise)
|
65
|
+
], DataSensorQuery.prototype, "dataSensor", null);
|
66
|
+
__decorate([
|
67
|
+
(0, type_graphql_1.Query)(returns => data_sensor_type_1.DataSensorList, { description: 'To fetch multiple DataSensors' }),
|
68
|
+
__param(0, (0, type_graphql_1.Args)()),
|
69
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
70
|
+
__metadata("design:type", Function),
|
71
|
+
__metadata("design:paramtypes", [typeof (_a = typeof shell_1.ListParam !== "undefined" && shell_1.ListParam) === "function" ? _a : Object, Object]),
|
72
|
+
__metadata("design:returntype", Promise)
|
73
|
+
], DataSensorQuery.prototype, "dataSensors", null);
|
74
|
+
__decorate([
|
75
|
+
(0, type_graphql_1.FieldResolver)(type => auth_base_1.Appliance),
|
76
|
+
__param(0, (0, type_graphql_1.Root)()),
|
77
|
+
__metadata("design:type", Function),
|
78
|
+
__metadata("design:paramtypes", [data_sensor_1.DataSensor]),
|
79
|
+
__metadata("design:returntype", Promise)
|
80
|
+
], DataSensorQuery.prototype, "appliance", null);
|
81
|
+
__decorate([
|
82
|
+
(0, type_graphql_1.FieldResolver)(type => auth_base_1.Appliance),
|
83
|
+
__param(0, (0, type_graphql_1.Root)()),
|
84
|
+
__metadata("design:type", Function),
|
85
|
+
__metadata("design:paramtypes", [data_sensor_1.DataSensor]),
|
86
|
+
__metadata("design:returntype", Promise)
|
87
|
+
], DataSensorQuery.prototype, "dataSet", null);
|
88
|
+
__decorate([
|
89
|
+
(0, type_graphql_1.FieldResolver)(type => shell_1.Domain),
|
90
|
+
__param(0, (0, type_graphql_1.Root)()),
|
91
|
+
__metadata("design:type", Function),
|
92
|
+
__metadata("design:paramtypes", [data_sensor_1.DataSensor]),
|
93
|
+
__metadata("design:returntype", Promise)
|
94
|
+
], DataSensorQuery.prototype, "domain", null);
|
95
|
+
__decorate([
|
96
|
+
(0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
|
97
|
+
__param(0, (0, type_graphql_1.Root)()),
|
98
|
+
__metadata("design:type", Function),
|
99
|
+
__metadata("design:paramtypes", [data_sensor_1.DataSensor]),
|
100
|
+
__metadata("design:returntype", Promise)
|
101
|
+
], DataSensorQuery.prototype, "updater", null);
|
102
|
+
__decorate([
|
103
|
+
(0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
|
104
|
+
__param(0, (0, type_graphql_1.Root)()),
|
105
|
+
__metadata("design:type", Function),
|
106
|
+
__metadata("design:paramtypes", [data_sensor_1.DataSensor]),
|
107
|
+
__metadata("design:returntype", Promise)
|
108
|
+
], DataSensorQuery.prototype, "creator", null);
|
109
|
+
DataSensorQuery = __decorate([
|
110
|
+
(0, type_graphql_1.Resolver)(data_sensor_1.DataSensor)
|
111
|
+
], DataSensorQuery);
|
112
|
+
exports.DataSensorQuery = DataSensorQuery;
|
113
|
+
//# sourceMappingURL=data-sensor-query.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"data-sensor-query.js","sourceRoot":"","sources":["../../../server/service/data-sensor/data-sensor-query.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,147 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
7
|
+
};
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
10
|
+
};
|
11
|
+
var _a, _b, _c, _d;
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
13
|
+
exports.DataSensorList = exports.DataSensorPatch = exports.NewDataSensor = void 0;
|
14
|
+
const type_graphql_1 = require("type-graphql");
|
15
|
+
const shell_1 = require("@things-factory/shell");
|
16
|
+
const data_sensor_1 = require("./data-sensor");
|
17
|
+
let NewDataSensor = class NewDataSensor {
|
18
|
+
};
|
19
|
+
__decorate([
|
20
|
+
(0, type_graphql_1.Field)(),
|
21
|
+
__metadata("design:type", String)
|
22
|
+
], NewDataSensor.prototype, "name", void 0);
|
23
|
+
__decorate([
|
24
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
25
|
+
__metadata("design:type", String)
|
26
|
+
], NewDataSensor.prototype, "description", void 0);
|
27
|
+
__decorate([
|
28
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
29
|
+
__metadata("design:type", Boolean)
|
30
|
+
], NewDataSensor.prototype, "active", void 0);
|
31
|
+
__decorate([
|
32
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
33
|
+
__metadata("design:type", String)
|
34
|
+
], NewDataSensor.prototype, "deviceId", void 0);
|
35
|
+
__decorate([
|
36
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
37
|
+
__metadata("design:type", String)
|
38
|
+
], NewDataSensor.prototype, "serialNo", void 0);
|
39
|
+
__decorate([
|
40
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
41
|
+
__metadata("design:type", String)
|
42
|
+
], NewDataSensor.prototype, "brand", void 0);
|
43
|
+
__decorate([
|
44
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
45
|
+
__metadata("design:type", String)
|
46
|
+
], NewDataSensor.prototype, "model", void 0);
|
47
|
+
__decorate([
|
48
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
49
|
+
__metadata("design:type", String)
|
50
|
+
], NewDataSensor.prototype, "netmask", void 0);
|
51
|
+
__decorate([
|
52
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
53
|
+
__metadata("design:type", String)
|
54
|
+
], NewDataSensor.prototype, "tag", void 0);
|
55
|
+
__decorate([
|
56
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
57
|
+
__metadata("design:type", String)
|
58
|
+
], NewDataSensor.prototype, "refBy", void 0);
|
59
|
+
__decorate([
|
60
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
61
|
+
__metadata("design:type", typeof (_a = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _a : Object)
|
62
|
+
], NewDataSensor.prototype, "appliance", void 0);
|
63
|
+
__decorate([
|
64
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
65
|
+
__metadata("design:type", typeof (_b = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _b : Object)
|
66
|
+
], NewDataSensor.prototype, "dataSet", void 0);
|
67
|
+
NewDataSensor = __decorate([
|
68
|
+
(0, type_graphql_1.InputType)()
|
69
|
+
], NewDataSensor);
|
70
|
+
exports.NewDataSensor = NewDataSensor;
|
71
|
+
let DataSensorPatch = class DataSensorPatch {
|
72
|
+
};
|
73
|
+
__decorate([
|
74
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.ID, { nullable: true }),
|
75
|
+
__metadata("design:type", String)
|
76
|
+
], DataSensorPatch.prototype, "id", void 0);
|
77
|
+
__decorate([
|
78
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
79
|
+
__metadata("design:type", String)
|
80
|
+
], DataSensorPatch.prototype, "name", void 0);
|
81
|
+
__decorate([
|
82
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
83
|
+
__metadata("design:type", String)
|
84
|
+
], DataSensorPatch.prototype, "description", void 0);
|
85
|
+
__decorate([
|
86
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
87
|
+
__metadata("design:type", Boolean)
|
88
|
+
], DataSensorPatch.prototype, "active", void 0);
|
89
|
+
__decorate([
|
90
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
91
|
+
__metadata("design:type", String)
|
92
|
+
], DataSensorPatch.prototype, "deviceId", void 0);
|
93
|
+
__decorate([
|
94
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
95
|
+
__metadata("design:type", String)
|
96
|
+
], DataSensorPatch.prototype, "serialNo", void 0);
|
97
|
+
__decorate([
|
98
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
99
|
+
__metadata("design:type", String)
|
100
|
+
], DataSensorPatch.prototype, "brand", void 0);
|
101
|
+
__decorate([
|
102
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
103
|
+
__metadata("design:type", String)
|
104
|
+
], DataSensorPatch.prototype, "model", void 0);
|
105
|
+
__decorate([
|
106
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
107
|
+
__metadata("design:type", String)
|
108
|
+
], DataSensorPatch.prototype, "netmask", void 0);
|
109
|
+
__decorate([
|
110
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
111
|
+
__metadata("design:type", String)
|
112
|
+
], DataSensorPatch.prototype, "tag", void 0);
|
113
|
+
__decorate([
|
114
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
115
|
+
__metadata("design:type", String)
|
116
|
+
], DataSensorPatch.prototype, "refBy", void 0);
|
117
|
+
__decorate([
|
118
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
119
|
+
__metadata("design:type", typeof (_c = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _c : Object)
|
120
|
+
], DataSensorPatch.prototype, "appliance", void 0);
|
121
|
+
__decorate([
|
122
|
+
(0, type_graphql_1.Field)(type => shell_1.ObjectRef, { nullable: true }),
|
123
|
+
__metadata("design:type", typeof (_d = typeof shell_1.ObjectRef !== "undefined" && shell_1.ObjectRef) === "function" ? _d : Object)
|
124
|
+
], DataSensorPatch.prototype, "dataSet", void 0);
|
125
|
+
__decorate([
|
126
|
+
(0, type_graphql_1.Field)(),
|
127
|
+
__metadata("design:type", String)
|
128
|
+
], DataSensorPatch.prototype, "cuFlag", void 0);
|
129
|
+
DataSensorPatch = __decorate([
|
130
|
+
(0, type_graphql_1.InputType)()
|
131
|
+
], DataSensorPatch);
|
132
|
+
exports.DataSensorPatch = DataSensorPatch;
|
133
|
+
let DataSensorList = class DataSensorList {
|
134
|
+
};
|
135
|
+
__decorate([
|
136
|
+
(0, type_graphql_1.Field)(type => [data_sensor_1.DataSensor]),
|
137
|
+
__metadata("design:type", Array)
|
138
|
+
], DataSensorList.prototype, "items", void 0);
|
139
|
+
__decorate([
|
140
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.Int),
|
141
|
+
__metadata("design:type", Number)
|
142
|
+
], DataSensorList.prototype, "total", void 0);
|
143
|
+
DataSensorList = __decorate([
|
144
|
+
(0, type_graphql_1.ObjectType)()
|
145
|
+
], DataSensorList);
|
146
|
+
exports.DataSensorList = DataSensorList;
|
147
|
+
//# sourceMappingURL=data-sensor-type.js.map
|