1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-16 11:37:13 +02:00
pigallery2/frontend/app/gallery/gallery.component.ts

54 lines
1.8 KiB
TypeScript
Raw Normal View History

2016-03-14 14:20:29 +02:00
///<reference path="../../browser.d.ts"/>
2016-03-13 12:28:29 +02:00
2016-05-09 17:04:56 +02:00
import {Component, OnInit} from "@angular/core";
import {AuthenticationService} from "../model/network/authentication.service.ts";
2016-05-09 17:04:56 +02:00
import {Router, RouteParams} from "@angular/router-deprecated";
2016-03-20 17:54:30 +02:00
import {GalleryService} from "./gallery.service";
2016-03-20 21:05:51 +02:00
import {GalleryDirectoryComponent} from "./directory/directory.gallery.component";
import {GalleryGridComponent} from "./grid/grid.gallery.component";
import {FrameComponent} from "../frame/frame.component";
import {GalleryLightboxComponent} from "./lightbox/lightbox.gallery.component";
import {GallerySearchComponent} from "./search/search.gallery.component";
import {Config} from "../config/Config";
2016-03-13 12:28:29 +02:00
@Component({
selector: 'gallery',
2016-03-20 17:54:30 +02:00
templateUrl: 'app/gallery/gallery.component.html',
styleUrls: ['app/gallery/gallery.component.css'],
2016-05-09 17:04:56 +02:00
directives: [GalleryGridComponent,
GalleryDirectoryComponent,
GalleryLightboxComponent,
FrameComponent,
GallerySearchComponent]
2016-03-13 12:28:29 +02:00
})
2016-05-09 17:04:56 +02:00
export class GalleryComponent implements OnInit {
2016-05-09 17:04:56 +02:00
public showSearchBar:boolean = true;
2016-03-20 17:54:30 +02:00
constructor(private _galleryService:GalleryService,
2016-05-09 17:04:56 +02:00
private _params:RouteParams,
private _authService:AuthenticationService,
private _router:Router) {
this.showSearchBar = Config.Client.Search.searchEnabled;
}
2016-05-09 17:04:56 +02:00
ngOnInit() {
if (!this._authService.isAuthenticated()) {
this._router.navigate(['Login']);
2016-03-20 17:54:30 +02:00
return;
}
2016-05-09 17:04:56 +02:00
let directoryName = this._params.get('directory');
console.log(this._params);
console.log(directoryName);
2016-03-20 17:54:30 +02:00
directoryName = directoryName ? directoryName : "";
this._galleryService.getDirectory(directoryName);
}
2016-03-13 12:28:29 +02:00
}