uoa-repository-manager-ui/src/app/pages/repository/events/content-events-of-repositor...

135 lines
3.9 KiB
TypeScript
Executable File

import { Component, OnInit } from '@angular/core';
import { BrowseEntry, Term } from '../../../domain/typeScriptClasses';
import { ActivatedRoute, Router } from '@angular/router';
import { loadingTopics, loadingTopicsError, noTopicsFound } from '../../../domain/shared-messages';
import { BrokerService } from '../../../services/broker.service';
import { SharedService } from "../../../services/shared.service";
@Component ({
selector: 'content-events-of-repository',
templateUrl: 'content-events-of-repository.component.html'
})
export class ContentEventsOfRepositoryComponent implements OnInit {
errorMessage: string;
loadingMessage: string;
noTopics: string;
repoName = '';
correctName = '';
topics: Map<string, Term> = new Map<string, Term>();
repoTopics: BrowseEntry[] = [];
moreList: BrowseEntry[] = [];
missingList: BrowseEntry[] = [];
totalMore = 0;
totalMissing = 0;
constructor(
private route: ActivatedRoute,
private router: Router,
private brokerService: BrokerService,
private sharedService: SharedService
) {}
ngOnInit() {
if(this.sharedService.getRepository()) {
this.repoName = this.sharedService.getRepository().officialName;
this.getCorrectName();
this.getTopics();
}
this.sharedService.repository$.subscribe(
r => {
if (r) {
this.repoName = r.officialName;
this.getCorrectName();
this.getTopics();
}
}
);
// this.repoName = this.route.snapshot.paramMap.get('name');
// this.getCorrectName();
// this.getTopics();
let body = document.getElementsByTagName('body')[0];
body.classList.remove("top_bar_active"); //remove the class
body.classList.remove("page_heading_active");
body.classList.remove("landing");
body.classList.add("dashboard");
}
getRepoTopics(): void {
this.loadingMessage = loadingTopics;
this.brokerService.getTopicsForDataSource(this.correctName)
.subscribe(
topics => {
this.repoTopics = topics;
},
error => {
console.log(error);
this.errorMessage = loadingTopicsError;
this.loadingMessage = '';
},
() => {
this.loadingMessage = '';
if (this.repoTopics.length === 0) {
this.noTopics = noTopicsFound;
} else {
for (const browseEntry of this.repoTopics) {
if (browseEntry.value.startsWith('ENRICH/MORE')) {
this.totalMore += browseEntry.size;
this.moreList.push(browseEntry);
} else if (browseEntry.value.startsWith('ENRICH/MISSING')) {
this.totalMissing += browseEntry.size;
this.missingList.push(browseEntry);
}
}
}
}
);
}
getTopics () {
this.loadingMessage = loadingTopics;
this.brokerService.getDnetTopics().subscribe(
topics => this.topics = topics,
error => {
console.log(error);
this.errorMessage = loadingTopicsError;
this.loadingMessage = '';
},
() => {
this.loadingMessage = '';
console.log(this.topics);
this.getRepoTopics();
}
);
}
goToEventsList(topic: string) {
const temp = topic.replace(/\//g, '|');
let chosenTopic = temp[0];
for (let i = 1; i < temp.length; i++) {
chosenTopic += '|' + temp[i];
}
chosenTopic = encodeURIComponent(chosenTopic);
/*this.router.navigate([`/content/events/${this.repoName}`, chosenTopic]);*/
console.log(temp, this.route.url);
this.router.navigate([temp], {relativeTo: this.route});
}
getCorrectName() {
const temp = this.repoName.split('|');
this.correctName = temp[0];
this.repoName = temp[0];
for (let i = 1; i < temp.length; i++) {
this.correctName += `/${temp[i]}`;
this.repoName += ` | ${temp[i]}`;
}
}
}