@nocobase/plugin-data-source-main 1.5.0-beta.9 → 1.5.1

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.
@@ -8,13 +8,13 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/client": "1.5.0-beta.9",
12
- "@nocobase/database": "1.5.0-beta.9",
13
- "@nocobase/plugin-error-handler": "1.5.0-beta.9",
14
- "@nocobase/server": "1.5.0-beta.9",
11
+ "@nocobase/client": "1.5.1",
12
+ "@nocobase/database": "1.5.1",
13
+ "@nocobase/plugin-error-handler": "1.5.1",
14
+ "@nocobase/server": "1.5.1",
15
15
  "lodash": "4.17.21",
16
- "@nocobase/test": "1.5.0-beta.9",
17
- "@nocobase/utils": "1.5.0-beta.9",
16
+ "@nocobase/test": "1.5.1",
17
+ "@nocobase/utils": "1.5.1",
18
18
  "sequelize": "6.35.2",
19
19
  "dayjs": "1.11.10"
20
20
  };
@@ -83,7 +83,7 @@ function afterCreateForForeignKeyField(db) {
83
83
  }
84
84
  return data;
85
85
  }
86
- async function createFieldIfNotExists({ values, transaction }) {
86
+ async function createFieldIfNotExists({ values, transaction, interfaceType = null }) {
87
87
  const { collectionName, name } = values;
88
88
  if (!collectionName || !name) {
89
89
  throw new Error(`field options invalid`);
@@ -104,13 +104,17 @@ function afterCreateForForeignKeyField(db) {
104
104
  instance.set("isForeignKey", true);
105
105
  await instance.save({ transaction });
106
106
  } else {
107
- const creatInstance = await r.create({
107
+ const createOptions = {
108
108
  values: {
109
109
  isForeignKey: true,
110
110
  ...values
111
111
  },
112
112
  transaction
113
- });
113
+ };
114
+ if (interfaceType === "m2o") {
115
+ createOptions["context"] = {};
116
+ }
117
+ const creatInstance = await r.create(createOptions);
114
118
  creatInstance.set("sort", 1);
115
119
  await creatInstance.save({ transaction });
116
120
  }
@@ -149,13 +153,15 @@ function afterCreateForForeignKeyField(db) {
149
153
  collectionName: target,
150
154
  ...values
151
155
  },
156
+ interfaceType,
152
157
  transaction
153
158
  });
154
159
  } else if (["obo", "m2o"].includes(interfaceType)) {
155
160
  const values = generateFkOptions(collectionName, foreignKey);
156
161
  await createFieldIfNotExists({
157
162
  values: { collectionName, ...values },
158
- transaction
163
+ transaction,
164
+ interfaceType
159
165
  });
160
166
  } else if (["linkTo", "m2m"].includes(interfaceType)) {
161
167
  if (type !== "belongsToMany") {
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { Migration } from '@nocobase/server';
10
+ export default class extends Migration {
11
+ on: string;
12
+ up(): Promise<void>;
13
+ }
@@ -0,0 +1,59 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+
10
+ var __defProp = Object.defineProperty;
11
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
+ var __getOwnPropNames = Object.getOwnPropertyNames;
13
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+ var update_bigint_to_unixtimestamp_exports = {};
28
+ __export(update_bigint_to_unixtimestamp_exports, {
29
+ default: () => update_bigint_to_unixtimestamp_default
30
+ });
31
+ module.exports = __toCommonJS(update_bigint_to_unixtimestamp_exports);
32
+ var import_server = require("@nocobase/server");
33
+ /* istanbul ignore file -- @preserve */
34
+ class update_bigint_to_unixtimestamp_default extends import_server.Migration {
35
+ on = "afterLoad";
36
+ async up() {
37
+ var _a, _b;
38
+ const Field = this.context.db.getRepository("fields");
39
+ const fields = await Field.find({
40
+ filter: {
41
+ interface: "unixTimestamp",
42
+ type: "bigInt"
43
+ }
44
+ });
45
+ for (const field of fields) {
46
+ const uiSchema = field.get("uiSchema");
47
+ uiSchema["x-component-props"] = {
48
+ picker: "date",
49
+ dateFormat: "YYYY-MM-DD",
50
+ timeFormat: "HH:mm:ss",
51
+ showTime: ((_a = uiSchema["x-component-props"]) == null ? void 0 : _a.showTime) || true,
52
+ accuracy: ((_b = uiSchema["x-component-props"]) == null ? void 0 : _b.accuracy) || "second"
53
+ };
54
+ field.set("type", "unixTimestamp");
55
+ field.set("uiSchema", uiSchema);
56
+ await field.save();
57
+ }
58
+ }
59
+ }
@@ -22,5 +22,6 @@ export declare class FieldModel extends MagicAttributeModel {
22
22
  }): Promise<void>;
23
23
  syncReferenceCheckOption(options: Transactionable): Promise<void>;
24
24
  protected getFieldCollection(): Collection | null;
25
+ toJSON(): any;
25
26
  }
26
27
  export {};
@@ -7,9 +7,11 @@
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
9
 
10
+ var __create = Object.create;
10
11
  var __defProp = Object.defineProperty;
11
12
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
13
  var __getOwnPropNames = Object.getOwnPropertyNames;
14
+ var __getProtoOf = Object.getPrototypeOf;
13
15
  var __hasOwnProp = Object.prototype.hasOwnProperty;
14
16
  var __export = (target, all) => {
15
17
  for (var name in all)
@@ -23,6 +25,14 @@ var __copyProps = (to, from, except, desc) => {
23
25
  }
24
26
  return to;
25
27
  };
28
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
29
+ // If the importer is in node compatibility mode or this is not an ESM
30
+ // file that has been converted to a CommonJS file using a Babel-
31
+ // compatible transform (i.e. "__esModule" has not been set), then set
32
+ // "default" to the CommonJS "module.exports" for node compatibility.
33
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
34
+ mod
35
+ ));
26
36
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
37
  var field_exports = {};
28
38
  __export(field_exports, {
@@ -30,6 +40,7 @@ __export(field_exports, {
30
40
  });
31
41
  module.exports = __toCommonJS(field_exports);
32
42
  var import_database = require("@nocobase/database");
43
+ var import_lodash = __toESM(require("lodash"));
33
44
  class FieldModel extends import_database.MagicAttributeModel {
34
45
  get db() {
35
46
  return this.constructor.database;
@@ -48,10 +59,13 @@ class FieldModel extends import_database.MagicAttributeModel {
48
59
  if (skipExist && collection.hasField(name)) {
49
60
  return collection.getField(name);
50
61
  }
51
- const options = this.get();
62
+ const options = this.toJSON();
52
63
  const field = await (async () => {
53
64
  await new Promise((resolve) => setTimeout(resolve, 0));
54
- return collection.setField(name, options);
65
+ return collection.setField(name, {
66
+ ...options,
67
+ __sort: this.get("sort")
68
+ });
55
69
  })();
56
70
  await this.db.emitAsync("field:loaded", {
57
71
  fieldKey: this.get("key"),
@@ -169,6 +183,13 @@ class FieldModel extends import_database.MagicAttributeModel {
169
183
  }
170
184
  return this.db.getCollection(collectionName);
171
185
  }
186
+ toJSON() {
187
+ const json = super.toJSON();
188
+ if (json.interface === "unixTimestamp" && json.accuracy) {
189
+ import_lodash.default.set(json, "uiSchema.x-component-props.accuracy", json.accuracy);
190
+ }
191
+ return json;
192
+ }
172
193
  }
173
194
  // Annotate the CommonJS export names for ESM import in node:
174
195
  0 && (module.exports = {
@@ -61,7 +61,7 @@ var collections_default = {
61
61
  ...field.options
62
62
  };
63
63
  }),
64
- "sort"
64
+ "__sort"
65
65
  );
66
66
  results.push(obj);
67
67
  });
@@ -103,6 +103,11 @@ class PluginDataSourceMainServer extends import_server.Plugin {
103
103
  }
104
104
  });
105
105
  this.app.db.on("collections.beforeCreate", (0, import_beforeCreateForViewCollection.beforeCreateForViewCollection)(this.db));
106
+ this.app.db.on("collections.beforeCreate", async (model, options) => {
107
+ if (this.app.db.getCollection(model.get("name")) && model.get("from") !== "db2cm" && !model.get("isThrough")) {
108
+ throw new Error(`Collection named ${model.get("name")} already exists`);
109
+ }
110
+ });
106
111
  this.app.db.on(
107
112
  "collections.afterSaveWithAssociations",
108
113
  async (model, { context, transaction }) => {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName.zh-CN": "数据源:主数据库",
5
5
  "description": "NocoBase main database, supports relational databases such as PostgreSQL, MySQL, MariaDB and so on.",
6
6
  "description.zh-CN": "NocoBase 主数据库,支持 PostgreSQL、MySQL、MariaDB 等关系型数据库。",
7
- "version": "1.5.0-beta.9",
7
+ "version": "1.5.1",
8
8
  "main": "./dist/server/index.js",
9
9
  "homepage": "https://docs.nocobase.com/handbook/data-source-main",
10
10
  "homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/data-source-main",
@@ -22,7 +22,7 @@
22
22
  "@nocobase/test": "1.x",
23
23
  "@nocobase/utils": "1.x"
24
24
  },
25
- "gitHead": "fef0bcb5f95705cd83607f03a6c911550016281b",
25
+ "gitHead": "b16a0ff226482d0de847656ea26fd621b1d685cf",
26
26
  "keywords": [
27
27
  "Data sources"
28
28
  ]