Skip to content

Commit 7f454f7

Browse files
committed
Initial Release
0 parents  commit 7f454f7

20 files changed

+548
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.jshintrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"node": true,
3+
"esnext": true,
4+
"bitwise": true,
5+
"camelcase": true,
6+
"curly": true,
7+
"eqeqeq": true,
8+
"immed": true,
9+
"indent": 2,
10+
"latedef": true,
11+
"newcap": true,
12+
"noarg": true,
13+
"quotmark": "single",
14+
"undef": true,
15+
"unused": true,
16+
"strict": true
17+
}

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- '0.10'
4+
before_install:
5+
- currentfolder=${PWD##*/}
6+
- if [ "$currentfolder" != 'generator-rsk' ]; then cd .. && eval "mv $currentfolder generator-rsk" && cd generator-rsk; fi

.yo-rc.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# generator-rsk [![Build Status](https://secure.travis-ci.org/proxyfabio/generator-rsk.png?branch=master)](https://travis-ci.org/proxyfabio/generator-rsk)
2+
3+
> [Yeoman](http://yeoman.io) generator
4+
5+
6+
## Getting Started
7+
8+
### What is Yeoman?
9+
10+
Trick question. It's not a thing. It's this guy:
11+
12+
![](http://i.imgur.com/JHaAlBJ.png)
13+
14+
Basically, he wears a top hat, lives in your computer, and waits for you to tell him what kind of application you wish to create.
15+
16+
Not every new computer comes with a Yeoman pre-installed. He lives in the [npm](https://npmjs.org) package repository. You only have to ask for him once, then he packs up and moves into your hard drive. *Make sure you clean up, he likes new and shiny things.*
17+
18+
```bash
19+
npm install -g yo
20+
```
21+
22+
### Yeoman Generators
23+
24+
Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create, such as a Backbone application or even a Chrome extension.
25+
26+
To install generator-rsk from npm, run:
27+
28+
```bash
29+
npm install -g generator-rsk
30+
```
31+
32+
Finally, initiate the generator:
33+
34+
```bash
35+
yo rsk
36+
```
37+
38+
### Getting To Know Yeoman
39+
40+
Yeoman has a heart of gold. He's a person with feelings and opinions, but he's very easy to work with. If you think he's too opinionated, he can be easily convinced.
41+
42+
If you'd like to get to know Yeoman better and meet some of his friends, [Grunt](http://gruntjs.com) and [Bower](http://bower.io), check out the complete [Getting Started Guide](https://github.com/yeoman/yeoman/wiki/Getting-Started).
43+
44+
45+
## License
46+
47+
MIT

app/index.js

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
"use_strict";
2+
var yeoman = require('yeoman-generator');
3+
var chalk = require('chalk');
4+
var yosay = require('yosay');
5+
6+
module.exports = yeoman.generators.Base.extend({
7+
constructor:function () {
8+
yeoman.generators.Base.apply(this,arguments);
9+
this.option('coffee');
10+
},
11+
12+
initializing: function () {
13+
this.pkg = require('../package.json');
14+
},
15+
16+
prompting: function () {
17+
var done = this.async();
18+
19+
// Have Yeoman greet the user.
20+
this.log(yosay(
21+
'Welcome to the ' + chalk.red('React-Starter-Kit') + ' generator.'
22+
));
23+
24+
var prompts = [{
25+
type: 'confirm',
26+
name: 'createTree',
27+
message: 'Would you like to install project structure?',
28+
default: true
29+
}];
30+
31+
this.prompt(prompts, function (props) {
32+
this.createTree = props.createTree;
33+
34+
done();
35+
}.bind(this));
36+
},
37+
38+
writing: {
39+
app: function () {
40+
if (!this.createTree) return;
41+
},
42+
43+
projectfiles: function () {
44+
if (!this.createTree) return;
45+
46+
this.fs.copy(
47+
this.sourceRoot()+'/**',
48+
this.destinationPath()
49+
);
50+
51+
this.fs.copy(
52+
this.sourceRoot()+'/.*',
53+
this.destinationPath()
54+
);
55+
}
56+
},
57+
58+
install: function () {
59+
this.installDependencies({
60+
skipInstall: this.options['skip-install']
61+
});
62+
}
63+
});

generators/action/index.js

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
"use_strict";
2+
3+
var yeoman = require('yeoman-generator');
4+
var chalk = require('chalk');
5+
var config = require('../config');
6+
var fs = require('fs');
7+
8+
module.exports = yeoman.generators.Base.extend({
9+
constructor:function () {
10+
yeoman.generators.Base.apply(this,arguments);
11+
this.option('coffee');
12+
},
13+
14+
initializing: function (name) {
15+
this.log('Creating new action: ' + chalk.green(name));
16+
17+
this.argument('name', {
18+
required: true,
19+
type: String,
20+
desc: 'Action name'
21+
});
22+
},
23+
24+
_getAssetsPath:function (name) {
25+
return process.cwd() + '/' + this._getAssetsUrl(name);
26+
},
27+
28+
_getAssetsUrl:function (name) {
29+
return config.src + 'constants/' + name;
30+
},
31+
32+
writing: function () {
33+
this.template('_action.js', config.src+'actions/'+ this.name +'Actions.js');
34+
35+
// check if ActionTypes & PayloadSources exists
36+
var file = 'ActionTypes.js';
37+
var path = this._getAssetsPath(file);
38+
if(!fs.existsSync(path)){
39+
this.template('_actionTypes.js', this._getAssetsUrl(file));
40+
}
41+
42+
file = 'PayloadSources.js';
43+
path = this._getAssetsPath(file);
44+
if(!fs.existsSync(path)){
45+
this.template('_payloadSources.js', this._getAssetsUrl(file));
46+
}
47+
48+
}
49+
});
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"use_strict";
2+
3+
var Dispatcher = require('../core/Dispatcher');
4+
var ActionTypes = require('../constants/ActionTypes');
5+
6+
module.exports = {
7+
8+
#===== yeoman hook =====#
9+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
var keyMirror = require('react/lib/keyMirror');
2+
3+
module.exports = keyMirror({
4+
5+
#===== yeoman hook =====#
6+
7+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var keyMirror = require('react/lib/keyMirror');
2+
3+
module.exports = keyMirror({
4+
5+
VIEW_ACTION: null,
6+
SERVER_ACTION: null
7+
8+
});

generators/addaction/index.js

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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

Comments
 (0)