mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import {Component, OnInit, ViewChild} from "@angular/core";
|
|
import {AuthenticationService} from "../model/network/authentication.service";
|
|
import {Router, ActivatedRoute, Params} from "@angular/router";
|
|
import {GalleryService} from "./gallery.service";
|
|
import {GalleryGridComponent} from "./grid/grid.gallery.component";
|
|
import {GallerySearchComponent} from "./search/search.gallery.component";
|
|
import {Config} from "../config/Config";
|
|
import {SearchTypes} from "../../../common/entities/AutoCompleteItem";
|
|
|
|
@Component({
|
|
selector: 'gallery',
|
|
templateUrl: 'app/gallery/gallery.component.html',
|
|
styleUrls: ['app/gallery/gallery.component.css']
|
|
})
|
|
export class GalleryComponent implements OnInit {
|
|
|
|
@ViewChild(GallerySearchComponent) search: GallerySearchComponent;
|
|
@ViewChild(GalleryGridComponent) grid: GalleryGridComponent;
|
|
|
|
public showSearchBar: boolean = true;
|
|
|
|
constructor(private _galleryService: GalleryService,
|
|
private _authService: AuthenticationService,
|
|
private _router: Router,
|
|
private _route: ActivatedRoute) {
|
|
|
|
this.showSearchBar = Config.Client.Search.searchEnabled;
|
|
}
|
|
|
|
ngOnInit() {
|
|
if (!this._authService.isAuthenticated()) {
|
|
this._router.navigate(['login']);
|
|
return;
|
|
}
|
|
|
|
this._route.params
|
|
.subscribe((params: Params) => {
|
|
let searchText = params['searchText'];
|
|
if (searchText && searchText != "") {
|
|
console.log("searching");
|
|
let typeString = params['type'];
|
|
|
|
if (typeString && typeString != "") {
|
|
console.log("with type");
|
|
let type: SearchTypes = <any>SearchTypes[typeString];
|
|
this._galleryService.search(searchText, type);
|
|
return;
|
|
}
|
|
|
|
this._galleryService.search(searchText);
|
|
return;
|
|
}
|
|
|
|
|
|
let directoryName = params['directory'];
|
|
directoryName = directoryName ? directoryName : "";
|
|
|
|
this._galleryService.getDirectory(directoryName);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
onLightboxLastElement() {
|
|
this.grid.renderARow();
|
|
}
|
|
|
|
|
|
}
|
|
|