@nocobase/database 1.8.22 → 1.8.24
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/lib/eager-loading/eager-loading-tree.js +2 -20
- package/lib/query-interface/postgres-query-interface.d.ts +3 -1
- package/lib/query-interface/postgres-query-interface.js +2 -2
- package/lib/query-interface/query-interface.d.ts +3 -1
- package/lib/repository.js +7 -7
- package/lib/utils.d.ts +1 -0
- package/lib/utils.js +22 -0
- package/package.json +4 -4
|
@@ -44,6 +44,7 @@ var import_lodash = __toESM(require("lodash"));
|
|
|
44
44
|
var import_sequelize = require("sequelize");
|
|
45
45
|
var import_append_child_collection_name_after_repository_find = require("../listeners/append-child-collection-name-after-repository-find");
|
|
46
46
|
var import_options_parser = require("../options-parser");
|
|
47
|
+
var import_utils = require("../utils");
|
|
47
48
|
const pushAttribute = /* @__PURE__ */ __name((node, attribute) => {
|
|
48
49
|
if (import_lodash.default.isArray(node.attributes) && !node.attributes.includes(attribute)) {
|
|
49
50
|
node.attributes.push(attribute);
|
|
@@ -85,25 +86,6 @@ const queryParentSQL = /* @__PURE__ */ __name((options) => {
|
|
|
85
86
|
)
|
|
86
87
|
SELECT ${q(targetKeyField)} AS ${q(targetKey)}, ${q(foreignKeyField)} AS ${q(foreignKey)} FROM cte`;
|
|
87
88
|
}, "queryParentSQL");
|
|
88
|
-
const processIncludes = /* @__PURE__ */ __name((includes, model, parentAs = "") => {
|
|
89
|
-
includes.forEach((include, index) => {
|
|
90
|
-
const association = model.associations[include.association];
|
|
91
|
-
if (association == null ? void 0 : association.generateInclude) {
|
|
92
|
-
includes[index] = {
|
|
93
|
-
...include,
|
|
94
|
-
...association.generateInclude(parentAs)
|
|
95
|
-
};
|
|
96
|
-
}
|
|
97
|
-
if (include.include && Array.isArray(include.include) && include.include.length > 0) {
|
|
98
|
-
const nextModel = association == null ? void 0 : association.target;
|
|
99
|
-
if (!nextModel) {
|
|
100
|
-
return;
|
|
101
|
-
}
|
|
102
|
-
processIncludes(include.include, nextModel, parentAs ? `${parentAs}->${association.as}` : association.as);
|
|
103
|
-
}
|
|
104
|
-
});
|
|
105
|
-
return includes;
|
|
106
|
-
}, "processIncludes");
|
|
107
89
|
const _EagerLoadingTree = class _EagerLoadingTree {
|
|
108
90
|
root;
|
|
109
91
|
db;
|
|
@@ -233,7 +215,7 @@ const _EagerLoadingTree = class _EagerLoadingTree {
|
|
|
233
215
|
attributes: [primaryKeyField],
|
|
234
216
|
group: `${node.model.name}.${primaryKeyField}`,
|
|
235
217
|
transaction,
|
|
236
|
-
include: processIncludes(includeForFilter, node.model)
|
|
218
|
+
include: (0, import_utils.processIncludes)(includeForFilter, node.model)
|
|
237
219
|
})).map((row) => {
|
|
238
220
|
return { row, pk: row[primaryKeyField] };
|
|
239
221
|
});
|
|
@@ -27,7 +27,9 @@ export default class PostgresQueryInterface extends QueryInterface {
|
|
|
27
27
|
currentVal: number;
|
|
28
28
|
}>;
|
|
29
29
|
collectionTableExists(collection: Collection, options?: any): Promise<any>;
|
|
30
|
-
listViews(
|
|
30
|
+
listViews(options?: {
|
|
31
|
+
schema?: string;
|
|
32
|
+
}): Promise<[unknown[], unknown]>;
|
|
31
33
|
viewDef(viewName: string): Promise<string>;
|
|
32
34
|
parseSQL(sql: string): any;
|
|
33
35
|
viewColumnUsage(options: any): Promise<{
|
|
@@ -110,9 +110,9 @@ const _PostgresQueryInterface = class _PostgresQueryInterface extends import_que
|
|
|
110
110
|
const results = await this.db.sequelize.query(sql, { type: "SELECT", transaction });
|
|
111
111
|
return results[0]["exists"];
|
|
112
112
|
}
|
|
113
|
-
async listViews() {
|
|
113
|
+
async listViews(options) {
|
|
114
114
|
var _a;
|
|
115
|
-
const targetSchema = ((_a = this.db.options) == null ? void 0 : _a.schema) || "public";
|
|
115
|
+
const targetSchema = (options == null ? void 0 : options.schema) || ((_a = this.db.options) == null ? void 0 : _a.schema) || "public";
|
|
116
116
|
const sql = targetSchema ? `
|
|
117
117
|
SELECT viewname as name, definition, schemaname as schema
|
|
118
118
|
FROM pg_views
|
|
@@ -18,7 +18,9 @@ export default abstract class QueryInterface {
|
|
|
18
18
|
sequelizeQueryInterface: SequelizeQueryInterface;
|
|
19
19
|
protected constructor(db: Database);
|
|
20
20
|
abstract collectionTableExists(collection: Collection, options?: Transactionable): Promise<boolean>;
|
|
21
|
-
abstract listViews(
|
|
21
|
+
abstract listViews(options?: {
|
|
22
|
+
schema?: string;
|
|
23
|
+
}): any;
|
|
22
24
|
abstract viewDef(viewName: string): Promise<string>;
|
|
23
25
|
abstract viewColumnUsage(options: {
|
|
24
26
|
viewName: string;
|
package/lib/repository.js
CHANGED
|
@@ -72,6 +72,7 @@ var import_hasone_repository = require("./relation-repository/hasone-repository"
|
|
|
72
72
|
var import_update_associations = require("./update-associations");
|
|
73
73
|
var import_update_guard = require("./update-guard");
|
|
74
74
|
var import_filter_utils = require("./utils/filter-utils");
|
|
75
|
+
var import_utils2 = require("./utils");
|
|
75
76
|
var import_sequelize2 = require("sequelize");
|
|
76
77
|
const debug = require("debug")("noco-database");
|
|
77
78
|
const transaction = (0, import_transaction_decorator.transactionWrapperBuilder)(function() {
|
|
@@ -134,7 +135,6 @@ const _Repository = class _Repository {
|
|
|
134
135
|
* return count by filter
|
|
135
136
|
*/
|
|
136
137
|
async count(countOptions) {
|
|
137
|
-
var _a;
|
|
138
138
|
let options = countOptions ? import_lodash.default.clone(countOptions) : {};
|
|
139
139
|
const transaction2 = await this.getTransaction(options);
|
|
140
140
|
if (countOptions == null ? void 0 : countOptions.filter) {
|
|
@@ -155,7 +155,9 @@ const _Repository = class _Repository {
|
|
|
155
155
|
...options,
|
|
156
156
|
distinct: Boolean(this.collection.model.primaryKeyAttribute) && !this.collection.isMultiFilterTargetKey()
|
|
157
157
|
};
|
|
158
|
-
if ((
|
|
158
|
+
if (Array.isArray(queryOptions.include) && queryOptions.include.length > 0) {
|
|
159
|
+
queryOptions.include = (0, import_utils2.processIncludes)(queryOptions.include, this.collection.model);
|
|
160
|
+
} else {
|
|
159
161
|
delete queryOptions.include;
|
|
160
162
|
}
|
|
161
163
|
return await this.collection.model.count({
|
|
@@ -174,7 +176,6 @@ const _Repository = class _Repository {
|
|
|
174
176
|
const tableName = this.collection.tableName();
|
|
175
177
|
try {
|
|
176
178
|
if (this.database.isMySQLCompatibleDialect()) {
|
|
177
|
-
await this.database.sequelize.query(`ANALYZE TABLE ${this.collection.getTableNameWithSchema()}`);
|
|
178
179
|
const results = await this.database.sequelize.query(
|
|
179
180
|
`
|
|
180
181
|
SELECT table_rows FROM information_schema.tables
|
|
@@ -183,17 +184,16 @@ const _Repository = class _Repository {
|
|
|
183
184
|
`,
|
|
184
185
|
{ replacements: [tableName], type: import_sequelize.QueryTypes.SELECT }
|
|
185
186
|
);
|
|
186
|
-
return Number(((_a = results == null ? void 0 : results[0]) == null ? void 0 : _a.table_rows) ?? 0);
|
|
187
|
+
return Number(((_a = results == null ? void 0 : results[0]) == null ? void 0 : _a[this.database.inDialect("mysql") ? "TABLE_ROWS" : "table_rows"]) ?? 0);
|
|
187
188
|
}
|
|
188
189
|
if (this.database.isPostgresCompatibleDialect()) {
|
|
189
|
-
await this.database.sequelize.query(`ANALYZE ${this.collection.getTableNameWithSchema()}`);
|
|
190
190
|
const results = await this.database.sequelize.query(
|
|
191
191
|
`
|
|
192
192
|
SELECT reltuples::BIGINT AS estimate
|
|
193
193
|
FROM pg_class c JOIN pg_namespace n ON c.relnamespace = n.oid
|
|
194
|
-
WHERE c.relname = ? AND n.nspname =
|
|
194
|
+
WHERE c.relname = ? AND n.nspname = ?;
|
|
195
195
|
`,
|
|
196
|
-
{ replacements: [tableName], type: import_sequelize.QueryTypes.SELECT }
|
|
196
|
+
{ replacements: [tableName, this.collection.collectionSchema()], type: import_sequelize.QueryTypes.SELECT, logging: true }
|
|
197
197
|
);
|
|
198
198
|
return Number(((_b = results == null ? void 0 : results[0]) == null ? void 0 : _b.estimate) ?? 0);
|
|
199
199
|
}
|
package/lib/utils.d.ts
CHANGED
|
@@ -16,3 +16,4 @@ export declare function percent2float(value: string): number;
|
|
|
16
16
|
export declare function isUndefinedOrNull(value: any): boolean;
|
|
17
17
|
export declare function isStringOrNumber(value: any): boolean;
|
|
18
18
|
export declare function getKeysByPrefix(keys: string[], prefix: string): string[];
|
|
19
|
+
export declare function processIncludes(includes: any[], model: any, parentAs?: string): any[];
|
package/lib/utils.js
CHANGED
|
@@ -45,6 +45,7 @@ __export(utils_exports, {
|
|
|
45
45
|
md5: () => md5,
|
|
46
46
|
patchSequelizeQueryInterface: () => patchSequelizeQueryInterface,
|
|
47
47
|
percent2float: () => percent2float,
|
|
48
|
+
processIncludes: () => processIncludes,
|
|
48
49
|
snakeCase: () => snakeCase
|
|
49
50
|
});
|
|
50
51
|
module.exports = __toCommonJS(utils_exports);
|
|
@@ -140,6 +141,26 @@ function getKeysByPrefix(keys, prefix) {
|
|
|
140
141
|
return keys.filter((key) => key.startsWith(`${prefix}.`)).map((key) => key.substring(prefix.length + 1));
|
|
141
142
|
}
|
|
142
143
|
__name(getKeysByPrefix, "getKeysByPrefix");
|
|
144
|
+
function processIncludes(includes, model, parentAs = "") {
|
|
145
|
+
includes.forEach((include, index) => {
|
|
146
|
+
const association = model.associations[include.association];
|
|
147
|
+
if (association == null ? void 0 : association.generateInclude) {
|
|
148
|
+
includes[index] = {
|
|
149
|
+
...include,
|
|
150
|
+
...association.generateInclude(parentAs)
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
if (include.include && Array.isArray(include.include) && include.include.length > 0) {
|
|
154
|
+
const nextModel = association == null ? void 0 : association.target;
|
|
155
|
+
if (!nextModel) {
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
processIncludes(include.include, nextModel, parentAs ? `${parentAs}->${association.as}` : association.as);
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
return includes;
|
|
162
|
+
}
|
|
163
|
+
__name(processIncludes, "processIncludes");
|
|
143
164
|
// Annotate the CommonJS export names for ESM import in node:
|
|
144
165
|
0 && (module.exports = {
|
|
145
166
|
checkIdentifier,
|
|
@@ -150,5 +171,6 @@ __name(getKeysByPrefix, "getKeysByPrefix");
|
|
|
150
171
|
md5,
|
|
151
172
|
patchSequelizeQueryInterface,
|
|
152
173
|
percent2float,
|
|
174
|
+
processIncludes,
|
|
153
175
|
snakeCase
|
|
154
176
|
});
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/database",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.24",
|
|
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": "1.8.
|
|
10
|
-
"@nocobase/utils": "1.8.
|
|
9
|
+
"@nocobase/logger": "1.8.24",
|
|
10
|
+
"@nocobase/utils": "1.8.24",
|
|
11
11
|
"async-mutex": "^0.3.2",
|
|
12
12
|
"chalk": "^4.1.1",
|
|
13
13
|
"cron-parser": "4.4.0",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
39
39
|
"directory": "packages/database"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "e3907742d0f42d21943f7807bb254838fafd5fff"
|
|
42
42
|
}
|