Skip to content

Commit

Permalink
docs(): work on example app
Browse files Browse the repository at this point in the history
  • Loading branch information
torkelo committed Feb 11, 2016
1 parent 39bb9ce commit 50ddf79
Show file tree
Hide file tree
Showing 23 changed files with 198 additions and 45 deletions.
7 changes: 7 additions & 0 deletions examples/nginx-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.DS_Store

node_modules
tmp/*
npm-debug.log
dist/*

13 changes: 13 additions & 0 deletions examples/nginx-app/.jscs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"disallowImplicitTypeConversion": ["string"],
"disallowKeywords": ["with"],
"disallowMultipleLineBreaks": true,
"disallowMixedSpacesAndTabs": true,
"disallowTrailingWhitespace": true,
"requireSpacesInFunctionExpression": {
"beforeOpeningCurlyBrace": true
},
"disallowSpacesInsideArrayBrackets": true,
"disallowSpacesInsideParentheses": true,
"validateIndentation": 2
}
36 changes: 36 additions & 0 deletions examples/nginx-app/.jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"browser": true,
"esnext": true,

"bitwise":false,
"curly": true,
"eqnull": true,
"devel": true,
"eqeqeq": true,
"forin": false,
"immed": true,
"supernew": true,
"expr": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"noempty": true,
"undef": true,
"boss": true,
"trailing": true,
"laxbreak": true,
"laxcomma": true,
"sub": true,
"unused": true,
"maxdepth": 6,
"maxlen": 140,

"globals": {
"System": true,
"define": true,
"require": true,
"Chromath": false,
"setImmediate": true
}
}
54 changes: 54 additions & 0 deletions examples/nginx-app/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
module.exports = function(grunt) {

require('load-grunt-tasks')(grunt);

grunt.loadNpmTasks('grunt-execute');
grunt.loadNpmTasks('grunt-contrib-clean');

grunt.initConfig({

clean: ["dist"],

copy: {
src_to_dist: {
cwd: 'src',
expand: true,
src: ['**/*', '!**/*.js', '!**/*.scss'],
dest: 'dist'
},
pluginDef: {
expand: true,
src: 'plugin.json',
dest: 'dist',
}
},

watch: {
rebuild_all: {
files: ['src/**/*', 'plugin.json'],
tasks: ['default'],
options: {spawn: false}
},
},

babel: {
options: {
sourceMap: true,
presets: ["es2015"],
plugins: ['transform-es2015-modules-systemjs', "transform-es2015-for-of"],
},
dist: {
files: [{
cwd: 'src',
expand: true,
src: ['**/*.js'],
dest: 'dist',
ext:'.js'
}]
},
},

});

grunt.registerTask('default', ['clean', 'copy:src_to_dist', 'copy:pluginDef', 'babel']);
};
20 changes: 0 additions & 20 deletions examples/nginx-app/module.js

This file was deleted.

37 changes: 37 additions & 0 deletions examples/nginx-app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "kentik-app",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raintank/kentik-app-poc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/raintank/kentik-app-poc/issues"
},
"devDependencies": {
"grunt": "~0.4.5",
"babel": "~6.5.1",
"grunt-babel": "~6.0.0",
"grunt-contrib-copy": "~0.8.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-uglify": "~0.11.0",
"grunt-systemjs-builder": "^0.2.5",
"load-grunt-tasks": "~3.2.0",
"grunt-execute": "~0.2.2",
"grunt-contrib-clean": "~0.6.0"
},
"dependencies": {
"babel-plugin-transform-es2015-modules-systemjs": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"lodash": "~4.0.0"
},
"homepage": "https://github.com/raintank/kentik-app-poc#readme"
}
21 changes: 0 additions & 21 deletions examples/nginx-app/panel/module.js

This file was deleted.

1 change: 0 additions & 1 deletion examples/nginx-app/partials/config.html

This file was deleted.

2 changes: 0 additions & 2 deletions examples/nginx-app/partials/logs.html

This file was deleted.

1 change: 0 additions & 1 deletion examples/nginx-app/partials/stream.html

This file was deleted.

3 changes: 3 additions & 0 deletions examples/nginx-app/src/components/config.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<h3>
Nginx config!
</h3>
6 changes: 6 additions & 0 deletions examples/nginx-app/src/components/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

export class NginxAppConfigCtrl {
}
NginxAppConfigCtrl.templateUrl = 'components/config.html';


3 changes: 3 additions & 0 deletions examples/nginx-app/src/components/logs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<h3>
Logs page!
</h3>
6 changes: 6 additions & 0 deletions examples/nginx-app/src/components/logs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

export class LogsPageCtrl {
}
LogsPageCtrl.templateUrl = 'components/logs.html';


3 changes: 3 additions & 0 deletions examples/nginx-app/src/components/stream.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<h3>
Stream page!
</h3>
6 changes: 6 additions & 0 deletions examples/nginx-app/src/components/stream.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

export class StreamPageCtrl {
}
StreamPageCtrl.templateUrl = 'components/stream.html';


File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
9 changes: 9 additions & 0 deletions examples/nginx-app/src/module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import {LogsPageCtrl} from './components/logs';
import {StreamPageCtrl} from './components/stream';
import {NginxAppConfigCtrl} from './components/config';

export {
NginxAppConfigCtrl as ConfigCtrl,
StreamPageCtrl,
LogsPageCtrl
};
15 changes: 15 additions & 0 deletions examples/nginx-app/src/panel/module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import {PanelCtrl} from 'app/plugins/sdk';

class NginxPanelCtrl extends PanelCtrl {

constructor($scope, $injector) {
super($scope, $injector);
}

}
NginxPanelCtrl.template = '<h2>nginx!</h2>';

export {
NginxPanelCtrl as PanelCtrl
};

File renamed without changes.

0 comments on commit 50ddf79

Please sign in to comment.