-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
44 lines (33 loc) · 1.43 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var mocker = require('mocker-data-generator').default
module.exports = function (api, options) {
api.loadSource(actions => {
//console.log(options);
//Create all collections which are defined
Object.values(options.collections).forEach(collectionName => {
actions.addCollection(collectionName)
});
//Create References
Object.entries(options.refs).forEach(definition => {
const [source, refs] = definition;
//get previous generated collection
const currentCollection = actions.getCollection(options.collections[source])
//generate the reference for each defined field
Object.entries(refs).forEach(refEntry => {
const [field, refCollection] = refEntry
currentCollection.addReference(field, refCollection)
})
});
//generate the mock data
var mock = mocker()
Object.entries(options.schema).forEach(entry => {
const [schemaName, schema] = entry
mock.schema(schemaName, schema, options.amount[schemaName] || 10)
})
mock.buildSync()
Object.entries(mock.DB).forEach(entry => {
const [source, data] = entry
const currentCollection = actions.getCollection(options.collections[source])
data.forEach(element => currentCollection.addNode(element))
})
})
}