bitwarden-estensione-browser/src/app/organizations/manage/events.component.ts

100 lines
3.0 KiB
TypeScript
Raw Normal View History

2018-07-07 05:08:10 +02:00
import {
Component,
OnInit,
} from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { ApiService } from 'jslib/abstractions/api.service';
import { EventService } from '../../services/event.service';
2018-07-06 16:21:08 +02:00
2018-07-09 17:47:57 +02:00
import { EventResponse } from 'jslib/models/response/eventResponse';
import { ListResponse } from 'jslib/models/response/listResponse';
2018-07-06 16:21:08 +02:00
@Component({
selector: 'app-org-events',
templateUrl: 'events.component.html',
})
2018-07-07 05:08:10 +02:00
export class EventsComponent implements OnInit {
loading = true;
loaded = false;
organizationId: string;
events: any[];
start: string;
end: string;
continuationToken: string;
refreshPromise: Promise<any>;
morePromise: Promise<any>;
constructor(private apiService: ApiService, private route: ActivatedRoute,
private eventService: EventService) { }
async ngOnInit() {
this.route.parent.parent.params.subscribe(async (params) => {
this.organizationId = params.organizationId;
const defaultDates = this.eventService.getDefaultDateFilters();
this.start = defaultDates[0];
this.end = defaultDates[1];
await this.load();
});
}
async load() {
// TODO: load users
await this.loadEvents(true);
this.loaded = true;
}
async loadEvents(clearExisting: boolean) {
if (this.refreshPromise != null || this.morePromise != null) {
return;
}
let dates: string[] = null;
try {
dates = this.eventService.formatDateFilters(this.start, this.end);
} catch (e) {
// TODO: error toast
return;
}
this.loading = true;
2018-07-09 17:47:57 +02:00
let response: ListResponse<EventResponse>;
2018-07-07 05:08:10 +02:00
try {
const promise = this.apiService.getEventsOrganization(this.organizationId, dates[0], dates[1],
clearExisting ? null : this.continuationToken);
if (clearExisting) {
this.refreshPromise = promise;
} else {
this.morePromise = promise;
}
2018-07-09 17:47:57 +02:00
response = await promise;
2018-07-07 05:08:10 +02:00
} catch { }
2018-07-09 17:47:57 +02:00
this.continuationToken = response.continuationToken;
const events = response.data.map((r) => {
const userId = r.actingUserId == null ? r.userId : r.actingUserId;
const eventInfo = this.eventService.getEventInfo(r);
return {
message: eventInfo.message,
appIcon: eventInfo.appIcon,
appName: eventInfo.appName,
userId: userId,
userName: userId != null ? 'user' : '-',
date: r.date,
ip: r.ipAddress,
};
});
if (!clearExisting && this.events != null && this.events.length > 0) {
this.events = this.events.concat(events);
} else {
this.events = events;
}
2018-07-07 05:08:10 +02:00
this.loading = false;
this.morePromise = null;
this.refreshPromise = null;
}
}