Skip to content
Snippets Groups Projects
activate-user.component.ts 3.95 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Component, OnInit} from '@angular/core';
    
    import { HttpClient } from '@angular/common/http';
    
    import { LANG } from './translate.component';
    
    import { NotificationService } from './notification.service';
    
    Vinciane's avatar
    Vinciane committed
    import { Router } from '@angular/router';
    
    import { SelectionModel } from '@angular/cdk/collections';
    
    import { AppService } from '../service/app.service';
    
    
    declare var angularGlobals: any;
    declare function $j(selector: any): any;
    
    
    @Component({
    
        templateUrl: "activate-user.component.html",
    
        providers: [NotificationService, AppService],
    
    })
    
    export class ActivateUserComponent implements OnInit {
    
        lang: any = LANG;
    
        user: any = {
            baskets: []
        };
        
        userAbsenceModel: any[] = [];
        basketsToRedirect: string[] = [];
    
        loading: boolean = false;
        selectedIndex: number = 0;
    
        //Redirect Baskets
        selectionBaskets = new SelectionModel<Element>(true, []);
        myBasketExpansionPanel: boolean = false;
        masterToggleBaskets(event: any) {
            if (event.checked) {  
                this.user.redirectedBaskets.forEach((basket: any) => {
                    this.selectionBaskets.select(basket);   
                });
            } else {
                this.selectionBaskets.clear();
            }
        }
    
        constructor(
            public http: HttpClient, 
            private notify: NotificationService, 
            private router: Router,
            public appService: AppService) {
                $j("link[href='merged_css.php']").remove();
    
        ngOnInit(): void {
            this.loading = true;
    
            this.http.get('../../rest/currentUser/profile')
                .subscribe((data: any) => {
                    this.user = data;
    
                    this.user.baskets.forEach((value: any, index: number) => {
                        this.user.baskets[index]['disabled'] = false;
    
    Vinciane's avatar
    Vinciane committed
                        this.user.redirectedBaskets.forEach((redirectedBasket: any) => {
                            if (value.basket_id == redirectedBasket.basket_id && value.basket_owner == redirectedBasket.basket_owner) {
    
                                this.user.baskets[index]['disabled'] = true;
                            }
                        });
                    });
                    this.loading = false;
                });
        }   
    
        showActions(basket:any){
            $j('#'+basket.basket_id+'_'+basket.group_id).show();
        }
    
        hideActions(basket:any){
            $j('#'+basket.basket_id+'_'+basket.group_id).hide();
    
        //action on user
    
    Damien's avatar
    Damien committed
        activateUser() : void {
    
            this.http.put('../../rest/users/' + angularGlobals.user.id + '/status', {'status' : 'OK'})
    
            .subscribe(() => {
            
                let basketsRedirectedIds:any = "";
                
                this.user.redirectedBaskets.forEach((elem: any) => {
                    if (this.selectionBaskets.selected.map((e:any) => { return e.basket_id; }).indexOf(elem.basket_id) != -1 
                    && this.selectionBaskets.selected.map((e:any) => { return e.group_id; }).indexOf(elem.group_id) != -1) {
                        if(basketsRedirectedIds != "") {
                            basketsRedirectedIds = basketsRedirectedIds + "&redirectedBasketIds[]=";
                        }
                        basketsRedirectedIds = basketsRedirectedIds + elem.id;
                    }
    
    
                if(basketsRedirectedIds != "") {
    
                    this.http.delete("../../rest/users/" + angularGlobals.user.id + "/redirectedBaskets?redirectedBasketIds[]=" + basketsRedirectedIds)
    
                    .subscribe((data: any) => {
    
    Vinciane's avatar
    Vinciane committed
                        this.router.navigate(['/home']);
                        this.notify.success(this.lang.absOff);
    
                    }, (err) => {
                        this.notify.error(err.error.errors);
                    });
    
    Vinciane's avatar
    Vinciane committed
                } else {
                    this.router.navigate(['/home']);
                    this.notify.success(this.lang.absOff);
    
                }
    
    
            }, (err : any) => {
                this.notify.error(err.error.errors);
            });
            
    
        }
    
        logout() {
            location.href = "index.php?display=true&page=logout&logout=true";
        }