blob: c65e01f8ca1ad931b78478f1efbb2d8a46b35cce [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 } from '@angular/core';
import { DICTIONARY, ReportingConfigModel } from '../../../dictionary/global.dictionary';
@Component({
selector: 'dlab-reporting-grid',
templateUrl: './reporting-grid.component.html',
styleUrls: ['./reporting-grid.component.scss',
'../../resources/resources-grid/resources-grid.component.css']
})
export class ReportingGridComponent implements OnInit {
readonly DICTIONARY = DICTIONARY;
filterConfiguration: ReportingConfigModel;
filteredReportData: ReportingConfigModel = new ReportingConfigModel([], [], [], [], [], '', '', '');
collapseFilterRow: boolean = false;
reportData: any;
isFiltered: boolean = false;
@Output() filterReport: EventEmitter<{}> = new EventEmitter();
@Output() resetRangePicker: EventEmitter<boolean> = new EventEmitter();
displayedColumns: string[] = ['name', 'user', 'type', 'status', 'shape', 'service', 'charge'];
displayedFilterColumns: string[] = ['name-filter', 'user-filter', 'type-filter', 'status-filter', 'shape-filter', 'service-filter', 'actions'];
ngOnInit() { }
onUpdate($event): void {
this.filteredReportData[$event.type] = $event.model;
}
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.filterReport.emit(this.filteredReportData);
this.resetRangePicker.emit(true);
}
}