Commit 434d2b11fe8a6588c788144211a54b57a7082361
1 parent
3873b3e702
Exists in
master
primera version
Showing
8 changed files
with
298 additions
and
0 deletions
Show diff stats
.gitignore
File was created | 1 | /node_modules | |
2 | /dist | ||
3 | /tmp | ||
4 | package-lock\.json | ||
5 | src/etc/develop\.js | ||
6 | /css | ||
7 |
.jshintrc
File was created | 1 | { | |
2 | /* | ||
3 | * ENVIRONMENTS | ||
4 | * ================= | ||
5 | */ | ||
6 | |||
7 | // Define globals exposed by modern browsers. | ||
8 | "browser": true, | ||
9 | |||
10 | // Define globals exposed by jQuery. | ||
11 | "jquery": true, | ||
12 | |||
13 | // Define globals exposed by Node.js. | ||
14 | "node": true, | ||
15 | |||
16 | // Allow ES6. | ||
17 | "esversion": 6, | ||
18 | |||
19 | /* | ||
20 | * ENFORCING OPTIONS | ||
21 | * ================= | ||
22 | */ | ||
23 | |||
24 | // Force all variable names to use either camelCase style or UPPER_CASE | ||
25 | // with underscores. | ||
26 | "camelcase": true, | ||
27 | |||
28 | // Prohibit use of == and != in favor of === and !==. | ||
29 | "eqeqeq": true, | ||
30 | |||
31 | // Enforce tab width of 2 spaces. | ||
32 | "indent": 4, | ||
33 | |||
34 | // Prohibit use of a variable before it is defined. | ||
35 | "latedef": true, | ||
36 | |||
37 | // Enforce line length to 100 characters | ||
38 | "maxlen": 100, | ||
39 | |||
40 | // Require capitalized names for constructor functions. | ||
41 | "newcap": true, | ||
42 | |||
43 | // Enforce use of single quotation marks for strings. | ||
44 | "quotmark": "single", | ||
45 | |||
46 | // Enforce placing 'use strict' at the top function scope | ||
47 | "strict": false, | ||
48 | |||
49 | // Prohibit use of explicitly undeclared variables. | ||
50 | "undef": true, | ||
51 | |||
52 | // Warn when variables are defined but never used. | ||
53 | "unused": true, | ||
54 | |||
55 | // Para que funcione en angular | ||
56 | "predef": ["angular", "alert", "spyOn", "expect", "it", "inject", "beforeEach", "describe"], | ||
57 | /* | ||
58 | * RELAXING OPTIONS | ||
59 | * ================= | ||
60 | */ | ||
61 | |||
62 | // Suppress warnings about == null comparisons. | ||
63 | "eqnull": true | ||
64 | } | ||
65 |
gulpfile.js
File was created | 1 | const clean = require('gulp-clean'); | |
2 | const concat = require('gulp-concat'); | ||
3 | const connect = require('gulp-connect'); | ||
4 | const gulp = require('gulp'); | ||
5 | const htmlmin = require('gulp-htmlmin'); | ||
6 | const jshint = require('gulp-jshint'); | ||
7 | const pump = require('pump'); | ||
8 | const rename = require('gulp-rename'); | ||
9 | const replace = require('gulp-replace'); | ||
10 | const templateCache = require('gulp-angular-templatecache'); | ||
11 | const uglify = require('gulp-uglify-es').default; | ||
12 | const sass = require('gulp-sass'); | ||
13 | |||
14 | var paths = { | ||
15 | dist: 'dist/', | ||
16 | srcJS: 'src/js/*.js', | ||
17 | srcViews: 'src/views/*.html', | ||
18 | tmp: 'tmp' | ||
19 | }; | ||
20 | |||
21 | gulp.task('templates', function() { | ||
22 | return pump( | ||
23 | [ | ||
24 | gulp.src(paths.srcViews), | ||
25 | htmlmin(), | ||
26 | templateCache('views.js', { | ||
27 | module: 'focaBotoneraFacturador', | ||
28 | root: '' | ||
29 | }), | ||
30 | gulp.dest(paths.tmp) | ||
31 | ] | ||
32 | ); | ||
33 | }); | ||
34 | |||
35 | gulp.task('sass', function() { | ||
36 | return gulp.src('src/sass/*.scss') | ||
37 | .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) | ||
38 | .pipe(gulp.dest('css')); | ||
39 | }); | ||
40 | |||
41 | gulp.task('uglify', ['templates'], function() { | ||
42 | return pump( | ||
43 | [ | ||
44 | gulp.src([ | ||
45 | paths.srcJS, | ||
46 | 'tmp/views.js' | ||
47 | ]), | ||
48 | concat('foca-botonera-facturador.js'), | ||
49 | replace('src/views/', ''), | ||
50 | replace("'ngSanitize', 'onScreenKeyboard'", ''), | ||
51 | gulp.dest(paths.tmp), | ||
52 | rename('foca-botonera-facturador.min.js'), | ||
53 | uglify(), | ||
54 | gulp.dest(paths.dist) | ||
55 | ] | ||
56 | ); | ||
57 | }); | ||
58 | |||
59 | gulp.task('clean', function() { | ||
60 | return gulp.src(['tmp', 'dist'], {read: false}) | ||
61 | .pipe(clean()); | ||
62 | }); | ||
63 | |||
64 | gulp.task('pre-commit', function() { | ||
65 | pump( | ||
66 | [ | ||
67 | gulp.src(paths.srcJS), | ||
68 | jshint('.jshintrc'), | ||
69 | jshint.reporter('default'), | ||
70 | jshint.reporter('fail') | ||
71 | ] | ||
72 | ); | ||
73 | }); | ||
74 | |||
75 | gulp.task('webserver', function() { | ||
76 | pump [ | ||
77 | connect.server( | ||
78 | { | ||
79 | port: 3000 | ||
80 | } | ||
81 | ) | ||
82 | ] | ||
83 | }); | ||
84 | |||
85 | gulp.task('clean-post-install', function() { | ||
86 | return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', | ||
87 | 'index.html'], {read: false}) | ||
88 | .pipe(clean()); | ||
89 | }); | ||
90 | |||
91 | gulp.task('default', ['webserver']); | ||
92 | |||
93 | gulp.task('watch', function() { | ||
94 | gulp.watch([paths.srcJS, paths.srcViews], ['uglify']); | ||
95 | }); | ||
96 |
index.html
File was created | 1 | <html ng-app="focaBotoneraFacturador"> | |
2 | <head> | ||
3 | <meta charset="UTF-8"> | ||
4 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
5 | |||
6 | <!--CSS--> | ||
7 | <link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/> | ||
8 | <link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet"/> | ||
9 | |||
10 | <!--VENDOR JS--> | ||
11 | <script src="node_modules/jquery/dist/jquery.min.js"></script> | ||
12 | <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script> | ||
13 | <script src="node_modules/angular/angular.min.js"></script> | ||
14 | <script src="node_modules/ui-bootstrap4/dist/ui-bootstrap-tpls.js"></script> | ||
15 | |||
16 | <!-- BUILD --> | ||
17 | <script src="src/js/app.js"></script> | ||
18 | <script src="src/js/controller.js"></script> | ||
19 | <!-- /BUILD --> | ||
20 | |||
21 | </head> | ||
22 | <body> | ||
23 | <foca-botonera-facturador> | ||
24 | </body> | ||
25 | </html> | ||
26 |
package.json
File was created | 1 | { | |
2 | "name": "foca-botonera-facturador", | ||
3 | "version": "0.0.1", | ||
4 | "description": "Componente de nombre de la empresa", | ||
5 | "main": "index.js", | ||
6 | "scripts": { | ||
7 | "test": "echo \"Error: no test specified\" && exit 1", | ||
8 | "compile": "gulp uglify", | ||
9 | "gulp-pre-commit": "gulp pre-commit", | ||
10 | "postinstall": "npm run compile && gulp clean-post-install", | ||
11 | "install-dev": "npm install -D angular bootstrap font-awesome gulp gulp-angular-templatecache gulp-clean gulp-concat gulp-connect gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-uglify-es jasmine-core jquery jshint pre-commit pump && npm install angular-sanitize" | ||
12 | }, | ||
13 | "pre-commit": [ | ||
14 | "gulp-pre-commit" | ||
15 | ], | ||
16 | "repository": { | ||
17 | "type": "git", | ||
18 | "url": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git" | ||
19 | }, | ||
20 | "author": "Foca Software", | ||
21 | "license": "ISC", | ||
22 | "peerDependencies": { | ||
23 | "angular": "^1.7.x", | ||
24 | "bootstrap": "^4.1.x", | ||
25 | "jquery": "^3.3.x", | ||
26 | "font-awesome": "^4.7.x", | ||
27 | "gulp": "^3.9.x", | ||
28 | "gulp-concat": "2.6.x", | ||
29 | "gulp-jshint": "^2.1.x", | ||
30 | "gulp-rename": "^1.4.x", | ||
31 | "gulp-replace": "^1.0.x", | ||
32 | "gulp-uglify-es": "^1.0.x", | ||
33 | "jshint": "^2.9.x", | ||
34 | "pump": "^3.0.x" | ||
35 | }, | ||
36 | "devDependencies": { | ||
37 | "angular": "1.7.5", | ||
38 | "angular-route": "^1.7.5", | ||
39 | "angular-sanitize": "1.7.5", | ||
40 | "bootstrap": "4.1.3", | ||
41 | "font-awesome": "4.7.0", | ||
42 | "gulp": "3.9.1", | ||
43 | "gulp-angular-templatecache": "2.2.5", | ||
44 | "gulp-clean": "0.4.0", | ||
45 | "gulp-concat": "2.6.1", | ||
46 | "gulp-connect": "5.6.1", | ||
47 | "gulp-htmlmin": "5.0.1", | ||
48 | "gulp-jshint": "2.1.0", | ||
49 | "gulp-rename": "1.4.0", | ||
50 | "gulp-replace": "1.0.0", | ||
51 | "gulp-sass": "4.0.2", | ||
52 | "gulp-uglify-es": "1.0.4", | ||
53 | "jasmine-core": "3.3.0", | ||
54 | "jquery": "3.3.1", | ||
55 | "jshint": "2.9.6", | ||
56 | "pre-commit": "1.2.2", | ||
57 | "pump": "3.0.0" | ||
58 | } | ||
59 | } | ||
60 |
src/js/app.js
File was created | 1 | angular.module('focaBotoneraFacturador', []) | |
2 | .component('focaBotoneraFacturador', { | ||
3 | templateUrl: 'src/views/botonera-facturador.html', | ||
4 | controller: 'focaBotoneraFacturadorController', | ||
5 | bindings: { | ||
6 | botones: '<', | ||
7 | extra: '<' | ||
8 | } | ||
9 | }); | ||
10 |
src/js/controller.js
File was created | 1 | angular.module('focaBotoneraFacturador') | |
2 | .controller('focaBotoneraFacturadorController', [ | ||
3 | '$scope', | ||
4 | function($scope) { | ||
5 | this.$onInit = function() { | ||
6 | $scope.botones = $scope.$ctrl.botones; | ||
7 | |||
8 | for(var i = 0; i < $scope.$ctrl.extra; i++) { | ||
9 | $scope.botones.push(''); | ||
10 | } | ||
11 | }; | ||
12 | |||
13 | function nombreFuncion(string) { | ||
14 | var texto = 'seleccionar'; | ||
15 | var arr = string.split(' '); | ||
16 | arr.forEach(function(palabra) { | ||
17 | palabra = palabra.charAt(0).toUpperCase() + palabra.slice(1); | ||
18 | texto += palabra; | ||
19 | }); | ||
20 | return texto; | ||
21 | } | ||
22 | |||
23 | $scope.ejecutarFuncion = function(nombre) { | ||
24 | $scope.$parent[nombreFuncion(nombre)](); | ||
25 | }; | ||
26 | }]); | ||
27 |
src/views/botonera-facturador.html
File was created | 1 | <div | |
2 | class="col-6 col-sm-2 px-1 py-1 m-auto m-md-0" | ||
3 | ng-repeat="boton in botones track by $index" | ||
4 | ng-class="{'d-none d-md-grid': boton == ''}"> | ||
5 | <button | ||
6 | type="button" | ||
7 | class="btn btn-default btn-block btn-xs text-center py-1 rounded border border-light" | ||
8 | ng-click="(boton != '') ? ejecutarFuncion(boton) : null" | ||
9 | ng-class="{'d-sm-block h-100': boton == ''}" | ||
10 | > | ||
11 | <img src="../img/abmPrecios.png" alt="" ng-if="boton !== ''"> | ||
12 | <span>{{boton}}</span> | ||
13 | </button> | ||
14 | </div> | ||
15 |