added user.org_member
[angular-drzb] / app / js / controllers.js
index c0f42c7..f336b51 100644 (file)
@@ -2,22 +2,31 @@
 
 /* Controllers */
 
-function RegistrationCtrl($scope, $log, Registration, $routeParams, $location, $route, Organizations, RegistrationState) {
+function RegistrationCtrl($scope, $log, Registration, $routeParams, $location, $route, View, ValidStates) {
 
        $scope.$routeParams = $routeParams;
        $scope.$location = $location;
        $scope.organizations = [];
-       Organizations.getArrayPromise().then(function(data) {
-               $scope.organizations = data;
-               $log.info('organizations promise ', $scope.organizations);
+       View.getPromise('organizations?group=true;format=key_array').then(function(data) {
+               if ( angular.isArray(data.rows) ) {
+                       $scope.organizations = data.rows;
+                       $log.info('organizations promise ', $scope.organizations);
+               } else {
+                       $log.info('no rows in', data);
+               }
        });
-       $scope.RegistrationState = RegistrationState;
+       $scope.ValidStates = ValidStates();
 
        $scope.info = { message: '', css_class: '' } ; // alert box
 
        $scope.update = function(registration, state, info_message) {
 
-               registration.state = state;
+               if ( $scope.ValidStates.indexOf( state ) > $scope.ValidStates.indexOf( registration.state ) ) {
+                       registration.state = state;
+                       $log.info( 'registration.state updated to ',state);
+               } else {
+                       $log.info('registration.state NOT changed');
+               }
 
                if ( ! $scope.has_work && registration.work ) {
                        delete( registration.work );
@@ -27,7 +36,8 @@ function RegistrationCtrl($scope, $log, Registration, $routeParams, $location, $
                registration.$save( function(registration) {
                        $log.info('id =', registration.id, 'state = ', registration.state);
                        if ( registration.id && registration.state ) {
-                               if ( ! info_message ) {
+                               $log.info( 'have id && state', $location.path(), registration.state, $routeParams );
+                               if ( $location.path().split(/\//)[1] != registration.state ) {
                                        $location.path( '/' + registration.state + '/' + registration.id );
                                } else {
                                        $scope.info = { message: info_message, css_class: 'alert-success' };
@@ -73,6 +83,14 @@ function RegistrationCtrl($scope, $log, Registration, $routeParams, $location, $
                        $scope.user.registration_type == 'symposium' ||
                        $scope.user.registration_type == 'round'
                ) {
+                       if ( angular.isUndefined( $scope.registration.work ) ) {
+                               $log.info('create empty work');
+                               $scope.registration.work = { persons: [ $scope.user ] };
+                               if ( angular.isUndefined( $scope.work ) )
+                                       $scope.work = $scope.registration.work;
+                       }
+
+
                        $scope.work.type = $scope.user.registration_type;
                        $scope.has_work = true;
                        $log.info( $scope.user.registration_type, " type updated");
@@ -157,11 +175,25 @@ function RegistrationCtrl($scope, $log, Registration, $routeParams, $location, $
                $scope.registration.state = new_state;
        }
 
+       $scope.show_submission_type = function() {
+               // FIXME check if all submission are allowed by date and allow them!
+               if ( angular.isUndefined( $scope.user ) || angular.isUndefined( $scope.registration ) ) return false;
+               return (
+                       angular.isUndefined( $scope.user.registration_type ) // new registration
+                       || angular.isUndefined( $scope.registration.state ) // not saved yet
+                       || $scope.registration.state == 'draft'
+                       || $scope.registration.state == 'confirmation'
+               ) ? false : true;
+       }
+       $scope.show_registration_type = function() {
+               return true;
+       }
+
        $scope.reset();
 }
-RegistrationCtrl.$inject = [ '$scope', '$log', 'Registration', '$routeParams', '$location', '$route', 'Organizations', 'RegistrationState' ];
+RegistrationCtrl.$inject = [ '$scope', '$log', 'Registration', '$routeParams', '$location', '$route', 'View', 'ValidStates' ];
 
-function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter) {
+function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter, ValidStates ) {
 
        $scope.list = [];
        $scope.list_results = 0;
@@ -169,11 +201,19 @@ function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter) {
                page: 1,
                limit: 10,
                results: 1,
-               last_page: 1
+               last_page: 1,
+               show_all: false
        };
        $scope.search = {};
        $scope.ready = false;
-       $scope.filters = [ 'student', 'hpd_member', 'reception', 'dinner' ];
+       $scope.filters = [
+               { select: 'user.student', label: 'student', name: 'filter_student' },
+               { select: 'user.hpd_member', label: 'HPD', name: 'filter_hpd' },
+               { select: 'user.reception', label: 'reception', name: 'filter_reception' },
+               { select: 'user.dinner', label: 'dinner', name: 'filter_dinner' },
+               { select: 'payment.received', label: 'payment', name: 'filter_payment' },
+               { select: 'user.org_member', label: 'organisation', name: 'filter_org' }
+       ];
        $scope.show = {
                registration_type: true,
                filters: true,
@@ -181,8 +221,10 @@ function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter) {
                states: true,
                pager_numeric: false
        };
+       $scope.ValidStates = ValidStates();
 
-       $scope.all_registrations = Registration.query( function() {
+       $scope.create_counts = function( array ) {
+               $log.info('create_counts', array.length );
                var Counts = {};
                var inc_count = function(type) {
                        if ( ! angular.isNumber( Counts[type] ) ) {
@@ -191,40 +233,48 @@ function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter) {
                                Counts[type]++;
                        }
                };
-               angular.forEach( $scope.all_registrations, function(value, key) {
+               angular.forEach( array, function(value, key) {
                        if ( ! value.user ) {
-                               $log.error("all_registrations user corrupted for registration", key, value);
+                               $log.error("create_counts user corrupted for registration", key, value);
                                return;
                        }
 
                        var type = value.user.registration_type;
                        inc_count( type );
                        inc_count( '' ); // total
-                       angular.forEach( $scope.filters, function(subtype) {
-                               var v = value.user[subtype];
+                       angular.forEach( $scope.filters, function(filter) {
+                               var s = filter.select.split(/\./);
+                               var v = value[s[0]];
+                               if ( angular.isDefined( v ) ) {
+                                       v = v[s[1]];
+                               }
                                if ( v === 'yes' || v === true ) {
-                                       inc_count( subtype );
-                                       inc_count( type + '+' + subtype );
-                                       inc_count( '+' + subtype ); // total
+                                       inc_count( filter.name );
+                                       inc_count( type + '+' + filter.name );
+                                       inc_count( '+' + filter.name ); // total
+                                       value[filter.name] = true;
+                               } else {
+                                       value[filter.name] = false;
                                }
                        });
 
                        // for filter
                        value.registration_type = type;
-                       angular.forEach( $scope.filters, function(f) {
-                               var v = value.user[f];
-                               value[f] = v == true || v == 'yes' ? true : false;
-                       });
 
-//                     $log.info( key, value, Counts[type]  );
+                       // count registration state
+                       inc_count( 'state+' + value.state );
+
+//                     $log.info( key, value );
                });
                $log.info('Counts', Counts);
                $scope.Counts = Counts;
+               return Counts;
+       };
 
+       $scope.all_registrations = Registration.query( function(result) {
                $scope.ready = true;
-
+               $log.info('Reqistration.query callback', result);
                $scope.reset();
-
        });
 
        $scope.filter_list = function(newVal, oldVal) {
@@ -233,16 +283,20 @@ function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter) {
                var filtered =
                        $filter('filter')($scope.all_registrations, $scope.search);
 
+               $scope.create_counts( filtered );
+
                $log.info('pager before apply', $scope.pager);
 
                $scope.pager.results = filtered.length;
                $scope.pager.last_page = Math.ceil( $scope.pager.results / $scope.pager.limit );
+               if ( $scope.pager.page < 1 ) $scope.pager.page = 1;
+               if ( $scope.pager.page > $scope.pager.last_page ) $scope.pager.page = $scope.pager.last_page;
                $log.info('pager', $scope.pager);
 
                var from = ( $scope.pager.page - 1 ) * $scope.pager.limit;
                $scope.list = [];
                angular.forEach( filtered, function(v,k) {
-                       if ( k >= from && k < from + $scope.pager.limit ) {
+                       if ( k >= from && k < from + $scope.pager.limit || $scope.pager.show_all ) {
                                v.nr = k + 1;
                                this.push(v);
                        }
@@ -259,8 +313,46 @@ function ListCtrl($scope, $log, Registration, RegistrationTypes, $filter) {
        $scope.reset = function() {
                $scope.search = { registration_type: '' };
                $log.info('reset', $scope.search );
+               $scope.pager.page = 1;
+       }
+
+       $scope.print = {
+               layout: false,
+               center: '',
+               bold: '',
+               toggle: function(v) {
+                       $log.info('print_hide', v);
+                       $scope.print.layout = ! $scope.print.layout;
+                       if ( v ) {
+                               $scope.print.center = 'print-center';
+                               $scope.print.bold = 'print-bold';
+                       } else {
+                               $scope.print.center = '';
+                               $scope.print.bold = '';
+                       }
+               }
        }
 }
 
+ListCtrl.$inject = [ '$scope', '$log', 'Registration', 'RegistrationTypes', '$filter', 'ValidStates' ];
+
+
+function AuthorsCtrl($scope, $log, View ) {
+       $scope.message = 'Loading data...';
+       $scope.ready = false;
+       View.getPromise('authors?format=key_distinct').then(function(data) {
+               if ( angular.isArray(data.rows) ) {
+                       $scope.data = data;
+                       $scope.authors = $scope.data.rows;
+                       $scope.ready = true;
+                       $log.info('authors promise ', data);
+               } else {
+                       $log.info('no rows in', data);
+                       $scope.message = 'No rows found';
+               }
+       });
+}
+
+AuthorsCtrl.$inject = [ '$scope', '$log', 'View' ];
+
 
-ListCtrl.$inject = [ '$scope', '$log', 'Registration', 'RegistrationTypes', '$filter' ];