monastery 1.41.0 → 1.41.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.
package/changelog.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.41.1](https://github.com/boycce/monastery/compare/1.41.0...1.41.1) (2023-04-17)
6
+
5
7
  ## [1.41.0](https://github.com/boycce/monastery/compare/1.40.5...1.41.0) (2023-04-16)
6
8
 
7
9
  ### [1.40.5](https://github.com/boycce/monastery/compare/1.40.4...1.40.5) (2023-02-22)
@@ -43,15 +43,20 @@ Model definition object.
43
43
  pets: [{ // array of embedded documents
44
44
  name: { type: 'string' },
45
45
  type: { type: 'string' },
46
- }]
47
- // You can add a rule on the embedded document or array using the following structure
48
- pets: {
49
- type: [{
46
+ }],
47
+ // You can add a rule on an embedded-document/array using the following structure
48
+ address: {
49
+ name: { type: 'string' },
50
+ type: { type: 'string' },
51
+ schema: { minLength: 1 },
52
+ },
53
+ pets: db.arrayWithSchema(
54
+ [{
50
55
  name: { type: 'string' },
51
56
  type: { type: 'string' },
52
57
  }],
53
- minLength: 1,
54
- }
58
+ { minLength: 1 },
59
+ )
55
60
  }
56
61
  }
57
62
  ```
package/lib/model.js CHANGED
@@ -131,25 +131,6 @@ Model.prototype._setupFields = function(fields) {
131
131
  * @param {object|array} fields - subsdocument or array
132
132
  */
133
133
  util.forEach(fields, function(field, fieldName) {
134
- // Preprocess type objects
135
- if (util.isSchema(field) && typeof field.type == 'object') {
136
- if (field.schema) {
137
- this.error(`Field "${fieldName}.schema" on model "${this.name}" is ignored when using `
138
- + 'object types, simply define the schema fields alongside field.type.')
139
- delete fields[fieldName]
140
- return
141
- }
142
- if (util.isSchema(field.type)) {
143
- this.error(`"${fieldName}.type" on model "${this.name}" is a schema object, it must be either a `
144
- + 'string, subdocument or array')
145
- delete fields[fieldName]
146
- return
147
- }
148
- let fieldCache = field
149
- field = fields[fieldName] = field.type
150
- field.schema = util.omit(fieldCache, ['type'])
151
- }
152
-
153
134
  // Schema field
154
135
  if (util.isSchema(field)) {
155
136
  // No image schema pre-processing done yet by a plugin
package/lib/util.js CHANGED
@@ -109,6 +109,8 @@ module.exports = {
109
109
 
110
110
  isSubdocument: function(value) {
111
111
  /**
112
+ * "are all fields objects/arrays?"
113
+ *
112
114
  * Is the value a subdocument which contains more fields? Or a just a field definition?
113
115
  * @param {object} value - object to check
114
116
  * E.g. isSubdocument = {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "monastery",
3
3
  "description": "⛪ A straight forward MongoDB ODM built around Monk",
4
4
  "author": "Ricky Boyce",
5
- "version": "1.41.0",
5
+ "version": "1.41.1",
6
6
  "license": "MIT",
7
7
  "repository": "github:boycce/monastery",
8
8
  "homepage": "https://boycce.github.io/monastery/",
package/test/model.js CHANGED
@@ -68,58 +68,6 @@ module.exports = function(monastery, opendb) {
68
68
  ))
69
69
  })
70
70
 
71
- test('model setup with type object', async () => {
72
- // Setup
73
- let db = (await opendb(false)).db
74
- let user = db.model('user', { fields: {
75
- name: {
76
- type: { cat: { type: 'string' }}, // subdocument
77
- minLength: 4,
78
- },
79
- name2: {
80
- type: [{ type: 'string' }], // array
81
- minLength: 4,
82
- },
83
- }})
84
-
85
- // subdocument object type
86
- expect(user.fields.name).toEqual({
87
- cat: { isString: true, type: 'string' },
88
- schema: { isObject: true, type: 'object', minLength: 4 }
89
- })
90
- // array object type
91
- expect(JSON.stringify(user.fields.name2)).toEqual(JSON.stringify(
92
- [{ type: 'string', isString: true }]
93
- ))
94
- expect(user.fields.name2.schema).toEqual({
95
- type: 'array',
96
- isArray: true,
97
- minLength: 4,
98
- })
99
- })
100
-
101
- test('model setup with invalid schema type object', async () => {
102
- // Setup
103
- let db = (await opendb(false, { hideErrors: true })).db // hide debug error
104
- let user = db.model('user', { fields: {
105
- // valid subdocument
106
- name: {
107
- type: { type: 'string' },
108
- },
109
- // schema with invlaid object type
110
- name2: {
111
- type: { type: 'string' },
112
- minLength: 10,
113
- },
114
- }})
115
-
116
- expect(user.fields.name).toEqual({
117
- type: { isString: true, type: 'string' },
118
- schema: { isObject: true, type: 'object' },
119
- })
120
- expect(user.fields.name2).toEqual(undefined)
121
- })
122
-
123
71
  test('model setup with default fields', async () => {
124
72
  // Setup
125
73
  let db = (await opendb(false, { defaultObjects: true })).db
@@ -167,6 +115,52 @@ module.exports = function(monastery, opendb) {
167
115
  })
168
116
  })
169
117
 
118
+ test('model setup with schema', async () => {
119
+ // Setup
120
+ let db = (await opendb(false)).db
121
+ let objectSchemaTypeRef = { name: { type: 'string', minLength: 5 } }
122
+ let user = db.model('user', {
123
+ fields: {
124
+ pet: { ...objectSchemaTypeRef, schema: { virtual: true }},
125
+ pets: db.arrayWithSchema(
126
+ [objectSchemaTypeRef],
127
+ { virtual: true },
128
+ ),
129
+ }
130
+ })
131
+ // Object with schema
132
+ expect(user.fields.pet).toEqual({
133
+ name: {
134
+ type: 'string',
135
+ isString: true,
136
+ minLength: 5,
137
+ },
138
+ schema: {
139
+ type: 'object',
140
+ isObject: true,
141
+ virtual: true,
142
+ },
143
+ })
144
+ // Array with schema
145
+ expect(user.fields.pets[0]).toEqual({
146
+ name: {
147
+ type: 'string',
148
+ isString: true,
149
+ minLength: 5,
150
+ },
151
+ schema: {
152
+ type: 'object',
153
+ isObject: true,
154
+ },
155
+ })
156
+ expect(user.fields.pets.schema).toEqual({
157
+ type: 'array',
158
+ isArray: true,
159
+ virtual: true,
160
+ })
161
+ })
162
+
163
+
170
164
  test('model reserved rules', async () => {
171
165
  // Setup
172
166
  let db = (await opendb(false, { hideErrors: true })).db // hide debug error