blob: 6172a785273b02a4307184042bb344c3d786eb8e [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,
HostListener,
AfterViewInit,
ChangeDetectorRef,
ChangeDetectionStrategy
} from '@angular/core';
import { ReportingConfigModel } from '../../../../dictionary/global.dictionary';
import {BehaviorSubject, fromEvent, Observable, of, Subject, timer} from 'rxjs';
import {logger} from 'codelyzer/util/logger';
import {take} from 'rxjs/operators';
@Component({
selector: 'dlab-reporting-grid',
templateUrl: './reporting-grid.component.html',
styleUrls: ['./reporting-grid.component.scss',
'../../../resources/resources-grid/resources-grid.component.scss'],
// changeDetection: ChangeDetectionStrategy.OnPush
})
export class ReportingGridComponent implements OnInit, AfterViewInit {
tableEl = {};
filterConfiguration: ReportingConfigModel;
// filteredReportData: ReportingConfigModel = new ReportingConfigModel([], [], [], [], [], '', '', '', []);
collapseFilterRow: boolean = false;
reportData: Array<any> = [];
fullReport: Array<any>;
isFiltered: boolean = false;
active: object = {};
displayedColumns: string[] = ['name', 'user', 'project', 'type', 'status', 'shape', 'service', 'empty', 'charge'];
displayedFilterColumns: string[] = ['name-filter', 'user-filter', 'project-filter', 'type-filter', 'status-filter', 'shape-filter', 'service-filter', 'empty-filter', 'actions'];
filtered: any;
isMaxRight: Subject<boolean> = new BehaviorSubject(false);
isFilterSelected: boolean;
isFilterChanged: boolean;
public isScrollButtonsVisible: boolean;
@ViewChild('nameFilter', { static: false }) filter;
@ViewChild('tableWrapper', { static: false }) tableWrapper;
@ViewChild('wrapper', { static: false }) wrapper;
@ViewChild('pageWrapper', { static: false }) pageWrapper;
@ViewChild('table', { static: false }) table;
@Output() filterReport: EventEmitter<{}> = new EventEmitter();
@Output() resetRangePicker: EventEmitter<boolean> = new EventEmitter();
@Input() filteredReportData: ReportingConfigModel;
@Input() previousFilterData: ReportingConfigModel;
@HostListener('window:resize', ['$event'])
onResize(event) {
this.isScrollButtonsVisible = this.tableWrapper.nativeElement.offsetWidth - this.table._elementRef.nativeElement.offsetWidth < 0;
this.checkMaxRight();
}
@HostListener('scroll', ['$event'])
scrollTable($event: Event) {
this.checkMaxRight();
}
constructor(private changeDetector: ChangeDetectorRef) {
}
ngOnInit() {
window.setTimeout(() => {
this.isScrollButtonsVisible = this.tableWrapper.nativeElement.offsetWidth - this.table._elementRef.nativeElement.offsetWidth < 0;
this.checkMaxRight();
this.tableEl = this.table._elementRef.nativeElement;
}, 1000);
this.checkFilters();
}
ngAfterViewInit() {
}
onUpdate($event): void {
this.filteredReportData[$event.type] = $event.model;
this.checkFilters();
}
private checkFilters() {
this.isFilterChanged = JSON.stringify(this.filteredReportData) === JSON.stringify(this.previousFilterData);
this.isFilterSelected = Object.keys(this.filteredReportData).filter(v => this.filteredReportData[v].length > 0).length > 0;
}
refreshData(fullReport, report) {
this.reportData = [...report];
this.fullReport = fullReport;
this.checkFilters();
}
setFullReport(data): void {
if (!data) {
this.displayedColumns = this.displayedColumns.filter(el => el !== 'user');
this.displayedFilterColumns = this.displayedFilterColumns.filter(el => el !== 'user-filter');
}
}
sortBy(sortItem, direction) {
let report: Array<object>;
if (direction === 'down') {
report = this.reportData.sort((a, b) => {
if (a[sortItem] === null) a[sortItem] = '';
if (b[sortItem] === null) b[sortItem] = '';
return (a[sortItem] > b[sortItem]) ? 1 : -1;
});
}
if (direction === 'up') {
report = this.reportData.sort((a, b) => {
if (a[sortItem] === null) a[sortItem] = '';
if (b[sortItem] === null) b[sortItem] = '';
return (a[sortItem] < b[sortItem]) ? 1 : -1 ;
});
}
this.refreshData(this.fullReport, report);
this.removeSorting();
this.active[sortItem + direction] = true;
}
removeSorting() {
for (const item in this.active) {
this.active[item] = false;
}
}
toggleFilterRow(): void {
this.collapseFilterRow = !this.collapseFilterRow;
}
setConfiguration(reportConfig: ReportingConfigModel): void {
this.filterConfiguration = reportConfig;
this.checkFilters();
}
filter_btnClick(): void {
this.filterReport.emit(this.filteredReportData);
this.isFiltered = true;
this.checkFilters();
this.removeSorting();
}
resetFiltering(): void {
this.filteredReportData.defaultConfigurations();
this.removeSorting();
this.filter.nativeElement.value = '';
this.filterReport.emit(this.filteredReportData);
this.resetRangePicker.emit(true);
this.checkFilters();
}
shapeSplit(shape) {
return shape.split(/(?=Slave)/g);
}
public sctollTo(direction: string) {
if (direction === 'left') {
this.tableWrapper.nativeElement.scrollLeft = 0;
this.pageWrapper.nativeElement.scrollLeft = 0;
} else {
this.tableWrapper.nativeElement.scrollLeft = this.tableWrapper.nativeElement.offsetWidth;
this.pageWrapper.nativeElement.scrollLeft = this.pageWrapper.nativeElement.offsetWidth;
}
}
private checkMaxRight() {
if (this.reportData && this.reportData.length < 5) {
const arg = this.pageWrapper.nativeElement.offsetWidth - 15 +
this.pageWrapper.nativeElement.scrollLeft + 2 <= this.table._elementRef.nativeElement.offsetWidth;
return this.isMaxRight.next(arg);
} else {
const arg = this.tableWrapper.nativeElement.offsetWidth +
this.tableWrapper.nativeElement.scrollLeft + 2 <= this.table._elementRef.nativeElement.offsetWidth;
return this.isMaxRight.next(arg);
}
}
}