mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
f9481c9f6e
Refactoring lightbox
61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
///<reference path="../../browser.d.ts"/>
|
|
|
|
import {Component, OnInit, QueryList, ViewChild, AfterViewInit} from 'angular2/core';
|
|
import {AuthenticationService} from "../model/network/authentication.service.ts";
|
|
import {Router, RouteParams} from "angular2/router";
|
|
import {GalleryService} from "./gallery.service";
|
|
import {Directory} from "../../../common/entities/Directory";
|
|
import {Message} from "../../../common/entities/Message";
|
|
import {GalleryDirectoryComponent} from "./directory/directory.gallery.component";
|
|
import {GalleryGridComponent} from "./grid/grid.gallery.component";
|
|
import {MATERIAL_DIRECTIVES} from "ng2-material/all";
|
|
import {FrameComponent} from "../frame/frame.component";
|
|
import {GalleryLightboxComponent} from "./lightbox/lightbox.gallery.component";
|
|
|
|
@Component({
|
|
selector: 'gallery',
|
|
templateUrl: 'app/gallery/gallery.component.html',
|
|
styleUrls: ['app/gallery/gallery.component.css'],
|
|
directives:[GalleryGridComponent,
|
|
GalleryDirectoryComponent,
|
|
GalleryLightboxComponent,
|
|
FrameComponent,
|
|
MATERIAL_DIRECTIVES]
|
|
})
|
|
export class GalleryComponent implements OnInit{
|
|
|
|
currentDirectory:Directory = new Directory(-1,"","/",new Date(),[],[]);
|
|
|
|
|
|
constructor(private _galleryService:GalleryService,
|
|
private _params: RouteParams,
|
|
private _authService: AuthenticationService,
|
|
private _router: Router) {
|
|
}
|
|
|
|
ngOnInit(){
|
|
if (!this._authService.isAuthenticated()) {
|
|
this._router.navigate(['Login']);
|
|
return;
|
|
}
|
|
|
|
let directoryName = this._params.get('directory');
|
|
console.log(this._params);
|
|
console.log(directoryName);
|
|
directoryName = directoryName ? directoryName : "";
|
|
this._galleryService.getDirectory(directoryName).then(( message:Message<Directory>) => {
|
|
if(message.error){
|
|
//TODO: implement
|
|
return;
|
|
}
|
|
|
|
this.currentDirectory = message.result;
|
|
});
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|