blob: 1856688d4254884f593681202c8ee1273a386140 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import {Component, OnInit, Output, EventEmitter, ViewChild, Input} from '@angular/core';
import { DICTIONARY, ReportingConfigModel } from '../../../dictionary/global.dictionary';
import {logger} from 'codelyzer/util/logger';
@Component({
selector: 'dlab-reporting-grid',
templateUrl: './reporting-grid.component.html',
styleUrls: ['./reporting-grid.component.scss',
'../../resources/resources-grid/resources-grid.component.scss'],
})
export class ReportingGridComponent implements OnInit {
readonly DICTIONARY = DICTIONARY;
filterConfiguration: ReportingConfigModel;
filteredReportData: ReportingConfigModel = new ReportingConfigModel([], [], [], [], [], '', '', '', []);
collapseFilterRow: boolean = true;
reportData: Array<any> = [];
fullReport: Array<any>;
isFiltered: boolean = false;
@ViewChild('nameFilter', { static: false }) filter;
@Output() filterReport: EventEmitter<{}> = new EventEmitter();
@Output() resetRangePicker: EventEmitter<boolean> = new EventEmitter();
@Input() PROVIDER: string;
displayedColumns: string[] = ['name', 'user', 'project', 'type', 'status', 'shape', 'service', 'charge'];
displayedFilterColumns: string[] = ['name-filter', 'user-filter', 'project-filter', 'type-filter', 'status-filter', 'shape-filter', 'service-filter', 'actions'];
ngOnInit() {}
onUpdate($event): void {
this.filteredReportData[$event.type] = $event.model;
}
refreshData(fullReport, report) {
this.reportData = [...report];
this.fullReport = fullReport;
}
setFullReport(data): void {
if (!data) {
this.displayedColumns = this.displayedColumns.filter(el => el !== 'user');
this.displayedFilterColumns = this.displayedFilterColumns.filter(el => el !== 'user-filter');
}
}
toggleFilterRow(): void {
this.collapseFilterRow = !this.collapseFilterRow;
}
setConfiguration(reportConfig: ReportingConfigModel): void {
this.filterConfiguration = reportConfig;
}
filter_btnClick(): void {
this.filterReport.emit(this.filteredReportData);
this.isFiltered = true;
}
resetFiltering(): void {
this.filteredReportData.defaultConfigurations();
this.filter.nativeElement.value = ''
this.filterReport.emit(this.filteredReportData);
this.resetRangePicker.emit(true);
}
}