funky-framadate-front/src/app/pages/admin/admin.component.ts

62 lines
1.8 KiB
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
import { ConfigService } from '../../services/config.service';
2020-04-17 15:52:09 +02:00
import { ActivatedRoute, Router } from '@angular/router';
import { HttpClient } from '@angular/common/http';
import { PollUtilities } from '../../config/PollUtilities';
import { environment } from '../../../environments/environment';
2019-11-18 19:32:14 +01:00
@Component({
2020-04-22 12:56:18 +02:00
selector: 'app-admin',
templateUrl: './admin.component.html',
styleUrls: ['./admin.component.scss'],
2019-11-18 19:32:14 +01:00
})
export class AdminComponent implements OnInit {
2020-04-17 15:52:09 +02:00
public tokenForAdministration = '';
constructor(
public config: ConfigService,
public router: Router,
private utils: PollUtilities,
public http: HttpClient,
public activeRoute: ActivatedRoute
) {}
2019-11-18 19:32:14 +01:00
ngOnInit() {
2020-04-17 15:52:09 +02:00
this.activeRoute.paramMap.subscribe((params) => {
console.log('params', params);
this.tokenForAdministration = params.get('token');
// redirect to home if no token provided
if (!this.tokenForAdministration) {
alert('pas de token pour administrer un sondage, mauvaise URL.');
this.router.navigate(['/home']);
}
if (!this.config.loading) {
// get token paarameter from route
// fetch admin version of the poll
// then, populate UI.
this.fetchPoll();
}
});
}
// fetch poll with its ID or slug.
fetchPoll() {
const token = this.tokenForAdministration;
const headers = this.utils.makeHeaders({ token: token });
this.config.loading = true;
// store it in the poll property here
2020-04-25 12:54:56 +02:00
// this.http.get(`${environment.baseApiHref}/admin/${token}`, headers).subscribe(
// (res: any) => {
// console.log('res', res);
// this.config.updateCurrentPollFromResponse(res);
// this.config.loading = false;
// },
// (e) => {
// // handle need for a password
// console.log('e', e);
// this.config.handleError(e);
// }
// );
}
2019-11-18 19:32:14 +01:00
}