2017-06-11 04:32:56 +08:00
|
|
|
import {Component, ElementRef, Input, OnDestroy, OnInit, ViewChild} from "@angular/core";
|
2017-06-21 17:33:21 +08:00
|
|
|
import {DomSanitizer} from "@angular/platform-browser";
|
2016-12-28 03:55:51 +08:00
|
|
|
import {DirectoryDTO} from "../../../../common/entities/DirectoryDTO";
|
2016-12-27 06:36:38 +08:00
|
|
|
import {RouterLink} from "@angular/router";
|
2016-03-27 02:24:12 +08:00
|
|
|
import {Utils} from "../../../../common/Utils";
|
2017-03-18 07:11:53 +08:00
|
|
|
import {Photo} from "../Photo";
|
2017-03-21 04:37:23 +08:00
|
|
|
import {Thumbnail, ThumbnailManagerService} from "../thumnailManager.service";
|
2017-07-04 01:17:49 +08:00
|
|
|
import {ShareService} from "../share.service";
|
2016-03-21 03:05:51 +08:00
|
|
|
|
|
|
|
@Component({
|
2017-06-11 04:32:56 +08:00
|
|
|
selector: 'gallery-directory',
|
|
|
|
templateUrl: './directory.gallery.component.html',
|
|
|
|
styleUrls: ['./directory.gallery.component.css'],
|
|
|
|
providers: [RouterLink],
|
2016-03-21 03:05:51 +08:00
|
|
|
})
|
2017-06-11 04:32:56 +08:00
|
|
|
export class GalleryDirectoryComponent implements OnInit, OnDestroy {
|
|
|
|
@Input() directory: DirectoryDTO;
|
|
|
|
@ViewChild("dirContainer") container: ElementRef;
|
|
|
|
thumbnail: Thumbnail = null;
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
constructor(private thumbnailService: ThumbnailManagerService,
|
|
|
|
private _sanitizer: DomSanitizer,
|
|
|
|
public _shareService: ShareService) {
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-21 03:05:51 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
ngOnInit() {
|
|
|
|
if (this.directory.photos.length > 0) {
|
|
|
|
this.thumbnail = this.thumbnailService.getThumbnail(new Photo(this.directory.photos[0], 100, 100));
|
2017-03-20 07:01:41 +08:00
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2017-03-20 07:01:41 +08:00
|
|
|
|
2017-06-21 17:33:21 +08:00
|
|
|
getSanitizedThUrl() {
|
|
|
|
return this._sanitizer.bypassSecurityTrustStyle('url(' + encodeURI(this.thumbnail.Src).replace(/\(/g, "%28").replace(/\)/g, "%29") + ')');
|
|
|
|
}
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
//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 07:11:53 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
getDirectoryPath() {
|
|
|
|
return Utils.concatUrls(this.directory.path, this.directory.name);
|
|
|
|
}
|
2016-03-27 02:24:12 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
ngOnDestroy() {
|
|
|
|
if (this.thumbnail != null) {
|
|
|
|
this.thumbnail.destroy();
|
2017-03-20 07:01:41 +08:00
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-03-21 03:05:51 +08:00
|
|
|
}
|
|
|
|
|