aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app.component.ts
blob: 94a64390b1c0061da329b498978818d75ff8ce84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {Component, OnInit, Inject} from '@angular/core';
import {BehaviorSubject} from 'rxjs';
import { DOCUMENT } from '@angular/common';
import {AuthService} from './services/auth.service';
import {ToastType} from './services/toasts.service';
import {User} from './models/User';
import {ActivatedRoute, Router} from '@angular/router';

interface ToastProps {
    type: ToastType, message: string, action?: {label: string, onAction: () => void}
}

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  standalone: false,
  styleUrl: './app.component.css'
})
export class AppComponent implements OnInit {
    // title = 'ufund-ui';
    currentUser?: BehaviorSubject<User | null>;
    toast = new BehaviorSubject<ToastProps>({type: ToastType.INFO, message: "testToast"})


    constructor(
        private authService: AuthService,
        private router: Router,
        private route: ActivatedRoute,
        @Inject(DOCUMENT) private document: Document
    ) {}

    reloadPage() {
        this.document.defaultView?.location.reload();
    }

    ngOnInit() {
        console.log("AAAAAAAAAAAAAAAA")
        this.currentUser = this.authService.getCurrentUserSubject()
        let data = localStorage.getItem("credential");
        if (data) {
            let dataParsed = JSON.parse(data)
            this.authService.restoreLogin(dataParsed.username, dataParsed.key)
            console.log("Key found", dataParsed.key)
        } else {
            console.log("key missing")
            console.log(data)
        }
    }

    login() {
        this.router.navigate(['/login'], {queryParams: {redir: this.router.url}});
    }

    logout() {
        localStorage.removeItem("credential")
        location.reload()
    }

}