forked from ember-forge/ember-forge-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
71 lines (62 loc) · 2.04 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
/* jshint node: true */
'use strict';
var fs = require( 'fs' );
var mergeTrees = require( 'broccoli-merge-trees' );
var path = require( 'path' );
var writeFile = require( 'broccoli-file-creator' );
module.exports = {
/**
* Name of addon
*
* @type {String}
*/
name: 'ember-forge-ui',
/**
* Name of companion ember-forge-ui template addon
*
* @type {?String}
*/
emberForgeUiTemplateAddon: null,
/**
* Set name of companion ember-forge-ui template addon to local context if exists
*
* @param {String} environment
* @param {Object} appConfig
* @returns {undefined}
*/
config: function( environment, appConfig ) {
if ( appConfig.emberForgeUiTemplateAddon ) {
this.emberForgeUiTemplateAddon = appConfig.emberForgeUiTemplateAddon;
}
},
/**
* Return templates if ember-forge-ui template addon is installed, default ones if not
*
* @param {Object} tree
* @returns {Object}
*/
treeForAddonTemplates: function() {
if ( this.emberForgeUiTemplateAddon ) {
return this.treeGenerator(
path.join( this.nodeModulesPath, this.emberForgeUiTemplateAddon, 'addon', 'templates' )
);
} else {
var componentTemplateTrees = [];
var files = fs.readdirSync( path.join( this.nodeModulesPath, this.name, 'addon', 'components' ) );
var placeholderContentPath = path.join(
this.nodeModulesPath,
this.name,
'addon',
'templates',
'components'
) + path.sep + 'placeholder-content.hbs';
var placeholderContent = require( placeholderContentPath );
files.forEach( function( element ) {
componentTemplateTrees.push(
writeFile( '/components/' + element.replace( '.js', '' ) + '.hbs', placeholderContent() )
);
});
return mergeTrees( componentTemplateTrees );
}
}
};