1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/faces/faces.component.ts

35 lines
865 B
TypeScript
Raw Normal View History

2019-03-03 19:11:36 +08:00
import {Component, ElementRef, OnInit, ViewChild} from '@angular/core';
import {FacesService} from './faces.service';
import {QueryService} from '../../model/query.service';
@Component({
selector: 'app-faces',
templateUrl: './faces.component.html',
styleUrls: ['./faces.component.css']
})
2019-03-03 19:11:36 +08:00
export class FacesComponent implements OnInit {
@ViewChild('container') container: ElementRef;
public size: number;
constructor(public facesService: FacesService,
2019-03-03 19:11:36 +08:00
public queryService: QueryService) {
this.facesService.getPersons().catch(console.error);
}
2019-03-03 19:11:36 +08:00
ngOnInit() {
this.updateSize();
}
private updateSize() {
const size = 220 + 5;
2019-03-03 19:11:36 +08:00
// body - container margin
const containerWidth = this.container.nativeElement.clientWidth - 30;
this.size = (containerWidth / Math.round((containerWidth / size))) - 5;
}
}