-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
67 lines (56 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
'use strict'
const buildDictionary = require('./build-dictionary')
const changeCase = require('change-case')
const _forEach = require('lodash.foreach')
module.exports = {
loadController: (rootDir, cb) => {
buildDictionary.optional({
dirname: rootDir + '/app/controllers',
filter: /^([^.]+)\.(js)$/,
replaceExpr: /^.*\//,
flatten: true
}, (err, controllers) => {
if (err) throw err
_forEach(controllers, (controllerDef, controllerId) => {
global[changeCase.pascalCase(controllerDef.globalId + ' controllers')] = controllerDef
})
cb(null, 'controller-loaded')
})
},
loadHelpers: (rootDir, cb) => {
buildDictionary.optional({
dirname: rootDir + '/app/helper',
filter: /^([^.]+)\.(js)$/,
replaceExpr: /^.*\//,
flatten: true
}, (err, services) => {
if (err) throw err
_forEach(services, (helperDef, helperId) => {
global[changeCase.pascalCase(helperDef.globalId + ' helper')] = helperDef
})
cb(null, 'helper-loaded')
})
},
loadLibraries: (rootDir, cb) => {
buildDictionary.optional({
dirname: rootDir + '/app/libs',
filter: /^([^.]+)\.(js)$/,
replaceExpr: /^.*\//,
flatten: true
}, (err, services) => {
if (err) throw err
_forEach(services, (librariesDef, librariesId) => {
global[changeCase.pascalCase(librariesDef.globalId) + 'Libs'] = librariesDef
})
cb(null, 'libraries-loaded')
})
},
loadModels: (rootDir, cb) => {
buildDictionary.optional({
dirname: rootDir + '/app/models',
filter: /^([^.]+)\.(js)$/,
replaceExpr: /^.*\//,
flatten: true
}, cb)
}
}