diff --git a/.gitignore b/.gitignore index eced953..36d6c89 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ Desktop.ini $RECYCLE.BIN/ node_modules/ /test/* -npm-debug.log \ No newline at end of file +npm-debug.log +.idea/ \ No newline at end of file diff --git a/action/index.js b/action/index.js index 8fadfdc..a07884f 100644 --- a/action/index.js +++ b/action/index.js @@ -5,22 +5,29 @@ var ScriptBase = require('../script-base.js'); var ActionGenerator = module.exports = function ActionGenerator(args, options, config) { args[0] += 'ActionCreators'; ScriptBase.apply(this, arguments); -} +}; util.inherits(ActionGenerator, ScriptBase); ActionGenerator.prototype.createActionFile = function createActionFile() { this.option('es6'); - this.es6 = this.options.es6; - console.log(this.name); + var actionTemplate; + switch (this.architecture){ + case 'flux': + actionTemplate = 'FluxAction'; + break; + case 'reflux': + actionTemplate = 'RefluxAction'; + break; + } + + console.log('Creating ' + this.architecture + ' action'); this.generateSourceAndTest( - 'Action', + actionTemplate, 'spec/Action', - void(0), - 'actions', - false + 'actions' ); -} +}; diff --git a/app/index.js b/app/index.js index 0e3969a..818167f 100644 --- a/app/index.js +++ b/app/index.js @@ -66,16 +66,21 @@ ReactWebpackGenerator.prototype.askForReactRouter = function () { }.bind(this)); }; -ReactWebpackGenerator.prototype.askForFlux = function() { +ReactWebpackGenerator.prototype.askForArchitecture = function() { var done = this.async(); this.prompt({ - type : 'confirm', - name : 'flux', - message : 'Would you like to include flux?', + type : 'list', + name : 'architecture', + message : 'Would you like to use one of those architectures?', + choices: [ + {name:'No need for that, thanks',value:false}, + {name:'Flux',value:'flux'}, + {name:'ReFlux',value:'reflux'} + ], default : false }, function(props) { - this.env.options.flux = props.flux; - this.config.set('flux', props.flux); + this.env.options.architecture = props.architecture; + this.config.set('architecture', props.architecture); done(); }.bind(this)); }; @@ -113,7 +118,7 @@ ReactWebpackGenerator.prototype.createIndexHtml = function createIndexHtml() { ReactWebpackGenerator.prototype.packageFiles = function () { this.es6 = this.options.es6; this.reactRouter = this.env.options.reactRouter; - this.flux = this.env.options.flux; + this.architecture = this.env.options.architecture; this.stylesLanguage = this.env.options.stylesLanguage; this.template('../../templates/common/_package.json', 'package.json'); this.template('../../templates/common/_webpack.config.js', 'webpack.config.js'); diff --git a/component/index.js b/component/index.js index 59cdc95..26ca2e9 100644 --- a/component/index.js +++ b/component/index.js @@ -13,7 +13,7 @@ ComponentGenerator.prototype.createComponentFile = function createComponentFile( this.es6 = this.options.es6; - this.generateSourceAndTest( + this.generateComponentTestAndStyle( 'Component', 'spec/Component', 'styles/Component', diff --git a/main/index.js b/main/index.js index 4fe14de..6ccbb28 100644 --- a/main/index.js +++ b/main/index.js @@ -22,7 +22,7 @@ MainGenerator.prototype.createMainFile = function createMainFile() { }; MainGenerator.prototype.createDispatcher = function createDispatcher() { - if(this.env.options.flux) { + if(this.env.options.architecture=='flux') { this.appTemplate('Dispatcher', 'dispatcher/' + this.scriptAppName + 'Dispatcher'); } }; diff --git a/script-base.js b/script-base.js index 383f03a..6b6acf5 100644 --- a/script-base.js +++ b/script-base.js @@ -20,6 +20,7 @@ var Generator = module.exports = function Generator() { this.classedFileName = this._.capitalizeFile(this.name); this.classedName = this._.capitalizeClass(this.name); this.stylesLanguage = this.config.get('styles-language'); + this.architecture = this.config.get('architecture'); if (typeof this.options.appPath === 'undefined') { this.options.appPath = this.options.appPath || 'src/scripts'; @@ -60,6 +61,13 @@ var Generator = module.exports = function Generator() { util.inherits(Generator, yeoman.generators.NamedBase); Generator.prototype.appTemplate = function (src, dest) { + yeoman.generators.Base.prototype.template.apply(this, [ + path.join('javascript', src + this.scriptSuffix), + path.join(this.options.appPath, dest) + this.scriptSuffix + ]); +}; + +Generator.prototype.reactComponentTemplate = function (src, dest) { yeoman.generators.Base.prototype.template.apply(this, [ path.join('javascript', src + this.reactSuffix), path.join(this.options.appPath, dest) + this.reactSuffix @@ -88,8 +96,13 @@ Generator.prototype.htmlTemplate = function (src, dest) { ]); }; -Generator.prototype.generateSourceAndTest = function (appTemplate, testTemplate, stylesTemplate, targetDirectory, includeStyles) { +Generator.prototype.generateSourceAndTest = function (appTemplate, testTemplate, targetDirectory) { this.appTemplate(appTemplate, path.join(targetDirectory, this._.capitalizeFile(this.name))); this.testTemplate(testTemplate, path.join(targetDirectory, this._.capitalizeFile(this.name))); - if(includeStyles) this.stylesTemplate(stylesTemplate, path.join(this._.capitalizeFile(this.name))); +}; + +Generator.prototype.generateComponentTestAndStyle = function (componentTemplate, testTemplate, stylesTemplate, targetDirectory) { + this.reactComponentTemplate(componentTemplate, path.join(targetDirectory, this._.capitalizeFile(this.name))); + this.testTemplate(testTemplate, path.join(targetDirectory, this._.capitalizeFile(this.name))); + this.stylesTemplate(stylesTemplate, path.join(this._.capitalizeFile(this.name))); }; diff --git a/store/index.js b/store/index.js index 324b32b..b277abf 100644 --- a/store/index.js +++ b/store/index.js @@ -2,24 +2,35 @@ var util = require('util'); var ScriptBase = require('../script-base.js'); -var ActionGenerator = module.exports = function ActionGenerator(args, options, config) { +var StoreGenerator = module.exports = function StoreGenerator(args, options, config) { args[0] += 'Store'; ScriptBase.apply(this, arguments); } -util.inherits(ActionGenerator, ScriptBase); +util.inherits(StoreGenerator, ScriptBase); -ActionGenerator.prototype.createActionFile = function createActionFile() { +StoreGenerator .prototype.createStoreFile = function createStoreFile() { this.option('es6'); this.es6 = this.options.es6; - this.dispatcherName = this._.capitalizeFile(this.config.get('app-name')) + 'AppDispatcher'; + + var storeTemplate; + switch (this.architecture){ + case 'flux': + storeTemplate = 'FluxStore'; + this.dispatcherName = this._.capitalizeFile(this.config.get('app-name')) + 'AppDispatcher'; + break; + case 'reflux': + storeTemplate = 'RefluxStore'; + break; + } + + console.log('Creating ' + this.architecture + ' store'); + this.generateSourceAndTest( - 'Store', + storeTemplate, 'spec/Store', - void(0), - 'stores', - false + 'stores' ); -} +}; diff --git a/templates/common/_package.json b/templates/common/_package.json index 2d0e74b..2730fc7 100644 --- a/templates/common/_package.json +++ b/templates/common/_package.json @@ -10,10 +10,11 @@ "mainInput": "<% if (reactRouter) { %>main<% } else { %><%= scriptAppName %><% } %>", "mainOutput": "main", "dependencies": {<% if (reactRouter) { %> - "react-router": "^0.11.6",<% } if (flux) { %> + "react-router": "^0.11.6",<% } if (architecture === 'flux') { %> "flux": "^2.0.1", "events": "^1.0.2", - "object-assign": "^2.0.0", <% } %> + "object-assign": "^2.0.0", <% } if (architecture === 'reflux') {%> + "reflux": "^0.2.7", <% } %> "react": "~0.12.2", "normalize.css": "~3.0.3" }, diff --git a/templates/common/_webpack.config.js b/templates/common/_webpack.config.js index 6c7e765..9515856 100644 --- a/templates/common/_webpack.config.js +++ b/templates/common/_webpack.config.js @@ -30,10 +30,11 @@ module.exports = { resolve: { extensions: ['', '.js'], alias: { - 'styles': '../../../src/styles', - 'components': '../../../src/scripts/components/'<% if(flux) { %>, - 'stores': '../../../src/scripts/stores/', - 'actions': '../../../src/scripts/actions/'<% } %> + 'styles': __dirname + '/src/styles', + 'mixins': __dirname + '/src/scripts/mixins', + 'components': __dirname + '/src/scripts/components/'<% if(architecture==='flux'||architecture=='reflux') { %>, + 'stores': __dirname + '/src/scripts/stores/', + 'actions': __dirname + '/src/scripts/actions/'<% } %> } }, module: { diff --git a/templates/common/_webpack.dist.config.js b/templates/common/_webpack.dist.config.js index 4bc115d..78c3750 100644 --- a/templates/common/_webpack.dist.config.js +++ b/templates/common/_webpack.dist.config.js @@ -35,10 +35,11 @@ module.exports = { resolve: { extensions: ['', '.js'], alias: { - 'styles': '../../../src/styles', - 'components': '../../../src/scripts/components/'<% if(flux) { %>, - 'stores': '../../../src/scripts/stores/', - 'actions': '../../../src/scripts/actions/'<% } %> + 'styles': __dirname + '/src/styles', + 'mixins': __dirname + '/src/scripts/mixins', + 'components': __dirname + '/src/scripts/components/'<% if(architecture==='flux'||architecture=='reflux') { %>, + 'stores': __dirname + '/src/scripts/stores/', + 'actions': __dirname + '/src/scripts/actions/'<% } %> } }, diff --git a/templates/common/karma.conf.js b/templates/common/karma.conf.js index fdc88e5..2e7936a 100644 --- a/templates/common/karma.conf.js +++ b/templates/common/karma.conf.js @@ -8,12 +8,12 @@ module.exports = function (config) { frameworks: ['jasmine'], files: [ 'test/helpers/**/*.js', - 'test/spec/components/**/*.js'<% if(flux) { %>, + 'test/spec/components/**/*.js'<% if(architecture === 'flux'||architecture === 'reflux') { %>, 'test/spec/stores/**/*.js', 'test/spec/actions/**/*.js'<% } %> ], preprocessors: { - 'test/spec/components/**/*.js': ['webpack']<% if(flux) { %>, + 'test/spec/components/**/*.js': ['webpack']<% if(architecture === 'flux'||architecture === 'reflux') { %>, 'test/spec/stores/**/*.js': ['webpack'], 'test/spec/actions/**/*.js': ['webpack']<% } %> }, @@ -52,7 +52,7 @@ module.exports = function (config) { resolve: { alias: { 'styles': path.join(process.cwd(), './src/styles/'), - 'components': path.join(process.cwd(), './src/scripts/components/')<% if(flux) { %>, + 'components': path.join(process.cwd(), './src/scripts/components/')<% if(architecture === 'flux'||architecture === 'reflux') { %>, 'stores': '../../../src/scripts/stores/', 'actions': '../../../src/scripts/actions/'<% } %> } diff --git a/templates/javascript/Action.js b/templates/javascript/FluxAction.js similarity index 100% rename from templates/javascript/Action.js rename to templates/javascript/FluxAction.js diff --git a/templates/javascript/Store.js b/templates/javascript/FluxStore.js similarity index 100% rename from templates/javascript/Store.js rename to templates/javascript/FluxStore.js diff --git a/templates/javascript/RefluxAction.js b/templates/javascript/RefluxAction.js new file mode 100644 index 0000000..c48807f --- /dev/null +++ b/templates/javascript/RefluxAction.js @@ -0,0 +1,11 @@ +'use strict'; + +var Reflux = require('reflux'); + +var <%= classedName %> = Reflux.createActions([ + +]); + + +<% if (es6) { %> export default <%= classedName %>; <% } +else { %>module.exports = <%= classedName %>; <% } %> diff --git a/templates/javascript/RefluxStore.js b/templates/javascript/RefluxStore.js new file mode 100644 index 0000000..5da8d6c --- /dev/null +++ b/templates/javascript/RefluxStore.js @@ -0,0 +1,14 @@ +'use strict'; + +var Reflux = require('reflux'); +//var Actions = require('actions/..'); + + +var <%= classedName %> = Reflux.createStore({ + listenables: Actions, + + +}); + +<% if (es6) { %> export default <%= classedName %>; <% } + else { %>module.exports = <%= classedName %>; <% } %>