/// import {Component, ElementRef, ViewChild, QueryList} from "@angular/core"; import {Photo} from "../../../../common/entities/Photo"; import {GalleryPhotoComponent} from "../photo/photo.gallery.component"; import {AnimationBuilder} from "@angular/platform-browser/src/animate/animation_builder"; import {BrowserDomAdapter} from "@angular/platform-browser/src/browser_common"; import {Dimension} from "../../model/IRenderable"; @Component({ selector: 'gallery-lightbox', styleUrls: ['app/gallery/lightbox/lightbox.gallery.component.css'], templateUrl: 'app/gallery/lightbox/lightbox.gallery.component.html' }) export class GalleryLightboxComponent { @ViewChild('lightbox') lightBoxDiv:ElementRef; @ViewChild('blackCanvas') blackCanvasDiv:ElementRef; @ViewChild('thImage') thIMageImg:ElementRef; @ViewChild('image') imageImg:ElementRef; private activePhoto:GalleryPhotoComponent = null; public gridPhotoQL:QueryList; private dom:BrowserDomAdapter; constructor(private animBuilder:AnimationBuilder) { this.dom = new BrowserDomAdapter(); } public show(photo:Photo) { let selectedPhoto = this.findPhotoComponenet(photo); if (selectedPhoto === null) { throw new Error("Can't find Photo"); } this.dom.setStyle(this.dom.query('body'), 'overflow', 'hidden'); this.activePhoto = selectedPhoto; let from = this.activePhoto.getDimension(); from.top -= this.getBodyScrollTop(); let fromImage = {width: from.width + "px", height: from.height + "px", top: "0px", left: "0px"}; let toImage = this.calcLightBoxPhotoDimension(this.activePhoto.photo).toStyle(); this.forceAnimateFrom(fromImage, toImage, this.thIMageImg.nativeElement); this.forceAnimateFrom(fromImage, toImage, this.imageImg.nativeElement); this.forceAnimateFrom(from.toStyle(), {height: "100%", width: "100%", "top": "0px", "left": "0px"}, this.lightBoxDiv.nativeElement); this.forceAnimateFrom({opacity: "0", display: "block"}, {opacity: "1"}, this.blackCanvasDiv.nativeElement); } public hide() { console.log("hiding"); let to = this.activePhoto.getDimension(); to.top -= this.getBodyScrollTop(); this.forceAnimateTo({height: "100%", width: "100%", "top": "0px", "left": "0px"}, to.toStyle(), this.lightBoxDiv.nativeElement, {height: "0px", width: "0px", "top": "0px", "left": "0px"}, ()=> { this.activePhoto = null; }); this.dom.setStyle(this.dom.query('body'), 'overflow', 'auto'); this.forceAnimateTo({opacity: "1.0", display: "block"}, {opacity: "0.0", display: "block"}, this.blackCanvasDiv.nativeElement, {display: "none"}); let fromImage = this.calcLightBoxPhotoDimension(this.activePhoto.photo).toStyle(); let toImage = {width: to.width + "px", height: to.height + "px", top: "0px", left: "0px"}; this.forceAnimateTo(fromImage, toImage, this.thIMageImg.nativeElement); this.forceAnimateTo(fromImage, toImage, this.imageImg.nativeElement); } private findPhotoComponenet(photo) { let galleryPhotoComponents = this.gridPhotoQL.toArray(); let selectedPhoto:GalleryPhotoComponent = null; for (let i = 0; i < galleryPhotoComponents.length; i++) { if (galleryPhotoComponents[i].photo == photo) { selectedPhoto = galleryPhotoComponents[i]; break; } } return selectedPhoto; } private forceAnimateFrom(from, to, elemnet) { let anim0 = this.animBuilder.css(); anim0.setDuration(0); anim0.setToStyles(from); anim0.start(elemnet).onComplete(()=> { let anim1 = this.animBuilder.css(); anim1.setDuration(500); anim1.setFromStyles(from); anim1.setToStyles(to); anim1.start(elemnet); }); } private forceAnimateTo(from, to, elemnet, innerTo = null, onComplete = ()=> { }) { if (innerTo == null) { innerTo = to; } let anim0 = this.animBuilder.css(); anim0.setDuration(500); anim0.setFromStyles(from); anim0.setToStyles(to); anim0.start(elemnet).onComplete(()=> { let anim1 = this.animBuilder.css(); anim1.setDuration(0); anim1.setToStyles(innerTo); anim1.start(elemnet).onComplete(onComplete); }); } getPhotoPath() { if (!this.activePhoto) { return ""; } return Photo.getPhotoPath(this.activePhoto.photo); } getThumbnailPath() { if (!this.activePhoto) { return ""; } return Photo.getThumbnailPath(this.activePhoto.photo); } private getBodyScrollTop() { return this.dom.getProperty(this.dom.query('body'), 'scrollTop'); } private getScreenWidth() { return window.innerWidth; } private getScreenHeight() { return window.innerHeight; } private calcLightBoxPhotoDimension(photo:Photo):Dimension { let width = 0; let height = 0; if (photo.height > photo.width) { width = Math.round(photo.width * (this.getScreenHeight() / photo.height)); height = this.getScreenHeight(); } else { width = this.getScreenWidth(); height = Math.round(photo.height * (this.getScreenWidth() / photo.width)); } let top = (this.getScreenHeight() / 2 - height / 2); let left = (this.getScreenWidth() / 2 - width / 2); return new Dimension(top, left, width, height); } }