monastery 1.41.1 → 1.41.2
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 +2 -0
- package/docs/manager/index.md +6 -3
- package/docs/manager/models.md +2 -2
- package/docs/readme.md +5 -2
- package/lib/index.js +10 -2
- package/lib/model.js +5 -3
- package/package.json +1 -1
- package/test/model.js +3 -3
- package/test/monk.js +2 -2
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.2](https://github.com/boycce/monastery/compare/1.41.1...1.41.2) (2023-10-04)
|
|
6
|
+
|
|
5
7
|
### [1.41.1](https://github.com/boycce/monastery/compare/1.41.0...1.41.1) (2023-04-17)
|
|
6
8
|
|
|
7
9
|
## [1.41.0](https://github.com/boycce/monastery/compare/1.40.5...1.41.0) (2023-04-16)
|
package/docs/manager/index.md
CHANGED
|
@@ -30,15 +30,18 @@ A monk manager instance with additional Monastery methods, i.e. `model` `models`
|
|
|
30
30
|
### Example
|
|
31
31
|
|
|
32
32
|
```js
|
|
33
|
-
|
|
33
|
+
import monastery from 'monastery'
|
|
34
|
+
const db = monastery('localhost/mydb', options)
|
|
34
35
|
```
|
|
35
36
|
|
|
36
37
|
```js
|
|
37
|
-
|
|
38
|
+
import monastery from 'monastery'
|
|
39
|
+
const db = monastery('localhost/mydb,192.168.1.1') // replica set
|
|
38
40
|
```
|
|
39
41
|
|
|
40
42
|
```js
|
|
41
|
-
|
|
43
|
+
import monastery from 'monastery'
|
|
44
|
+
monastery('localhost/mydb,192.168.1.1').then((db) => {
|
|
42
45
|
// db is the connected instance of the Manager
|
|
43
46
|
}).catch((err) => {
|
|
44
47
|
// error connecting to the database
|
package/docs/manager/models.md
CHANGED
|
@@ -9,7 +9,7 @@ Setup model definitions from a folder location
|
|
|
9
9
|
|
|
10
10
|
### Arguments
|
|
11
11
|
|
|
12
|
-
`path` *(string)*: path to model definitions, the filenames are used as the corresponding model name.
|
|
12
|
+
`path` *(string)*: path to model definitions, the filenames are used as the corresponding model name. Make sure the model definition is exported as the default
|
|
13
13
|
|
|
14
14
|
### Returns
|
|
15
15
|
|
|
@@ -23,7 +23,7 @@ db.model.{model-name}
|
|
|
23
23
|
|
|
24
24
|
```js
|
|
25
25
|
// ./models/user.js
|
|
26
|
-
export default {
|
|
26
|
+
export default { // Make sure the model definition is exported as the default
|
|
27
27
|
fields: {
|
|
28
28
|
name: { type: 'string', required: true },
|
|
29
29
|
email: { type: 'email', required: true, index: 'unique' }
|
package/docs/readme.md
CHANGED
|
@@ -24,9 +24,11 @@ $ npm install --save monastery
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
26
26
|
```javascript
|
|
27
|
+
import monastery from 'monastery'
|
|
28
|
+
|
|
27
29
|
// Initialise a monastery manager
|
|
28
|
-
const db =
|
|
29
|
-
// const db =
|
|
30
|
+
const db = monastery('localhost/mydb')
|
|
31
|
+
// const db = monastery('user:pass@localhost:port/mydb')
|
|
30
32
|
|
|
31
33
|
// Define a model
|
|
32
34
|
db.model('user', {
|
|
@@ -101,6 +103,7 @@ Coming soon...
|
|
|
101
103
|
- Split away from Monk (unless updated)
|
|
102
104
|
- Add a warning if an invalid model is referenced in jthe schema
|
|
103
105
|
- Remove leading forward slashes from custom image paths (AWS adds this as a seperate folder)
|
|
106
|
+
- double check await db.model.remove({ query: idfromparam }) doesnt cause issues for null, undefined or '', but continue to allow {}
|
|
104
107
|
|
|
105
108
|
## Versions
|
|
106
109
|
|
package/lib/index.js
CHANGED
|
@@ -93,9 +93,17 @@ let models = async function(pathname, waitForIndexes) {
|
|
|
93
93
|
}
|
|
94
94
|
let filenames = fs.readdirSync(pathname)
|
|
95
95
|
for (let filename of filenames) {
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
// Ignore folders
|
|
97
|
+
if (!filename.match(/\.[cm]?js$/)) continue
|
|
98
98
|
let name = filename.replace('.js', '')
|
|
99
|
+
let filepath = path.join(pathname, filename)
|
|
100
|
+
// We can't use require() here since we need to be able to import both CJS and ES6 modules
|
|
101
|
+
let definition = (await import(filepath))?.default
|
|
102
|
+
// When a commonJS project uses babel (e.g. `nodemon -r @babel/register`, similar to `-r esm`), import()
|
|
103
|
+
// will return ES6 model definitions in another nested `default` object
|
|
104
|
+
if (definition?.default) definition = definition.default
|
|
105
|
+
if (!definition) throw new Error(`The model definition for '${name}' must export a default object`)
|
|
106
|
+
// Wait for indexes to be created?
|
|
99
107
|
if (waitForIndexes) out[name] = await this.model(name, { ...definition, waitForIndexes })
|
|
100
108
|
else out[name] = this.model(name, definition)
|
|
101
109
|
}
|
package/lib/model.js
CHANGED
|
@@ -14,16 +14,18 @@ let Model = module.exports = function(name, opts, manager) {
|
|
|
14
14
|
*/
|
|
15
15
|
if (!(this instanceof Model)) {
|
|
16
16
|
return new Model(name, opts, this)
|
|
17
|
-
|
|
18
17
|
} else if (!name) {
|
|
19
18
|
throw 'No model name defined'
|
|
20
|
-
|
|
21
19
|
} else if (name.match(/^_/)) {
|
|
22
20
|
throw 'Model names cannot start with an underscore'
|
|
21
|
+
} else if (!opts) {
|
|
22
|
+
throw `No model definition passed for "${name}"`
|
|
23
|
+
} else if (!opts.fields) {
|
|
24
|
+
throw `We couldn't find ${name}.fields in the model definition, the model maybe setup `
|
|
25
|
+
+ `or exported incorrectly:\n${JSON.stringify(opts, null, 2)}`
|
|
23
26
|
}
|
|
24
27
|
|
|
25
28
|
// Add schema options
|
|
26
|
-
opts = opts || {}
|
|
27
29
|
Object.assign(this, {
|
|
28
30
|
...(opts.methods || {}),
|
|
29
31
|
afterFind: opts.afterFind || [],
|
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.
|
|
5
|
+
"version": "1.41.2",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "github:boycce/monastery",
|
|
8
8
|
"homepage": "https://boycce.github.io/monastery/",
|
package/test/model.js
CHANGED
|
@@ -13,7 +13,7 @@ module.exports = function(monastery, opendb) {
|
|
|
13
13
|
}})
|
|
14
14
|
|
|
15
15
|
// no fields defined
|
|
16
|
-
expect(db.model('user2').fields).toEqual({
|
|
16
|
+
expect(db.model('user2', { fields: {} }).fields).toEqual({
|
|
17
17
|
createdAt: {
|
|
18
18
|
default: expect.any(Function),
|
|
19
19
|
insertOnly: true,
|
|
@@ -73,7 +73,7 @@ module.exports = function(monastery, opendb) {
|
|
|
73
73
|
let db = (await opendb(false, { defaultObjects: true })).db
|
|
74
74
|
|
|
75
75
|
// Default fields
|
|
76
|
-
expect(db.model('user2').fields).toEqual({
|
|
76
|
+
expect(db.model('user2', { fields: {} }).fields).toEqual({
|
|
77
77
|
createdAt: {
|
|
78
78
|
default: expect.any(Function),
|
|
79
79
|
insertOnly: true,
|
|
@@ -195,7 +195,7 @@ module.exports = function(monastery, opendb) {
|
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
// Unique & text index (after model initialisation, in serial)
|
|
198
|
-
let userIndexRawModel = db.model('userIndexRaw', {})
|
|
198
|
+
let userIndexRawModel = db.model('userIndexRaw', {fields: {}})
|
|
199
199
|
await userIndexRawModel._setupIndexes({
|
|
200
200
|
email: { type: 'string', index: 'unique' },
|
|
201
201
|
})
|
package/test/monk.js
CHANGED
|
@@ -4,8 +4,8 @@ module.exports = function(monastery, opendb) {
|
|
|
4
4
|
// Setup
|
|
5
5
|
let db = (await opendb(false)).db
|
|
6
6
|
let monkdb = require('monk')(':badconnection', () => {})
|
|
7
|
-
db.model('user', {})
|
|
8
|
-
let modelNamedConnected = db.model('connected', {})
|
|
7
|
+
db.model('user', { fields: {} })
|
|
8
|
+
let modelNamedConnected = db.model('connected', { fields: {} })
|
|
9
9
|
|
|
10
10
|
// Any of our monastery properties already exist on the manager?
|
|
11
11
|
for (let name of ['connected', 'debug', 'log', 'model', 'models']) {
|