-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbase.js
73 lines (57 loc) · 1.69 KB
/
base.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
'use strict';
const Generator = require('yeoman-generator');
const _ = require('./extended-lodash');
class GeneratorBase extends Generator {
getRootPath() {
if (!this.hasOwnProperty('_rootPath')) {
this._rootPath = this.config.get('root');
}
return this._rootPath;
}
setRootPath(value) {
this._rootPath = value;
}
_componentDestinationPath() {
let dest = ['src', 'components'];
if (this.options.prefix) {
dest.push(this.options.prefix);
}
dest = dest.concat(Array.prototype.slice.apply(arguments));
return this.rootedDestinationPath.apply(this, dest);
}
_copyFile(componentName, src, dest, extension, context) {
this.fs.copyTpl(
this.templatePath(src + extension),
this._componentDestinationPath(componentName, dest + extension),
context
);
}
_createContext() {
return _.merge({
windows: process.platform === 'win32',
darwin: process.platform === 'darwin',
_
}, this.config.getAll());
}
rootedDestinationPath() {
const dest = Array.prototype.slice.apply(arguments);
if (this.getRootPath()) {
dest.unshift(this.getRootPath());
}
return this.destinationPath.apply(this, dest);
}
_enablePrefix() {
this.option('prefix', {
desc: 'Write component files to a subdirectory.',
type: String,
required: false
});
}
_requireName() {
this.argument('name', {
type: String,
required: true
});
}
}
module.exports = GeneratorBase;