-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy path-utils.js
33 lines (27 loc) · 834 Bytes
/
-utils.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
const { dasherize } = require('ember-cli-string-utils');
const { EOL } = require('os');
function generateComponentSignature(componentName) {
let args = ` // The arguments accepted by the component${EOL} Args: {};`;
let blocks =
` // Any blocks yielded by the component${EOL}` +
` Blocks: {${EOL}` +
` default: []${EOL}` +
` };`;
let element =
` // The element to which \`...attributes\` is applied in the component template${EOL}` +
` Element: null;`;
return (
`export interface ${componentName}Signature {${EOL}` +
`${args}${EOL}` +
`${blocks}${EOL}` +
`${element}${EOL}` +
`}${EOL}`
);
}
function modulePrefixForProject(project) {
return dasherize(project.config().modulePrefix);
}
module.exports = {
generateComponentSignature,
modulePrefixForProject,
};