@things-factory/resource-base 4.3.582 → 4.3.671
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/package.json +3 -3
- package/dist-server/index.js +0 -19
- package/dist-server/index.js.map +0 -1
- package/dist-server/migrations/index.js +0 -12
- package/dist-server/migrations/index.js.map +0 -1
- package/dist-server/service/entity/entity-mutation.js +0 -81
- package/dist-server/service/entity/entity-mutation.js.map +0 -1
- package/dist-server/service/entity/entity-query.js +0 -129
- package/dist-server/service/entity/entity-query.js.map +0 -1
- package/dist-server/service/entity/entity-type.js +0 -193
- package/dist-server/service/entity/entity-type.js.map +0 -1
- package/dist-server/service/entity/entity.js +0 -203
- package/dist-server/service/entity/entity.js.map +0 -1
- package/dist-server/service/entity/index.js +0 -9
- package/dist-server/service/entity/index.js.map +0 -1
- package/dist-server/service/entity-column/entity-column-mutation.js +0 -76
- package/dist-server/service/entity-column/entity-column-mutation.js.map +0 -1
- package/dist-server/service/entity-column/entity-column-query.js +0 -98
- package/dist-server/service/entity-column/entity-column-query.js.map +0 -1
- package/dist-server/service/entity-column/entity-column-type.js +0 -313
- package/dist-server/service/entity-column/entity-column-type.js.map +0 -1
- package/dist-server/service/entity-column/entity-column.js +0 -316
- package/dist-server/service/entity-column/entity-column.js.map +0 -1
- package/dist-server/service/entity-column/index.js +0 -9
- package/dist-server/service/entity-column/index.js.map +0 -1
- package/dist-server/service/entity-metadata/entity-metadata-query.js +0 -36
- package/dist-server/service/entity-metadata/entity-metadata-query.js.map +0 -1
- package/dist-server/service/entity-metadata/entity-metadata.js +0 -125
- package/dist-server/service/entity-metadata/entity-metadata.js.map +0 -1
- package/dist-server/service/entity-metadata/index.js +0 -8
- package/dist-server/service/entity-metadata/index.js.map +0 -1
- package/dist-server/service/index.js +0 -39
- package/dist-server/service/index.js.map +0 -1
|
@@ -1,203 +0,0 @@
|
|
|
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 Entity_1;
|
|
12
|
-
var _a, _b, _c;
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.Entity = void 0;
|
|
15
|
-
const type_graphql_1 = require("type-graphql");
|
|
16
|
-
const typeorm_1 = require("typeorm");
|
|
17
|
-
const auth_base_1 = require("@things-factory/auth-base");
|
|
18
|
-
const shell_1 = require("@things-factory/shell");
|
|
19
|
-
const entity_column_1 = require("../entity-column/entity-column");
|
|
20
|
-
let Entity = Entity_1 = class Entity {
|
|
21
|
-
};
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
24
|
-
(0, type_graphql_1.Field)(type => type_graphql_1.ID),
|
|
25
|
-
__metadata("design:type", String)
|
|
26
|
-
], Entity.prototype, "id", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, typeorm_1.ManyToOne)(type => shell_1.Domain),
|
|
29
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
30
|
-
__metadata("design:type", typeof (_a = typeof shell_1.Domain !== "undefined" && shell_1.Domain) === "function" ? _a : Object)
|
|
31
|
-
], Entity.prototype, "domain", void 0);
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, typeorm_1.RelationId)((entity) => entity.domain),
|
|
34
|
-
__metadata("design:type", String)
|
|
35
|
-
], Entity.prototype, "domainId", void 0);
|
|
36
|
-
__decorate([
|
|
37
|
-
(0, typeorm_1.Column)(),
|
|
38
|
-
(0, type_graphql_1.Field)(),
|
|
39
|
-
__metadata("design:type", String)
|
|
40
|
-
], Entity.prototype, "name", void 0);
|
|
41
|
-
__decorate([
|
|
42
|
-
(0, typeorm_1.Column)({
|
|
43
|
-
nullable: true
|
|
44
|
-
}),
|
|
45
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
46
|
-
__metadata("design:type", String)
|
|
47
|
-
], Entity.prototype, "description", void 0);
|
|
48
|
-
__decorate([
|
|
49
|
-
(0, typeorm_1.Column)(),
|
|
50
|
-
(0, type_graphql_1.Field)(),
|
|
51
|
-
__metadata("design:type", String)
|
|
52
|
-
], Entity.prototype, "bundle", void 0);
|
|
53
|
-
__decorate([
|
|
54
|
-
(0, typeorm_1.Column)(),
|
|
55
|
-
(0, type_graphql_1.Field)(),
|
|
56
|
-
__metadata("design:type", String)
|
|
57
|
-
], Entity.prototype, "tableName", void 0);
|
|
58
|
-
__decorate([
|
|
59
|
-
(0, typeorm_1.Column)({
|
|
60
|
-
nullable: true
|
|
61
|
-
}),
|
|
62
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
63
|
-
__metadata("design:type", String)
|
|
64
|
-
], Entity.prototype, "searchUrl", void 0);
|
|
65
|
-
__decorate([
|
|
66
|
-
(0, typeorm_1.Column)({
|
|
67
|
-
nullable: true
|
|
68
|
-
}),
|
|
69
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
70
|
-
__metadata("design:type", String)
|
|
71
|
-
], Entity.prototype, "multiSaveUrl", void 0);
|
|
72
|
-
__decorate([
|
|
73
|
-
(0, typeorm_1.Column)({
|
|
74
|
-
nullable: true
|
|
75
|
-
}),
|
|
76
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
77
|
-
__metadata("design:type", String)
|
|
78
|
-
], Entity.prototype, "idType", void 0);
|
|
79
|
-
__decorate([
|
|
80
|
-
(0, typeorm_1.Column)({
|
|
81
|
-
nullable: true
|
|
82
|
-
}),
|
|
83
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
84
|
-
__metadata("design:type", String)
|
|
85
|
-
], Entity.prototype, "idField", void 0);
|
|
86
|
-
__decorate([
|
|
87
|
-
(0, typeorm_1.Column)({
|
|
88
|
-
nullable: true
|
|
89
|
-
}),
|
|
90
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
91
|
-
__metadata("design:type", String)
|
|
92
|
-
], Entity.prototype, "titleField", void 0);
|
|
93
|
-
__decorate([
|
|
94
|
-
(0, typeorm_1.ManyToOne)(type => Entity_1, master => master.children),
|
|
95
|
-
(0, type_graphql_1.Field)(type => Entity_1, { nullable: true }),
|
|
96
|
-
__metadata("design:type", Entity)
|
|
97
|
-
], Entity.prototype, "master", void 0);
|
|
98
|
-
__decorate([
|
|
99
|
-
(0, typeorm_1.RelationId)((entity) => entity.master),
|
|
100
|
-
__metadata("design:type", String)
|
|
101
|
-
], Entity.prototype, "masterId", void 0);
|
|
102
|
-
__decorate([
|
|
103
|
-
(0, typeorm_1.OneToMany)(type => Entity_1, child => child.master),
|
|
104
|
-
(0, type_graphql_1.Field)(type => [Entity_1], { nullable: true }),
|
|
105
|
-
__metadata("design:type", Array)
|
|
106
|
-
], Entity.prototype, "children", void 0);
|
|
107
|
-
__decorate([
|
|
108
|
-
(0, typeorm_1.Column)({
|
|
109
|
-
nullable: true
|
|
110
|
-
}),
|
|
111
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
112
|
-
__metadata("design:type", String)
|
|
113
|
-
], Entity.prototype, "association", void 0);
|
|
114
|
-
__decorate([
|
|
115
|
-
(0, typeorm_1.Column)({
|
|
116
|
-
nullable: true
|
|
117
|
-
}),
|
|
118
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
119
|
-
__metadata("design:type", String)
|
|
120
|
-
], Entity.prototype, "dataProp", void 0);
|
|
121
|
-
__decorate([
|
|
122
|
-
(0, typeorm_1.Column)({
|
|
123
|
-
nullable: true
|
|
124
|
-
}),
|
|
125
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
126
|
-
__metadata("design:type", String)
|
|
127
|
-
], Entity.prototype, "refField", void 0);
|
|
128
|
-
__decorate([
|
|
129
|
-
(0, typeorm_1.Column)({
|
|
130
|
-
nullable: true
|
|
131
|
-
}),
|
|
132
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
133
|
-
__metadata("design:type", String)
|
|
134
|
-
], Entity.prototype, "delStrategy", void 0);
|
|
135
|
-
__decorate([
|
|
136
|
-
(0, typeorm_1.Column)('int', {
|
|
137
|
-
nullable: true
|
|
138
|
-
}),
|
|
139
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
140
|
-
__metadata("design:type", Number)
|
|
141
|
-
], Entity.prototype, "fixedColumns", void 0);
|
|
142
|
-
__decorate([
|
|
143
|
-
(0, typeorm_1.Column)({
|
|
144
|
-
nullable: true,
|
|
145
|
-
default: true
|
|
146
|
-
}),
|
|
147
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
148
|
-
__metadata("design:type", Boolean)
|
|
149
|
-
], Entity.prototype, "active", void 0);
|
|
150
|
-
__decorate([
|
|
151
|
-
(0, typeorm_1.Column)({
|
|
152
|
-
nullable: true
|
|
153
|
-
}),
|
|
154
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
155
|
-
__metadata("design:type", Boolean)
|
|
156
|
-
], Entity.prototype, "extEntity", void 0);
|
|
157
|
-
__decorate([
|
|
158
|
-
(0, typeorm_1.OneToMany)(type => entity_column_1.EntityColumn, entityColumn => entityColumn.entity),
|
|
159
|
-
(0, type_graphql_1.Field)(type => [entity_column_1.EntityColumn], { nullable: true }),
|
|
160
|
-
__metadata("design:type", Array)
|
|
161
|
-
], Entity.prototype, "columns", void 0);
|
|
162
|
-
__decorate([
|
|
163
|
-
(0, typeorm_1.CreateDateColumn)(),
|
|
164
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
165
|
-
__metadata("design:type", Date)
|
|
166
|
-
], Entity.prototype, "createdAt", void 0);
|
|
167
|
-
__decorate([
|
|
168
|
-
(0, typeorm_1.UpdateDateColumn)(),
|
|
169
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
170
|
-
__metadata("design:type", Date)
|
|
171
|
-
], Entity.prototype, "updatedAt", void 0);
|
|
172
|
-
__decorate([
|
|
173
|
-
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
|
174
|
-
nullable: true
|
|
175
|
-
}),
|
|
176
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
177
|
-
__metadata("design:type", typeof (_b = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _b : Object)
|
|
178
|
-
], Entity.prototype, "creator", void 0);
|
|
179
|
-
__decorate([
|
|
180
|
-
(0, typeorm_1.RelationId)((entity) => entity.creator),
|
|
181
|
-
__metadata("design:type", String)
|
|
182
|
-
], Entity.prototype, "creatorId", void 0);
|
|
183
|
-
__decorate([
|
|
184
|
-
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, {
|
|
185
|
-
nullable: true
|
|
186
|
-
}),
|
|
187
|
-
(0, type_graphql_1.Field)({ nullable: true }),
|
|
188
|
-
__metadata("design:type", typeof (_c = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _c : Object)
|
|
189
|
-
], Entity.prototype, "updater", void 0);
|
|
190
|
-
__decorate([
|
|
191
|
-
(0, typeorm_1.RelationId)((entity) => entity.creator),
|
|
192
|
-
__metadata("design:type", String)
|
|
193
|
-
], Entity.prototype, "updaterId", void 0);
|
|
194
|
-
Entity = Entity_1 = __decorate([
|
|
195
|
-
(0, typeorm_1.Entity)(),
|
|
196
|
-
(0, typeorm_1.Index)('ix_entity_0', (entity) => [entity.domain, entity.name], { unique: true }),
|
|
197
|
-
(0, typeorm_1.Index)('ix_entity_1', (entity) => [entity.domain]),
|
|
198
|
-
(0, typeorm_1.Index)('ix_entity_2', (entity) => [entity.bundle]),
|
|
199
|
-
(0, typeorm_1.Index)('ix_entity_3', (entity) => [entity.domain, entity.master]),
|
|
200
|
-
(0, type_graphql_1.ObjectType)({ description: 'Entity for Entity' })
|
|
201
|
-
], Entity);
|
|
202
|
-
exports.Entity = Entity;
|
|
203
|
-
//# sourceMappingURL=entity.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../server/service/entity/entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.resolvers = exports.entities = void 0;
|
|
4
|
-
const entity_1 = require("./entity");
|
|
5
|
-
const entity_query_1 = require("./entity-query");
|
|
6
|
-
const entity_mutation_1 = require("./entity-mutation");
|
|
7
|
-
exports.entities = [entity_1.Entity];
|
|
8
|
-
exports.resolvers = [entity_query_1.EntityQuery, entity_mutation_1.EntityMutation];
|
|
9
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/service/entity/index.ts"],"names":[],"mappings":";;;AAAA,qCAAiC;AACjC,iDAA4C;AAC5C,uDAAkD;AAErC,QAAA,QAAQ,GAAG,CAAC,eAAM,CAAC,CAAA;AACnB,QAAA,SAAS,GAAG,CAAC,0BAAW,EAAE,gCAAc,CAAC,CAAA"}
|
|
@@ -1,76 +0,0 @@
|
|
|
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.EntityColumnMutation = void 0;
|
|
16
|
-
const type_graphql_1 = require("type-graphql");
|
|
17
|
-
const entity_column_1 = require("./entity-column");
|
|
18
|
-
const entity_column_type_1 = require("./entity-column-type");
|
|
19
|
-
let EntityColumnMutation = class EntityColumnMutation {
|
|
20
|
-
async createEntityColumn(entityColumn, context) {
|
|
21
|
-
const { domain, user, tx } = context.state;
|
|
22
|
-
if (entityColumn.entity) {
|
|
23
|
-
entityColumn.entity = await tx.findOne({ where: { id: entityColumn.entity } });
|
|
24
|
-
}
|
|
25
|
-
return await tx.getRepository(entity_column_1.EntityColumn).save(Object.assign(Object.assign({}, entityColumn), { domain, creator: user, updater: user }));
|
|
26
|
-
}
|
|
27
|
-
async updateEntityColumn(name, patch, context) {
|
|
28
|
-
const { domain, user, tx } = context.state;
|
|
29
|
-
const repository = tx.getRepository(entity_column_1.EntityColumn);
|
|
30
|
-
const entityColumn = await repository.findOne({
|
|
31
|
-
where: { domain, name }
|
|
32
|
-
});
|
|
33
|
-
if (patch.entity) {
|
|
34
|
-
patch.entity = await tx.findOne({ id: patch.entity });
|
|
35
|
-
}
|
|
36
|
-
return await repository.save(Object.assign(Object.assign(Object.assign({}, entityColumn), patch), { updater: user }));
|
|
37
|
-
}
|
|
38
|
-
async deleteEntityColumn(name, context) {
|
|
39
|
-
const { domain, tx } = context.state;
|
|
40
|
-
await tx.getRepository(entity_column_1.EntityColumn).delete({ domain, name });
|
|
41
|
-
return true;
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
__decorate([
|
|
45
|
-
(0, type_graphql_1.Directive)('@transaction'),
|
|
46
|
-
(0, type_graphql_1.Mutation)(returns => entity_column_1.EntityColumn, { description: 'To create new EntityColumn' }),
|
|
47
|
-
__param(0, (0, type_graphql_1.Arg)('entityColumn')),
|
|
48
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
49
|
-
__metadata("design:type", Function),
|
|
50
|
-
__metadata("design:paramtypes", [entity_column_type_1.NewEntityColumn, Object]),
|
|
51
|
-
__metadata("design:returntype", Promise)
|
|
52
|
-
], EntityColumnMutation.prototype, "createEntityColumn", null);
|
|
53
|
-
__decorate([
|
|
54
|
-
(0, type_graphql_1.Directive)('@transaction'),
|
|
55
|
-
(0, type_graphql_1.Mutation)(returns => entity_column_1.EntityColumn, { description: 'To modify EntityColumn information' }),
|
|
56
|
-
__param(0, (0, type_graphql_1.Arg)('name')),
|
|
57
|
-
__param(1, (0, type_graphql_1.Arg)('patch')),
|
|
58
|
-
__param(2, (0, type_graphql_1.Ctx)()),
|
|
59
|
-
__metadata("design:type", Function),
|
|
60
|
-
__metadata("design:paramtypes", [String, entity_column_type_1.EntityColumnPatch, Object]),
|
|
61
|
-
__metadata("design:returntype", Promise)
|
|
62
|
-
], EntityColumnMutation.prototype, "updateEntityColumn", null);
|
|
63
|
-
__decorate([
|
|
64
|
-
(0, type_graphql_1.Directive)('@transaction'),
|
|
65
|
-
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete EntityColumn' }),
|
|
66
|
-
__param(0, (0, type_graphql_1.Arg)('name')),
|
|
67
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
68
|
-
__metadata("design:type", Function),
|
|
69
|
-
__metadata("design:paramtypes", [String, Object]),
|
|
70
|
-
__metadata("design:returntype", Promise)
|
|
71
|
-
], EntityColumnMutation.prototype, "deleteEntityColumn", null);
|
|
72
|
-
EntityColumnMutation = __decorate([
|
|
73
|
-
(0, type_graphql_1.Resolver)(entity_column_1.EntityColumn)
|
|
74
|
-
], EntityColumnMutation);
|
|
75
|
-
exports.EntityColumnMutation = EntityColumnMutation;
|
|
76
|
-
//# sourceMappingURL=entity-column-mutation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"entity-column-mutation.js","sourceRoot":"","sources":["../../../server/service/entity-column/entity-column-mutation.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,98 +0,0 @@
|
|
|
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.EntityColumnQuery = 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 entity_1 = require("../entity/entity");
|
|
22
|
-
const entity_column_1 = require("./entity-column");
|
|
23
|
-
const entity_column_type_1 = require("./entity-column-type");
|
|
24
|
-
let EntityColumnQuery = class EntityColumnQuery {
|
|
25
|
-
async entityColumn(name, context) {
|
|
26
|
-
const { domain } = context.state;
|
|
27
|
-
return await (0, typeorm_1.getRepository)(entity_column_1.EntityColumn).findOne({
|
|
28
|
-
where: { domain, name }
|
|
29
|
-
});
|
|
30
|
-
}
|
|
31
|
-
async entityColumns(params, context) {
|
|
32
|
-
const { domain } = context.state;
|
|
33
|
-
const convertedParams = (0, shell_1.convertListParams)(params, domain.id);
|
|
34
|
-
const [items, total] = await (0, typeorm_1.getRepository)(entity_column_1.EntityColumn).findAndCount(convertedParams);
|
|
35
|
-
return { items, total };
|
|
36
|
-
}
|
|
37
|
-
async entity(entityColumn) {
|
|
38
|
-
return await (0, typeorm_1.getRepository)(entity_1.Entity).findOne(entityColumn.entityId);
|
|
39
|
-
}
|
|
40
|
-
async domain(entityColumn) {
|
|
41
|
-
return await (0, typeorm_1.getRepository)(shell_1.Domain).findOne(entityColumn.domainId);
|
|
42
|
-
}
|
|
43
|
-
async updater(entityColumn) {
|
|
44
|
-
return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(entityColumn.updaterId);
|
|
45
|
-
}
|
|
46
|
-
async creator(entityColumn) {
|
|
47
|
-
return await (0, typeorm_1.getRepository)(auth_base_1.User).findOne(entityColumn.creatorId);
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
__decorate([
|
|
51
|
-
(0, type_graphql_1.Query)(returns => entity_column_1.EntityColumn, { description: 'To fetch a EntityColumn' }),
|
|
52
|
-
__param(0, (0, type_graphql_1.Arg)('name')),
|
|
53
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
54
|
-
__metadata("design:type", Function),
|
|
55
|
-
__metadata("design:paramtypes", [String, Object]),
|
|
56
|
-
__metadata("design:returntype", Promise)
|
|
57
|
-
], EntityColumnQuery.prototype, "entityColumn", null);
|
|
58
|
-
__decorate([
|
|
59
|
-
(0, type_graphql_1.Query)(returns => entity_column_type_1.EntityColumnList, { description: 'To fetch multiple EntityColumns' }),
|
|
60
|
-
__param(0, (0, type_graphql_1.Args)()),
|
|
61
|
-
__param(1, (0, type_graphql_1.Ctx)()),
|
|
62
|
-
__metadata("design:type", Function),
|
|
63
|
-
__metadata("design:paramtypes", [typeof (_a = typeof shell_1.ListParam !== "undefined" && shell_1.ListParam) === "function" ? _a : Object, Object]),
|
|
64
|
-
__metadata("design:returntype", Promise)
|
|
65
|
-
], EntityColumnQuery.prototype, "entityColumns", null);
|
|
66
|
-
__decorate([
|
|
67
|
-
(0, type_graphql_1.FieldResolver)(type => entity_1.Entity),
|
|
68
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
69
|
-
__metadata("design:type", Function),
|
|
70
|
-
__metadata("design:paramtypes", [entity_column_1.EntityColumn]),
|
|
71
|
-
__metadata("design:returntype", Promise)
|
|
72
|
-
], EntityColumnQuery.prototype, "entity", null);
|
|
73
|
-
__decorate([
|
|
74
|
-
(0, type_graphql_1.FieldResolver)(type => shell_1.Domain),
|
|
75
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
76
|
-
__metadata("design:type", Function),
|
|
77
|
-
__metadata("design:paramtypes", [entity_column_1.EntityColumn]),
|
|
78
|
-
__metadata("design:returntype", Promise)
|
|
79
|
-
], EntityColumnQuery.prototype, "domain", null);
|
|
80
|
-
__decorate([
|
|
81
|
-
(0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
|
|
82
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
83
|
-
__metadata("design:type", Function),
|
|
84
|
-
__metadata("design:paramtypes", [entity_column_1.EntityColumn]),
|
|
85
|
-
__metadata("design:returntype", Promise)
|
|
86
|
-
], EntityColumnQuery.prototype, "updater", null);
|
|
87
|
-
__decorate([
|
|
88
|
-
(0, type_graphql_1.FieldResolver)(type => auth_base_1.User),
|
|
89
|
-
__param(0, (0, type_graphql_1.Root)()),
|
|
90
|
-
__metadata("design:type", Function),
|
|
91
|
-
__metadata("design:paramtypes", [entity_column_1.EntityColumn]),
|
|
92
|
-
__metadata("design:returntype", Promise)
|
|
93
|
-
], EntityColumnQuery.prototype, "creator", null);
|
|
94
|
-
EntityColumnQuery = __decorate([
|
|
95
|
-
(0, type_graphql_1.Resolver)(entity_column_1.EntityColumn)
|
|
96
|
-
], EntityColumnQuery);
|
|
97
|
-
exports.EntityColumnQuery = EntityColumnQuery;
|
|
98
|
-
//# sourceMappingURL=entity-column-query.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"entity-column-query.js","sourceRoot":"","sources":["../../../server/service/entity-column/entity-column-query.ts"],"names":[],"mappings":"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"}
|