2018-03-31 03:30:30 +08:00
|
|
|
import {Component, ElementRef, Input, OnDestroy, OnInit, ViewChild} from '@angular/core';
|
|
|
|
import {DomSanitizer} from '@angular/platform-browser';
|
|
|
|
import {DirectoryDTO} from '../../../../common/entities/DirectoryDTO';
|
|
|
|
import {RouterLink} from '@angular/router';
|
|
|
|
import {Utils} from '../../../../common/Utils';
|
|
|
|
import {Photo} from '../Photo';
|
|
|
|
import {Thumbnail, ThumbnailManagerService} from '../thumnailManager.service';
|
|
|
|
import {ShareService} from '../share.service';
|
2018-05-10 01:56:02 +08:00
|
|
|
import {PageHelper} from '../../model/page.helper';
|
2016-03-21 03:05:51 +08:00
|
|
|
|
|
|
|
@Component({
|
2018-05-04 07:17:08 +08:00
|
|
|
selector: 'app-gallery-directory',
|
2017-06-11 04:32:56 +08:00
|
|
|
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;
|
2018-03-31 03:30:30 +08:00
|
|
|
@ViewChild('dirContainer') container: ElementRef;
|
2017-06-11 04:32:56 +08:00
|
|
|
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-07-21 05:00:49 +08:00
|
|
|
size: number = null;
|
2017-03-20 07:01:41 +08:00
|
|
|
|
2017-06-21 17:33:21 +08:00
|
|
|
getSanitizedThUrl() {
|
2018-05-13 00:19:51 +08:00
|
|
|
return this._sanitizer.bypassSecurityTrustStyle('url(' + encodeURI(this.thumbnail.Src).replace(/\(/g, '%28')
|
|
|
|
.replace(/\)/g, '%29') + ')');
|
2017-06-21 17:33:21 +08:00
|
|
|
}
|
|
|
|
|
2018-05-13 00:19:51 +08:00
|
|
|
// TODO: implement scroll
|
2017-06-11 04:32:56 +08:00
|
|
|
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
|
|
|
|
2017-07-21 05:00:49 +08:00
|
|
|
ngOnInit() {
|
|
|
|
if (this.directory.photos.length > 0) {
|
|
|
|
this.thumbnail = this.thumbnailService.getThumbnail(new Photo(this.directory.photos[0], this.calcSize(), this.calcSize()));
|
|
|
|
}
|
|
|
|
}
|
2017-07-21 03:06:59 +08:00
|
|
|
|
2017-07-21 05:00:49 +08:00
|
|
|
calcSize() {
|
2018-05-10 01:56:02 +08:00
|
|
|
if (this.size == null || PageHelper.isScrollYVisible()) {
|
|
|
|
const size = 220 + 5;
|
2017-07-21 05:00:49 +08:00
|
|
|
const containerWidth = this.container.nativeElement.parentElement.parentElement.clientWidth;
|
|
|
|
this.size = containerWidth / Math.round((containerWidth / size));
|
|
|
|
}
|
|
|
|
return Math.floor(this.size - 5);
|
2017-07-21 03:06:59 +08:00
|
|
|
}
|
|
|
|
|
2016-03-21 03:05:51 +08:00
|
|
|
}
|
|
|
|
|