@nocobase/database 2.0.0-alpha.59 → 2.0.0-alpha.60
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.
|
@@ -11,6 +11,7 @@ import { RelationRepository } from './relation-repository';
|
|
|
11
11
|
import { AssociatedOptions, CountOptions, DestroyOptions, Filter, FindOptions, TargetKey, UpdateOptions, FirstOrCreateOptions } from './types';
|
|
12
12
|
export declare abstract class MultipleRelationRepository extends RelationRepository {
|
|
13
13
|
targetRepositoryFilterOptionsBySourceValue(): Promise<any>;
|
|
14
|
+
private normalizeScope;
|
|
14
15
|
find(options?: FindOptions): Promise<any>;
|
|
15
16
|
findAndCount(options?: FindOptions): Promise<[any[], number]>;
|
|
16
17
|
count(options?: CountOptions): Promise<number>;
|
|
@@ -65,6 +65,16 @@ const _MultipleRelationRepository = class _MultipleRelationRepository extends im
|
|
|
65
65
|
[this.association.foreignKey]: filterForeignKeyValue
|
|
66
66
|
};
|
|
67
67
|
}
|
|
68
|
+
normalizeScope(scope, model) {
|
|
69
|
+
const result = {};
|
|
70
|
+
for (const [key, value] of Object.entries(scope)) {
|
|
71
|
+
const attr = model.getAttributes()[key];
|
|
72
|
+
if (attr == null ? void 0 : attr.field) {
|
|
73
|
+
result[attr.field] = value;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
return result;
|
|
77
|
+
}
|
|
68
78
|
async find(options) {
|
|
69
79
|
const targetRepository = this.targetCollection.repository;
|
|
70
80
|
const association = this.association;
|
|
@@ -74,6 +84,9 @@ const _MultipleRelationRepository = class _MultipleRelationRepository extends im
|
|
|
74
84
|
sourceKey: association.targetKey,
|
|
75
85
|
realAs: association.through.model.name
|
|
76
86
|
};
|
|
87
|
+
if (association.through.scope) {
|
|
88
|
+
oneFromTargetOptions["scope"] = this.normalizeScope(association.through.scope, association.through.model);
|
|
89
|
+
}
|
|
77
90
|
const pivotAssoc = new import_sequelize.HasOne(association.target, association.through.model, oneFromTargetOptions);
|
|
78
91
|
const appendFilter = {
|
|
79
92
|
isPivotFilter: true,
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/database",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.60",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
7
7
|
"license": "AGPL-3.0",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@nocobase/logger": "2.0.0-alpha.
|
|
10
|
-
"@nocobase/utils": "2.0.0-alpha.
|
|
9
|
+
"@nocobase/logger": "2.0.0-alpha.60",
|
|
10
|
+
"@nocobase/utils": "2.0.0-alpha.60",
|
|
11
11
|
"async-mutex": "^0.3.2",
|
|
12
12
|
"chalk": "^4.1.1",
|
|
13
13
|
"cron-parser": "4.4.0",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
40
40
|
"directory": "packages/database"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "9113d61ce85b60b7ba3d0e5ca64182d92a15ece4"
|
|
43
43
|
}
|