-
Notifications
You must be signed in to change notification settings - Fork 2
/
util.js
183 lines (157 loc) · 5.23 KB
/
util.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
'use strict';
var path = require('path');
var fs = require('fs');
var chalk = require('chalk');
var glob = require('glob');
var _s = require('underscore.string');
var _ = require('lodash');
var Player = require('player');
module.exports = {
appName: function (self) {
var counter = 0, suffix = self.options['app-suffix'];
// Have to check this because of generator bug #386
process.argv.forEach(function (val) {
if (val.indexOf('--app-suffix') > -1) {
counter++;
}
});
if (counter === 0 || (typeof suffix === 'boolean' && suffix)) {
suffix = 'App';
}
return suffix ? self._.classify(suffix) : '';
},
joinPath: function (array) {
return array.join('/');
},
getPackage: function () {
return require(path.join(process.cwd(), 'package.json'));
},
getProjectConfig: function () {
return require(path.join(process.cwd(), 'project.config.js'))();
},
isFileStructureModuleBased: function (pkg) {
return pkg.structure === 'Module-Based';
},
getModulesFromFileStructure: function (scope, done) {
fs.readdir(scope.destinationPath(scope.env.options.appPath), function (err, files) {
if (files) {
var modules = [];
for (var i = 0; i < files.length; i++) {
if (files[i].indexOf('.') === -1) {
if (scope.projectConfig.ignoredModules.indexOf(files[i]) === -1) {
modules.push(files[i]);
}
}
}
done(modules);
} else {
done([]);
}
});
},
getComponentsFromFileStructure: function (scope, module, dirName, cb) {
var fullDirName = scope.destinationPath(path.join(scope.env.options.appPath, module, dirName));
fs.readdir(fullDirName, function (err, files) {
if (files) {
var components = _.uniq(files.filter(function(f) {
return f.indexOf('.module') === -1;
}).filter(function(f) {
return !fs.statSync(path.join(fullDirName, f)).isDirectory();
}).map(function(f) {
return f.replace(/\.(js|ts|html|js\.map)$/, '');
}).map(_s.classify));
cb(components);
} else {
cb([]);
}
});
},
getPromtsForModuleBasedFileStructure: function (scope, prompts) {
prompts.push(
{
type: 'list',
name: 'chosenModule',
message: 'Choose the location(modules) for your service: ',
choices: scope.modules,
default: scope.modules.indexOf('common')
}
);
},
buildMetaInformations: function (name, module) {
module = module || '';
return {
name: name,
module: this.firstCharToLowerCase(module),
lowercaseName: this.firstCharToLowerCase(name),
lowercaseModuleName: (module !== 'common') ? this.firstCharToLowerCase(module) : '',
capitalizedName: this.firstCharToUpperCase(name),
capitalizedModuleName: (module !== 'common') ? this.firstCharToUpperCase(module) : ''
};
},
buildModuleDependencies: function (text) {
if (text) {
var s = '';
var a = text.split(',');
for (var i = 0; i < a.length; i++) {
s += "'" + a[i] + "'";
if (i != a.length - 1) {
s += ', ';
}
}
return s;
}
return '';
},
firstCharToUpperCase: function (text) {
if (text === undefined) {
return undefined
}
return text.substring(0, 1).toUpperCase() + text.substring(1);
},
firstCharToLowerCase: function (text) {
if (text === undefined) {
return undefined
}
return text.substring(0, 1).toLowerCase() + text.substring(1);
},
getCreationDate: function () {
var today = new Date();
var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
return monthNames[today.getMonth()] + ', ' + today.getFullYear();
},
hirschPlay: function () {
var player = new Player(__dirname + '/hirsch.mp3');
player.play(function(err, player){
console.log('playend!');
});
setTimeout(function () {
player.stop();
}, 2200);
},
hirschSay: function () {
var icon = '';
icon += chalk.bold.grey(' /| |\\ \n');
icon += chalk.bold.grey(' `__\\\\ //__\' \n');
icon += chalk.bold.grey(' || ||') + ' .---------------. \n';
icon += chalk.bold.grey(' \\__`\\ |\'__/') + ' | ' + chalk.blue('happy') + ' | \n';
icon += chalk.bold.grey(' `_\\\\ //_\ ') + ' | ' + chalk.bold('<') + chalk.bold.red('CODING') + chalk.bold('/> ') + ' | \n';
icon += ' _.,:---;,._ \'---------------\' \n';
icon += ' \\_: :_/ \n';
icon += ' |@. .@| \n';
icon += ' | | \n';
icon += ' \\.-./ \n';
icon += ' `-\' \n';
return icon;
// /| |\
// `__\\ //__'
// || ||
// \__`\ |'__/
// `_\\ //_'
// _.,:---;,._
// \_: :_/
// |@. .@|
// | |
// ,\.-./ \
// ;;`-'
}
};