codehooks-js 1.2.13 → 1.2.14
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/crudlify/index.mjs +1 -1
- package/crudlify/lib/schema/yup/index.mjs +16 -10
- package/index.js +8 -2
- package/package.json +1 -1
- package/types/index.d.ts +8 -1
package/crudlify/index.mjs
CHANGED
|
@@ -15,7 +15,6 @@ let _query = null;
|
|
|
15
15
|
let _eventHooks = null;
|
|
16
16
|
|
|
17
17
|
export default async function crudlify(app, schema = {}, options = { schema: "yup", query: "q2m", prefix: "" }) {
|
|
18
|
-
console.log('Init crudlify', schema, options)
|
|
19
18
|
_schema = schema;
|
|
20
19
|
_opt = options;
|
|
21
20
|
if (_opt.prefix === undefined || _opt.prefix === '/') {
|
|
@@ -111,6 +110,7 @@ async function createFunc(req, res) {
|
|
|
111
110
|
if (_schema[collection] != undefined) {
|
|
112
111
|
|
|
113
112
|
if (_schema[collection] != null) {
|
|
113
|
+
console.debug('validate', document)
|
|
114
114
|
_validate(_schema[collection], document, _opt)
|
|
115
115
|
.then(async function (value) {
|
|
116
116
|
document = _cast(_schema[collection], value)
|
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
const debug = console.debug;
|
|
2
2
|
|
|
3
3
|
export const validate = (schema, document) => {
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
return new Promise(async (resolve, reject) => {
|
|
6
|
+
debug('Validate Yup', document)
|
|
6
7
|
if (schema == null) {
|
|
7
8
|
debug('Null validator')
|
|
8
|
-
resolve(
|
|
9
|
+
resolve(document)
|
|
9
10
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
try {
|
|
12
|
+
const valid = await schema.validate(document);
|
|
13
|
+
console.debug('validated result', valid)
|
|
14
|
+
if (valid) {
|
|
15
|
+
debug('Validate ok', valid)
|
|
16
|
+
resolve(document)
|
|
17
|
+
} else {
|
|
18
|
+
debug('Validate error', valid)
|
|
19
|
+
reject(valid)
|
|
20
|
+
}
|
|
21
|
+
} catch (error) {
|
|
22
|
+
console.error('Yup error', error)
|
|
23
|
+
reject(error)
|
|
18
24
|
}
|
|
19
25
|
});
|
|
20
26
|
}
|
package/index.js
CHANGED
|
@@ -22,7 +22,8 @@ class Codehooks {
|
|
|
22
22
|
datastore = null;
|
|
23
23
|
listeners = [];
|
|
24
24
|
workers = {};
|
|
25
|
-
realtime = {}
|
|
25
|
+
realtime = {};
|
|
26
|
+
startup = {};
|
|
26
27
|
|
|
27
28
|
post = (path, ...hook) => {
|
|
28
29
|
this.routes[`POST ${createRoute(path)}`] = hook;
|
|
@@ -118,7 +119,7 @@ class Codehooks {
|
|
|
118
119
|
})
|
|
119
120
|
}
|
|
120
121
|
|
|
121
|
-
init = () => {
|
|
122
|
+
init = (...hook) => {
|
|
122
123
|
const manifest = {
|
|
123
124
|
workerhooks: this.workers,
|
|
124
125
|
routehooks: this.routes,
|
|
@@ -131,8 +132,13 @@ class Codehooks {
|
|
|
131
132
|
realtime: this.realtime,
|
|
132
133
|
app: this
|
|
133
134
|
};
|
|
135
|
+
if (hook) {
|
|
136
|
+
manifest.startup = hook;
|
|
137
|
+
}
|
|
134
138
|
return manifest;
|
|
135
139
|
};
|
|
140
|
+
// alias
|
|
141
|
+
start = this.init;
|
|
136
142
|
|
|
137
143
|
useExpress = async (express, options) => {
|
|
138
144
|
cronjob = import("./cronjob.mjs")
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -894,7 +894,14 @@ declare class Codehooks {
|
|
|
894
894
|
* export default app.init();
|
|
895
895
|
* @returns {Object} App instance
|
|
896
896
|
*/
|
|
897
|
-
init: () => any;
|
|
897
|
+
init: (cb?: any) => any;
|
|
898
|
+
/**
|
|
899
|
+
* Alias for app.init()
|
|
900
|
+
* @example
|
|
901
|
+
* export default app.start();
|
|
902
|
+
* @returns {Object} App instance
|
|
903
|
+
*/
|
|
904
|
+
start: (cb?: any) => any;
|
|
898
905
|
/**
|
|
899
906
|
* Use Node Express app to run standalone
|
|
900
907
|
* All Codehooks routes will be applied as Express Routes
|