-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathindex.js
147 lines (122 loc) · 3.72 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
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
/* eslint-env node */
var fs = require('fs-extra');
var path = require('path');
var chalk = require('chalk');
var stringUtil = require('ember-cli-string-utils');
var EmberRouterGenerator = require('ember-router-generator');
module.exports = {
description: 'Generates a route and a template, and registers the route with the router.',
availableOptions: [
{
name: 'path',
type: String,
default: ''
},
{
name: 'skip-router',
type: Boolean,
default: false
},
{
name: 'reset-namespace',
type: Boolean
}
],
fileMapTokens: function() {
return {
__name__: function (options) {
if (options.pod) {
return 'route';
}
return options.locals.moduleName;
},
__path__: function(options) {
if (options.pod) {
return path.join(options.podPath, options.locals.moduleName);
}
return 'routes';
},
__templatepath__: function(options) {
if (options.pod) {
return path.join(options.podPath, options.locals.moduleName);
}
return 'templates';
},
__templatename__: function(options) {
if (options.pod) {
return 'template';
}
return options.locals.moduleName;
},
__root__: function(options) {
if (options.inRepoAddon) {
return path.join('lib', options.inRepoAddon, 'addon');
}
if (options.inDummy) {
return path.join('tests', 'dummy', 'app');
}
if (options.inAddon) {
return 'addon';
}
return 'app';
}
};
},
locals: function(options) {
var moduleName = options.entity.name;
if (options.resetNamespace) {
moduleName = moduleName.split('/').pop();
}
return {
moduleName: stringUtil.dasherize(moduleName)
};
},
shouldEntityTouchRouter: function(name) {
var isIndex = name === 'index';
var isBasic = name === 'basic';
var isApplication = name === 'application';
return !isBasic && !isIndex && !isApplication;
},
shouldTouchRouter: function(name, options) {
var entityTouchesRouter = this.shouldEntityTouchRouter(name);
var isDummy = !!options.dummy;
var isAddon = !!options.project.isEmberCLIAddon();
var isAddonDummyOrApp = (isDummy === isAddon);
return (entityTouchesRouter && isAddonDummyOrApp && !options.dryRun && !options.inRepoAddon && !options.skipRouter);
},
afterInstall: function(options) {
updateRouter.call(this, 'add', options);
},
afterUninstall: function(options) {
updateRouter.call(this, 'remove', options);
}
};
function updateRouter(action, options) {
var entity = options.entity;
var actionColorMap = {
add: 'green',
remove: 'red'
};
var color = actionColorMap[action] || 'gray';
if (this.shouldTouchRouter(entity.name, options)) {
writeRoute(action, entity.name, options);
this.ui.writeLine('updating router');
this._writeStatusToUI(chalk[color], action + ' route', entity.name);
}
}
function findRouter(options) {
var routerPathParts = [options.project.root];
if (options.dummy && options.project.isEmberCLIAddon()) {
routerPathParts = routerPathParts.concat(['tests', 'dummy', 'app', 'router.js']);
} else {
routerPathParts = routerPathParts.concat(['app', 'router.js']);
}
return routerPathParts;
}
function writeRoute(action, name, options) {
var routerPath = path.join.apply(null, findRouter(options));
var source = fs.readFileSync(routerPath, 'utf-8');
var routes = new EmberRouterGenerator(source);
var newRoutes = routes[action](name, options);
fs.writeFileSync(routerPath, newRoutes.code());
}