mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { Component, OnInit } from "@angular/core";
|
|
import { ToasterService } from "angular2-toaster";
|
|
import { FE_TermsEditable } from "../../shared/models/terms";
|
|
import { AdminTermsApiService } from "../../shared/services/admin/admin-terms-api.service";
|
|
import { ActivatedRoute, Router } from "@angular/router";
|
|
import { TranslateService } from "@ngx-translate/core";
|
|
|
|
@Component({
|
|
templateUrl: "./terms.component.html",
|
|
styleUrls: ["./terms.component.scss"],
|
|
})
|
|
export class AdminTermsComponent implements OnInit {
|
|
|
|
// TODO: "New draft" per policy button
|
|
// TODO: Delete button
|
|
|
|
public isLoading = true;
|
|
public policies: FE_TermsEditable[];
|
|
|
|
constructor(private adminTerms: AdminTermsApiService,
|
|
private toaster: ToasterService,
|
|
private router: Router,
|
|
private activatedRoute: ActivatedRoute,
|
|
public translate: TranslateService) {
|
|
this.translate = translate;
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.adminTerms.getAllPolicies().then(policies => {
|
|
this.policies = [
|
|
...policies.filter(p => p.version === "draft"),
|
|
...policies.filter(p => p.version !== "draft"),
|
|
];
|
|
this.isLoading = false;
|
|
}).catch(err => {
|
|
console.error(err);
|
|
this.translate.get('Failed to load policies').subscribe((res: string) => {
|
|
this.toaster.pop("error", res);
|
|
});
|
|
});
|
|
}
|
|
|
|
public createPolicy() {
|
|
this.router.navigate(["new"], {relativeTo: this.activatedRoute});
|
|
}
|
|
|
|
}
|