mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
156 lines
5.1 KiB
TypeScript
156 lines
5.1 KiB
TypeScript
import {Component, OnDestroy, OnInit, ViewChild} from "@angular/core";
|
|
import {AuthenticationService} from "../model/network/authentication.service";
|
|
import {ActivatedRoute, Params, Router} from "@angular/router";
|
|
import {GalleryService} from "./gallery.service";
|
|
import {GalleryGridComponent} from "./grid/grid.gallery.component";
|
|
import {GallerySearchComponent} from "./search/search.gallery.component";
|
|
import {SearchTypes} from "../../../common/entities/AutoCompleteItem";
|
|
import {Config} from "../../../common/config/public/Config";
|
|
import {DirectoryDTO} from "../../../common/entities/DirectoryDTO";
|
|
import {SearchResultDTO} from "../../../common/entities/SearchResult";
|
|
import {ShareService} from "./share.service";
|
|
import {NavigationService} from "../model/navigation.service";
|
|
import {UserRoles} from "../../../common/entities/UserDTO";
|
|
import {Observable} from "rxjs/Rx";
|
|
|
|
@Component({
|
|
selector: 'gallery',
|
|
templateUrl: './gallery.component.html',
|
|
styleUrls: ['./gallery.component.css']
|
|
})
|
|
export class GalleryComponent implements OnInit, OnDestroy {
|
|
|
|
@ViewChild(GallerySearchComponent) search: GallerySearchComponent;
|
|
@ViewChild(GalleryGridComponent) grid: GalleryGridComponent;
|
|
|
|
public showSearchBar: boolean = false;
|
|
public showShare: boolean = false;
|
|
public directories: DirectoryDTO[] = [];
|
|
public isPhotoWithLocation = false;
|
|
private $counter;
|
|
private subscription = {
|
|
content: null,
|
|
route: null,
|
|
timer: null
|
|
};
|
|
public countDown = null;
|
|
public mapEnabled = true;
|
|
|
|
constructor(public _galleryService: GalleryService,
|
|
private _authService: AuthenticationService,
|
|
private _router: Router,
|
|
private shareService: ShareService,
|
|
private _route: ActivatedRoute,
|
|
private _navigation: NavigationService) {
|
|
this.mapEnabled = Config.Client.Map.enabled;
|
|
|
|
}
|
|
|
|
updateTimer(t: number) {
|
|
if (this.shareService.sharing.value == null) {
|
|
return;
|
|
}
|
|
t = Math.floor((this.shareService.sharing.value.expires - Date.now()) / 1000);
|
|
this.countDown = {};
|
|
this.countDown.day = Math.floor(t / 86400);
|
|
t -= this.countDown.day * 86400;
|
|
this.countDown.hour = Math.floor(t / 3600) % 24;
|
|
t -= this.countDown.hour * 3600;
|
|
this.countDown.minute = Math.floor(t / 60) % 60;
|
|
t -= this.countDown.minute * 60;
|
|
this.countDown.second = t % 60;
|
|
}
|
|
|
|
async ngOnInit() {
|
|
await this.shareService.wait();
|
|
if (!this._authService.isAuthenticated() &&
|
|
(!this.shareService.isSharing() ||
|
|
(this.shareService.isSharing() && Config.Client.Sharing.passwordProtected == true))) {
|
|
|
|
return this._navigation.toLogin();
|
|
}
|
|
this.showSearchBar = Config.Client.Search.enabled && this._authService.isAuthorized(UserRoles.Guest);
|
|
this.showShare = Config.Client.Sharing.enabled && this._authService.isAuthorized(UserRoles.User);
|
|
|
|
this.subscription.content = this._galleryService.content.subscribe(this.onContentChange);
|
|
this.subscription.route = this._route.params.subscribe(this.onRoute);
|
|
|
|
if (this.shareService.isSharing()) {
|
|
this.$counter = Observable.interval(1000);
|
|
this.subscription.timer = this.$counter.subscribe((x) => this.updateTimer(x));
|
|
}
|
|
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
if (this.subscription.content !== null) {
|
|
this.subscription.content.unsubscribe();
|
|
}
|
|
if (this.subscription.route !== null) {
|
|
this.subscription.route.unsubscribe();
|
|
}
|
|
}
|
|
|
|
private onContentChange = (content) => {
|
|
const dirSorter = (a: DirectoryDTO, b: DirectoryDTO) => {
|
|
return a.name.localeCompare(b.name);
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|
|
};
|
|
|
|
private onRoute = async (params: Params) => {
|
|
console.log("onRoute", params);
|
|
const 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;
|
|
}
|
|
|
|
if (params['sharingKey'] && params['sharingKey'] != "") {
|
|
const sharing = await this.shareService.getSharing();
|
|
this._router.navigate(['/gallery', sharing.path], {queryParams: {sk: this.shareService.getSharingKey()}});
|
|
return;
|
|
}
|
|
|
|
let directoryName = params['directory'];
|
|
directoryName = directoryName || "";
|
|
|
|
this._galleryService.getDirectory(directoryName);
|
|
|
|
};
|
|
|
|
|
|
onLightboxLastElement() {
|
|
this.grid.renderARow();
|
|
}
|
|
|
|
|
|
}
|
|
|