Skip to content

Commit f3a4a8a

Browse files
author
Viliam Rockai
committed
finishing basic structure of the project
1 parent 541dd9a commit f3a4a8a

9 files changed

+90
-61
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ lib-cov
1313
pids
1414
logs
1515
results
16+
test-results.xml
17+
dist/docs
1618

1719
node_modules
1820
lib

Gruntfile.js

+25-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
module.exports = function(grunt) {
44

5-
65
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
76

87
function init() {
@@ -14,7 +13,8 @@ module.exports = function(grunt) {
1413
descriptions: {
1514
'help' : 'Task list helper for your Grunt enabled projects.',
1615
'clean' : 'Deletes the content of the dist directory.',
17-
'build' : 'Builds the project (including documentation) into the dist directory.',
16+
'build' : 'Builds the project (including documentation) into the dist directory. You can specify modules to be built as arguments (' +
17+
'grunt build:buttons:notification) otherwise all available modules are built.',
1818
'test' : 'Executes the karma testsuite.',
1919
'watch' : 'Whenever js source files (from the src directory) change, the tasks executes jshint and documentation build.',
2020
'ngdocs' : 'Builds documentation into dist/docs.',
@@ -41,10 +41,6 @@ module.exports = function(grunt) {
4141
}
4242
},
4343
connect: {
44-
options: {
45-
keepalive: true
46-
},
47-
server: {},
4844
docs: {
4945
options: {
5046
base: 'dist/docs'
@@ -62,7 +58,6 @@ module.exports = function(grunt) {
6258
ignores: ['**.min.js']
6359
},
6460
files: {
65-
// TODO make list of modules optional (= specify as args or build all)
6661
src: 'src/*/*.js'
6762
}
6863
}
@@ -99,17 +94,34 @@ module.exports = function(grunt) {
9994
},
10095
js: {
10196
files: ['Gruntfile.js', 'src/*/*.js'],
102-
tasks: ['jshint', 'ngdocs'],
103-
options: {
104-
livereload: true
105-
}
97+
tasks: ['build']
10698
}
10799
}
108100
});
109101

110-
grunt.registerTask('build', ['clean', 'jshint:beforeconcat', 'jshint', 'test', 'concat', 'uglify:build', 'ngdocs']);
102+
// You can specify which modules to build as arguments of the build task.
103+
grunt.registerTask('build', 'Create bootstrap build files', function() {
104+
var concatSrc = [];
105+
106+
if (this.args.length) {
107+
this.args.forEach(function(file){
108+
if (grunt.file.exists('./src/'+file)){
109+
grunt.log.ok('Adding ' + file + ' to the build queue.');
110+
concatSrc.push('src/'+file+'/*.js');
111+
} else {
112+
grunt.fail.warn('Unable to build module \'' + file + '\'. The module doesn\'t exist.');
113+
}
114+
});
115+
116+
} else {
117+
concatSrc = 'src/*/*.js';
118+
}
119+
120+
grunt.task.run(['clean', 'jshint:beforeconcat', 'jshint', 'test', 'concat', 'uglify:build', 'ngdocs']);
121+
});
122+
111123
grunt.registerTask('default', ['build']);
112-
grunt.registerTask('ngdocs:view', ['build', 'connect:docs:livereload']);
124+
grunt.registerTask('ngdocs:view', ['build', 'connect:docs', 'watch']);
113125
grunt.registerTask('test', ['karma']);
114126
grunt.registerTask('help', ['availabletasks']);
115127

README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ This project will provide a set of common AngularJS directives for use with the
66

77
You have to install required software before you're able to use grunt:
88

9-
* Install npm - Find more information on [NPM](https://www.npmjs.org/)
10-
* Install bower - Find more information on [Bower](http://bower.io/)
11-
* Install grunt - Find more information on [Grunt](http://gruntjs.com/)
9+
* Install Node.js - Find more information on [Node.js](http://nodejs.org/)
10+
* Install npm - If npm is not already installed with Node.js, you have to install it manually. Find more information on [NPM](https://www.npmjs.org/)
11+
* Install Bower - Find more information on [Bower](http://bower.io/)
12+
* Install Grunt - Find more information on [Grunt](http://gruntjs.com/)
1213
* Install npm dependencies with:
1314
```shell
1415
npm install
@@ -18,7 +19,20 @@ npm install
1819
bower install
1920
```
2021

21-
You should have your enviroment ready now. To see which grunt tasks are available, type:
22-
```
22+
You should have your environment ready now. To see which grunt tasks are available, type:
23+
```shell
2324
grunt help
2425
```
26+
## API documentation
27+
28+
The API documentation can be built with:
29+
```shell
30+
grunt ngdocs
31+
```
32+
33+
If you're interested in reading the docs right away, you can use special target, which will start a web server:
34+
```shell
35+
grunt ngdocs:view
36+
```
37+
38+
After executing this tasks you'll be able to access the documentation at [http://localhost:8000/](http://localhost:8000/).

bower.json

+27-25
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
{
2-
"name": "angular-patternfly",
3-
"version": "0.0.0",
4-
"authors": [
5-
6-
],
7-
"description": "Angular extension of the Patternfly project.",
8-
"keywords": [
9-
],
10-
"license": "MIT",
11-
"ignore": [
12-
"**/.*",
13-
"node_modules",
14-
"bower_components",
15-
"test",
16-
"tests"
17-
],
18-
"dependencies": {
19-
"angular":"~1.2.0",
20-
"angular-animate":"~1.2.0",
21-
"angular-sanitize":"~1.2.0",
22-
"angular-touch":"~1.2.0",
23-
"angular-route":"~1.2.0"
24-
},
25-
"devDependencies": {
26-
}
2+
"name": "angular-patternfly",
3+
"version": "0.0.0",
4+
"authors": [
5+
6+
],
7+
"description": "Angular extension of the Patternfly project.",
8+
"keywords": [ "angular", "patternfly"],
9+
"license": "MIT",
10+
"ignore": [
11+
"*",
12+
"**/.*",
13+
"node_modules",
14+
"lib",
15+
"src",
16+
"misc"
17+
],
18+
"main": ["dist/angular-patternfly.js", "dist/angular-patternfly.min.js"],
19+
"dependencies": {
20+
"angular":"~1.2.0",
21+
"angular-animate":"~1.2.0",
22+
"angular-sanitize":"~1.2.0",
23+
"angular-touch":"~1.2.0",
24+
"angular-route":"~1.2.0"
25+
},
26+
"devDependencies": {
27+
},
28+
"private": true
2729
}

dist/angular-patternfly.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,36 +14,36 @@
1414
<file name="index.html">
1515
<div ng-controller="ButtonDemoCtrl">
1616
<form>
17-
<button lo-button-clear="clearMe()">Clear</button>
17+
<button pf-btn-clear="clearMe()">Clear</button>
1818
<pre>{{text}}</pre>
1919
</form>
2020
</div>
2121
</file>
2222
2323
<file name="script.js">
2424
function ButtonDemoCtrl($scope) {
25-
$scope.text = 'Text before clear.';
25+
$scope.text = 'The text visible before clicking on the clear button.';
2626
2727
$scope.clearMe = function() {
28-
$scope.text = '';
28+
$scope.text = 'Clear button clicked.';
2929
};
3030
}
3131
</file>
3232
3333
</example>
3434
*/
35-
angular.module('patternfly.buttons', []).directive('loButtonClear', function () {
35+
angular.module('patternfly.buttons', []).directive('pfBtnClear', function () {
3636
return {
3737
scope: {
38-
loButtonClear: '&'
38+
pfBtnClear: '&'
3939
},
4040
restrict: 'A',
4141
link: function (scope, elem) {
4242
elem.addClass('btn btn-default btn-lg');
4343
elem.attr('type','button');
4444
elem.bind('click', function() {
4545
scope.$apply(function() {
46-
scope.loButtonClear();
46+
scope.pfBtnClear();
4747
});
4848
});
4949
}

dist/angular-patternfly.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
"homepage": "https://github.com/patternfly/angular-patternfly",
77
"dependencies": {},
88
"devDependencies": {
9-
"connect-livereload": "~0.3.0",
109
"express": "~3.4.4",
11-
"grunt": "~0.4.1",
10+
"grunt": "~0.4.2",
1211
"grunt-available-tasks": "~0.4.3",
1312
"grunt-contrib-clean": "0.4.1",
14-
"grunt-contrib-connect": "~0.3.0",
13+
"grunt-contrib-connect": "~0.5.0",
1514
"grunt-contrib-concat": "~0.3.0",
1615
"grunt-contrib-jshint": "~0.7.0",
1716
"grunt-contrib-uglify": "~0.2.5",
@@ -29,6 +28,6 @@
2928
},
3029
"repository": "",
3130
"engines": {
32-
"node": "0.10.10"
31+
"node": ">=0.10.10"
3332
}
3433
}

src/buttons/buttons.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,36 +14,36 @@
1414
<file name="index.html">
1515
<div ng-controller="ButtonDemoCtrl">
1616
<form>
17-
<button lo-button-clear="clearMe()">Clear</button>
17+
<button pf-btn-clear="clearMe()">Clear</button>
1818
<pre>{{text}}</pre>
1919
</form>
2020
</div>
2121
</file>
2222
2323
<file name="script.js">
2424
function ButtonDemoCtrl($scope) {
25-
$scope.text = 'Text before clear.';
25+
$scope.text = 'The text visible before clicking on the clear button.';
2626
2727
$scope.clearMe = function() {
28-
$scope.text = '';
28+
$scope.text = 'Clear button clicked.';
2929
};
3030
}
3131
</file>
3232
3333
</example>
3434
*/
35-
angular.module('patternfly.buttons', []).directive('loButtonClear', function () {
35+
angular.module('patternfly.buttons', []).directive('pfBtnClear', function () {
3636
return {
3737
scope: {
38-
loButtonClear: '&'
38+
pfBtnClear: '&'
3939
},
4040
restrict: 'A',
4141
link: function (scope, elem) {
4242
elem.addClass('btn btn-default btn-lg');
4343
elem.attr('type','button');
4444
elem.bind('click', function() {
4545
scope.$apply(function() {
46-
scope.loButtonClear();
46+
scope.pfBtnClear();
4747
});
4848
});
4949
}

src/buttons/test/buttons.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('buttons', function () {
1818

1919
it('should work correctly with default model values', function () {
2020
$scope.model = false;
21-
var btn = compileButton('<button lo-button-clear>click</button>', $scope);
21+
var btn = compileButton('<button pf-btn-clear>click</button>', $scope);
2222
expect(btn).toHaveClass('btn');
2323
expect(btn).toHaveClass('btn-default');
2424
expect(btn).toHaveClass('btn-lg');

0 commit comments

Comments
 (0)