|
| 1 | +"use_strict"; |
| 2 | + |
| 3 | +var yeoman = require('yeoman-generator'); |
| 4 | +var chalk = require('chalk'); |
| 5 | +var fs = require('fs'); |
| 6 | +var config = require('../config'); |
| 7 | + |
| 8 | +_storeUrl = '/' + config.src + 'stores/'; |
| 9 | +_actionUrl = '/' + config.src + 'actions/'; |
| 10 | + |
| 11 | + |
| 12 | +_insertActionType = function (actionName) { |
| 13 | + return "\t"+this.constantName + ":null,"; |
| 14 | +}; |
| 15 | + |
| 16 | +_insertPayloadListener = function () { |
| 17 | + return "\ |
| 18 | + case ActionTypes."+this.constantName+":\n\ |
| 19 | + //place code here\n\ |
| 20 | + "+this.storeName.replace('.js','')+".emitChange();\n\ |
| 21 | + break;\n\ |
| 22 | + "; |
| 23 | +}; |
| 24 | + |
| 25 | +_insertActionCreator = function (actionName) { |
| 26 | + return "\ |
| 27 | + "+actionName+":function(data){\n\ |
| 28 | + Dispatcher."+this.actionType+"({\n\ |
| 29 | + actionType: ActionTypes."+this.constantName+",\n\ |
| 30 | + data:data\n\ |
| 31 | + });\n\ |
| 32 | + }\ |
| 33 | + "; |
| 34 | +}; |
| 35 | + |
| 36 | +module.exports = yeoman.generators.Base.extend({ |
| 37 | + initializing: function (name) { |
| 38 | + this.log('Creating new action: ' + chalk.green(name)); |
| 39 | + |
| 40 | + this.argument('name', { |
| 41 | + required: true, |
| 42 | + type: String, |
| 43 | + desc: 'Action name' |
| 44 | + }); |
| 45 | + }, |
| 46 | + _getDirFileList:function (url) { |
| 47 | + choices = [{ |
| 48 | + name: "Skip", |
| 49 | + value: false |
| 50 | + }]; |
| 51 | + list = fs.readdirSync(process.cwd() + url); |
| 52 | + list.forEach(function (file) { |
| 53 | + choices.push({ |
| 54 | + name: file, |
| 55 | + value: file |
| 56 | + }); |
| 57 | + }); |
| 58 | + return choices; |
| 59 | + }, |
| 60 | + prompting: function (argument) { |
| 61 | + var done = this.async(); |
| 62 | + |
| 63 | + var prompts = [{ |
| 64 | + type: 'input', |
| 65 | + name: 'constantName', |
| 66 | + message: 'Type constant name', |
| 67 | + validate: function (value) { |
| 68 | + if (!isNaN(value)) return false; |
| 69 | + return Boolean(value); |
| 70 | + } |
| 71 | + }, { |
| 72 | + type: 'list', |
| 73 | + name: 'store', |
| 74 | + message: 'Would you like to create payload listener at store?', |
| 75 | + choices: this._getDirFileList.call(this, _storeUrl), |
| 76 | + default: 0 |
| 77 | + },{ |
| 78 | + type: 'list', |
| 79 | + name: 'actionFile', |
| 80 | + message: 'Where would you like to create an action method?', |
| 81 | + choices: this._getDirFileList.call(this, _actionUrl), |
| 82 | + default: 0 |
| 83 | + }, { |
| 84 | + type: 'list', |
| 85 | + name: 'actionType', |
| 86 | + message: 'What kind of action would you like to create?', |
| 87 | + choices: [{ |
| 88 | + name: "Skip", |
| 89 | + value: false |
| 90 | + }, { |
| 91 | + name: "View action", |
| 92 | + value: 'handleViewAction' |
| 93 | + }], |
| 94 | + default: 0 |
| 95 | + }]; |
| 96 | + |
| 97 | + |
| 98 | + this.prompt(prompts, function (props) { |
| 99 | + this.constantName = props.constantName.toUpperCase(); |
| 100 | + this.storeName = props.store; |
| 101 | + this.actionType = props.actionType; |
| 102 | + this.actionFile = props.actionFile; |
| 103 | + |
| 104 | + done(); |
| 105 | + }.bind(this)); |
| 106 | + |
| 107 | + }, |
| 108 | + |
| 109 | + route: function (name) { |
| 110 | + var hook = '#===== yeoman hook =====#', |
| 111 | + path = config.src + 'constants/ActionTypes.js', |
| 112 | + file = this.readFileAsString(path), |
| 113 | + insert = _insertActionType.call(this); |
| 114 | + |
| 115 | + if (file && file.indexOf(insert) === -1) { |
| 116 | + this.write(path, file.replace(hook, insert + '\n\t' + hook)); |
| 117 | + } |
| 118 | + |
| 119 | + if (this.storeName) { |
| 120 | + // add payload listener |
| 121 | + path = config.src + 'stores/' + this.storeName; |
| 122 | + file = this.readFileAsString(path); |
| 123 | + insert = _insertPayloadListener.call(this); |
| 124 | + |
| 125 | + if (file && file.indexOf(insert) === -1) { |
| 126 | + this.write(path, file.replace(hook, insert + '\n\t\t' + hook)); |
| 127 | + } |
| 128 | + } |
| 129 | + |
| 130 | + if (this.actionType && this.actionFile) { |
| 131 | + // add action |
| 132 | + path = config.src + 'actions/' + this.actionFile; |
| 133 | + file = this.readFileAsString(path); |
| 134 | + insert = _insertActionCreator.call(this,name); |
| 135 | + |
| 136 | + if (file && file.indexOf(insert) === -1) { |
| 137 | + this.write(path, file.replace(hook, insert + '\n\t' + hook)); |
| 138 | + } |
| 139 | + } |
| 140 | + |
| 141 | + }, |
| 142 | +}); |
0 commit comments