Commit 6e6c5fbdb9e503a92f6ba175d78066ff499178b4
0 parents
Exists in
master
Primera versión
Showing
11 changed files
with
316 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 |
.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": false, | ||
| 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 |
README.md
| File was created | 1 | # foca-modal-efectivo | |
| 2 | |||
| 3 | Ingreso de efectivo |
gulpfile.js
| File was created | 1 | const templateCache = require('gulp-angular-templatecache'); | |
| 2 | const concat = require('gulp-concat'); | ||
| 3 | const htmlmin = require('gulp-htmlmin'); | ||
| 4 | const rename = require('gulp-rename'); | ||
| 5 | const uglify = require('gulp-uglify'); | ||
| 6 | const gulp = require('gulp'); | ||
| 7 | const pump = require('pump'); | ||
| 8 | const jshint = require('gulp-jshint'); | ||
| 9 | const replace = require('gulp-replace'); | ||
| 10 | const connect = require('gulp-connect'); | ||
| 11 | const clean = require('gulp-clean'); | ||
| 12 | |||
| 13 | var paths = { | ||
| 14 | srcJS: 'src/js/*.js', | ||
| 15 | srcViews: 'src/views/*.html', | ||
| 16 | tmp: 'tmp', | ||
| 17 | dist: 'dist/' | ||
| 18 | }; | ||
| 19 | |||
| 20 | gulp.task('templates', function() { | ||
| 21 | return pump( | ||
| 22 | [ | ||
| 23 | gulp.src(paths.srcViews), | ||
| 24 | htmlmin(), | ||
| 25 | templateCache('views.js', { | ||
| 26 | module: 'focaModalEfectivo', | ||
| 27 | root: '' | ||
| 28 | }), | ||
| 29 | gulp.dest(paths.tmp) | ||
| 30 | ] | ||
| 31 | ); | ||
| 32 | }); | ||
| 33 | |||
| 34 | gulp.task('uglify', ['templates'], function() { | ||
| 35 | return pump( | ||
| 36 | [ | ||
| 37 | gulp.src([ | ||
| 38 | paths.srcJS, | ||
| 39 | 'tmp/views.js' | ||
| 40 | ]), | ||
| 41 | concat('foca-modal-efectivo.js'), | ||
| 42 | replace('src/views/', ''), | ||
| 43 | replace("['ui.bootstrap', 'focaDirectivas']", '[]'), | ||
| 44 | gulp.dest(paths.tmp), | ||
| 45 | rename('foca-modal-efectivo.min.js'), | ||
| 46 | uglify(), | ||
| 47 | gulp.dest(paths.dist) | ||
| 48 | ] | ||
| 49 | ); | ||
| 50 | }); | ||
| 51 | |||
| 52 | gulp.task('pre-commit', function() { | ||
| 53 | return pump( | ||
| 54 | [ | ||
| 55 | gulp.src(paths.srcJS), | ||
| 56 | jshint('.jshintrc'), | ||
| 57 | jshint.reporter('default'), | ||
| 58 | jshint.reporter('fail') | ||
| 59 | ] | ||
| 60 | ); | ||
| 61 | }); | ||
| 62 | |||
| 63 | gulp.task('webserver', function() { | ||
| 64 | pump [ | ||
| 65 | connect.server({port: 3000}) | ||
| 66 | ] | ||
| 67 | }); | ||
| 68 | |||
| 69 | gulp.task('clean-post-install', function() { | ||
| 70 | return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', | ||
| 71 | 'index.html'], {read: false}) | ||
| 72 | .pipe(clean()); | ||
| 73 | }); | ||
| 74 | |||
| 75 | gulp.task('default', ['webserver']); | ||
| 76 | |||
| 77 | gulp.task('watch', function() { | ||
| 78 | gulp.watch([paths.srcJS, paths.srcViews], ['uglify']); | ||
| 79 | }); | ||
| 80 |
index.html
| File was created | 1 | <html ng-app="focaModalEfectivo"> | |
| 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 | <script src="node_modules/foca-directivas/dist/foca-directivas.min.js"></script> | ||
| 16 | |||
| 17 | <!-- BUILD --> | ||
| 18 | <script src="src/js/app.js"></script> | ||
| 19 | <script src="src/js/controller.js"></script> | ||
| 20 | <script src="src/js/service.js"></script> | ||
| 21 | |||
| 22 | <!-- CONFIG PARA DEVELOP --> | ||
| 23 | <script src="src/etc/develop.js"></script> | ||
| 24 | <script type="text/javascript"> | ||
| 25 | angular.module('focaModalEfectivo') | ||
| 26 | .controller('controller', [ | ||
| 27 | '$scope', | ||
| 28 | '$uibModal', | ||
| 29 | '$timeout', | ||
| 30 | function($scope, $uibModal, $timeout) { | ||
| 31 | openModal(); | ||
| 32 | |||
| 33 | function openModal() { | ||
| 34 | var modalInstance = $uibModal.open( | ||
| 35 | { | ||
| 36 | ariaLabelledBy: 'Ingreso efectivo', | ||
| 37 | templateUrl: 'src/views/modal-efectivo.html', | ||
| 38 | controller: 'focaModalEfectivoController', | ||
| 39 | size: 'lg' | ||
| 40 | } | ||
| 41 | ); | ||
| 42 | |||
| 43 | modalInstance.result.then( | ||
| 44 | function (selectedItem) { | ||
| 45 | console.info(selectedItem); | ||
| 46 | $timeout(openModal, 500); | ||
| 47 | }, function () { | ||
| 48 | console.info('modal-component dismissed at: ' + new Date()); | ||
| 49 | $timeout(openModal, 500); | ||
| 50 | } | ||
| 51 | ); | ||
| 52 | } | ||
| 53 | } | ||
| 54 | ]); | ||
| 55 | </script> | ||
| 56 | </head> | ||
| 57 | <body ng-controller="controller"> | ||
| 58 | </body> | ||
| 59 | </html> | ||
| 60 |
package.json
| File was created | 1 | { | |
| 2 | "name": "foca-modal-efectivo", | ||
| 3 | "version": "0.0.1", | ||
| 4 | "description": "Modal de ingreso efectivo", | ||
| 5 | "main": "index.js", | ||
| 6 | "scripts": { | ||
| 7 | "test": "echo \"Error: no test specified\" && exit 1", | ||
| 8 | "gulp-pre-commit": "gulp pre-commit", | ||
| 9 | "compile": "gulp uglify", | ||
| 10 | "postinstall": "npm run compile && gulp clean-post-install", | ||
| 11 | "install-dev": "npm install -D angular font-awesome pump jquery bootstrap ui-bootstrap4 jshint gulp gulp-uglify gulp-concat gulp-htmlmin gulp-rename gulp-uglify gulp-jshint gulp-replace gulp-connect gulp-clean gulp-angular-templatecache git+http://git.focasoftware.com/npm/foca-directivas.git" | ||
| 12 | }, | ||
| 13 | "pre-commit": [ | ||
| 14 | "gulp-pre-commit" | ||
| 15 | ], | ||
| 16 | "repository": { | ||
| 17 | "type": "git", | ||
| 18 | "url": "http://git.focasoftware.com/npm/foca-modal-efectivo.git" | ||
| 19 | }, | ||
| 20 | "author": "Foca Software", | ||
| 21 | "license": "ISC", | ||
| 22 | "devDependencies": { | ||
| 23 | "angular": "^1.7.5", | ||
| 24 | "bootstrap": "^4.1.3", | ||
| 25 | "foca-directivas": "git+http://git.focasoftware.com/npm/foca-directivas.git", | ||
| 26 | "font-awesome": "^4.7.0", | ||
| 27 | "gulp": "^3.9.1", | ||
| 28 | "gulp-angular-templatecache": "^2.2.5", | ||
| 29 | "gulp-clean": "^0.4.0", | ||
| 30 | "gulp-concat": "^2.6.1", | ||
| 31 | "gulp-connect": "^5.6.1", | ||
| 32 | "gulp-htmlmin": "^5.0.1", | ||
| 33 | "gulp-jshint": "^2.1.0", | ||
| 34 | "gulp-rename": "^1.4.0", | ||
| 35 | "gulp-replace": "^1.0.0", | ||
| 36 | "gulp-uglify": "^3.0.1", | ||
| 37 | "jquery": "^3.3.1", | ||
| 38 | "jshint": "^2.9.6", | ||
| 39 | "pump": "^3.0.0", | ||
| 40 | "ui-bootstrap4": "^3.0.5" | ||
| 41 | } | ||
| 42 | } | ||
| 43 |
src/etc/develop.js.ejemplo
| File was created | 1 | angular.module('focaModalEfectivo') | |
| 2 | .constant("API_ENDPOINT", { | ||
| 3 | 'URL': '//127.0.0.1:9000' | ||
| 4 | }); | ||
| 5 |
src/js/app.js
| File was created | 1 | angular.module('focaModalEfectivo', ['ui.bootstrap', 'focaDirectivas']); | |
| 2 |
src/js/controller.js
| File was created | 1 | angular.module('focaModalEfectivo') | |
| 2 | .controller('focaModalEfectivoController', | ||
| 3 | [ | ||
| 4 | '$scope', | ||
| 5 | '$uibModalInstance', | ||
| 6 | function($scope, $uibModalInstance) { | ||
| 7 | $scope.aceptar = function(key) { | ||
| 8 | if(key === 13) { | ||
| 9 | var efectivo = parseFloat($scope.efectivo); | ||
| 10 | $uibModalInstance.close(efectivo); | ||
| 11 | } | ||
| 12 | }; | ||
| 13 | |||
| 14 | $scope.cancel = function() { | ||
| 15 | $uibModalInstance.dismiss('cancel'); | ||
| 16 | }; | ||
| 17 | } | ||
| 18 | ] | ||
| 19 | ); | ||
| 20 |
src/js/service.js
| File was created | 1 | angular.module('focaModalEfectivo') | |
| 2 | .service('focaModalFleteService', [ | ||
| 3 | '$http', | ||
| 4 | 'API_ENDPOINT', | ||
| 5 | function($http, API_ENDPOINT) { | ||
| 6 | return { | ||
| 7 | //Agregar servicios | ||
| 8 | }; | ||
| 9 | } | ||
| 10 | ]); | ||
| 11 |
src/views/modal-efectivo.html
| File was created | 1 | <div class="modal-header"> | |
| 2 | <h3 class="modal-title">Ingrese Efectivo</h3> | ||
| 3 | </div> | ||
| 4 | <div class="modal-body" id="modal-body"> | ||
| 5 | <form name="formEfectivo"> | ||
| 6 | <div class="input-group"> | ||
| 7 | <div class="input-group-prepend"> | ||
| 8 | <div class="input-group-text form-control form-control-sm">$</div> | ||
| 9 | </div> | ||
| 10 | <input | ||
| 11 | teclado-virtual | ||
| 12 | foca-tipo-input | ||
| 13 | ng-model="efectivo" | ||
| 14 | foca-focus="true" | ||
| 15 | class="form-control form-control-sm" | ||
| 16 | placeholder="Ingrese monto" | ||
| 17 | ng-keypress="aceptar($event.keyCode)" | ||
| 18 | > | ||
| 19 | </div> | ||
| 20 | </form> | ||
| 21 | </div> | ||
| 22 | <div class="modal-footer"> | ||
| 23 | <button | ||
| 24 | class="btn btn-primary" | ||
| 25 | type="button" | ||
| 26 | ng-click="aceptar(13)" | ||
| 27 | ng-disabled="!formEfectivo.$valid" | ||
| 28 | >Aceptar</button> | ||
| 29 | <button class="btn btn-secondary" type="button" ng-click="cancel()">Cancelar</button> | ||
| 30 | </div> | ||
| 31 |