1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/gallery.component.ts

100 lines
3.0 KiB
TypeScript
Raw Normal View History

2016-05-16 17:03:11 +08:00
import {Component, OnInit, ViewChild} from "@angular/core";
2016-12-27 06:36:38 +08:00
import {AuthenticationService} from "../model/network/authentication.service";
2017-06-04 21:25:08 +08:00
import {ActivatedRoute, Params, Router} from "@angular/router";
2016-03-20 23:54:30 +08:00
import {GalleryService} from "./gallery.service";
import {GalleryGridComponent} from "./grid/grid.gallery.component";
import {GallerySearchComponent} from "./search/search.gallery.component";
2016-05-16 17:03:11 +08:00
import {SearchTypes} from "../../../common/entities/AutoCompleteItem";
2017-06-04 21:25:08 +08:00
import {Config} from "../../../common/config/public/Config";
2017-06-21 17:46:23 +08:00
import {DirectoryDTO} from "../../../common/entities/DirectoryDTO";
2017-06-22 03:32:57 +08:00
import {SearchResultDTO} from "../../../common/entities/SearchResult";
2016-03-13 18:28:29 +08:00
@Component({
selector: 'gallery',
templateUrl: './gallery.component.html',
styleUrls: ['./gallery.component.css']
2016-03-13 18:28:29 +08:00
})
2016-05-09 23:04:56 +08:00
export class GalleryComponent implements OnInit {
@ViewChild(GallerySearchComponent) search: GallerySearchComponent;
@ViewChild(GalleryGridComponent) grid: GalleryGridComponent;
2016-05-09 23:04:56 +08:00
public showSearchBar: boolean = true;
2017-06-21 17:46:23 +08:00
public directories: DirectoryDTO[] = [];
2017-06-22 03:32:57 +08:00
public isPhotoWithLocation = false;
2016-05-16 17:03:11 +08:00
constructor(public _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;
}
2017-06-21 19:47:21 +08:00
this._galleryService.content.subscribe((content) => {
const dirSorter = (a: DirectoryDTO, b: DirectoryDTO) => {
return a.name.localeCompare(b.name);
};
2017-06-22 03:32:57 +08:00
const tmp = <DirectoryDTO | SearchResultDTO>(content.searchResult || content.directory || {
directories: [],
photos: []
});
this.directories = tmp.directories.sort(dirSorter);
this.isPhotoWithLocation = false;
for (let i = 0; i < tmp.photos.length; i++) {
if (tmp.photos[i].metadata &&
tmp.photos[i].metadata.positionData &&
tmp.photos[i].metadata.positionData.GPSData &&
tmp.photos[i].metadata.positionData.GPSData.longitude
) {
this.isPhotoWithLocation = true;
break;
}
}
2017-06-21 19:47:21 +08:00
});
2017-06-21 17:46:23 +08:00
this._route.params
2017-06-21 19:47:21 +08:00
.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];
2017-06-21 19:47:21 +08:00
this._galleryService.search(searchText, type);
2016-03-20 23:54:30 +08:00
return;
}
2016-05-16 17:03:11 +08:00
2017-06-21 19:47:21 +08:00
this._galleryService.search(searchText);
return;
}
2016-05-16 17:03:11 +08:00
2016-12-27 06:36:38 +08:00
let directoryName = params['directory'];
directoryName = directoryName ? directoryName : "";
2016-05-16 17:03:11 +08:00
2017-06-21 19:47:21 +08:00
this._galleryService.getDirectory(directoryName);
});
2016-05-16 17:03:11 +08:00
}
2017-06-22 03:32:57 +08:00
onLightboxLastElement() {
this.grid.renderARow();
}
2016-03-13 18:28:29 +08:00
}