1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/gallery/directory/directory.gallery.component.ts

47 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-03-20 00:01:41 +01:00
import {Component, Input, OnInit, OnDestroy, ViewChild, ElementRef} from "@angular/core";
2016-12-27 20:55:51 +01:00
import {DirectoryDTO} from "../../../../common/entities/DirectoryDTO";
2016-12-26 23:36:38 +01:00
import {RouterLink} from "@angular/router";
2016-03-26 19:24:12 +01:00
import {Utils} from "../../../../common/Utils";
2017-03-18 00:11:53 +01:00
import {Photo} from "../Photo";
import {Thumbnail, ThumbnailManagerService} from "../thumnailManager.service";
2016-03-20 20:05:51 +01:00
@Component({
selector: 'gallery-directory',
2016-03-26 16:25:48 +01:00
templateUrl: 'app/gallery/directory/directory.gallery.component.html',
2017-03-18 00:11:53 +01:00
styleUrls: ['app/gallery/directory/directory.gallery.component.css'],
2016-12-26 23:36:38 +01:00
providers: [RouterLink],
2016-03-20 20:05:51 +01:00
})
2017-03-20 00:01:41 +01:00
export class GalleryDirectoryComponent implements OnInit,OnDestroy {
2016-12-27 20:55:51 +01:00
@Input() directory: DirectoryDTO;
2017-03-20 00:01:41 +01:00
@ViewChild("dirContainer") container: ElementRef;
thumbnail: Thumbnail = null;
2016-05-09 17:04:56 +02:00
2017-03-20 00:01:41 +01:00
constructor(private thumbnailService: ThumbnailManagerService) {
2016-03-20 20:05:51 +01:00
}
2017-03-20 00:01:41 +01:00
ngOnInit() {
if (this.directory.photos.length > 0) {
this.thumbnail = this.thumbnailService.getThumbnail(new Photo(this.directory.photos[0], 100, 100));
}
}
//TODO: implement scroll
isInView(): boolean {
return document.body.scrollTop < this.container.nativeElement.offsetTop + this.container.nativeElement.clientHeight
&& document.body.scrollTop + window.innerHeight > this.container.nativeElement.offsetTop;
2017-03-18 00:11:53 +01:00
}
2016-05-09 17:04:56 +02:00
getDirectoryPath() {
return Utils.concatUrls(this.directory.path, this.directory.name);
2016-03-26 19:24:12 +01:00
}
2017-03-20 00:01:41 +01:00
ngOnDestroy() {
if (this.thumbnail != null) {
this.thumbnail.destroy();
}
}
2016-05-09 17:04:56 +02:00
2016-03-20 20:05:51 +01:00
}