mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
121 lines
3.7 KiB
TypeScript
121 lines
3.7 KiB
TypeScript
import {Component, HostListener, Input, OnChanges} from '@angular/core';
|
|
import {DirectoryDTO} from '../../../../common/entities/DirectoryDTO';
|
|
import {Router, RouterLink} from '@angular/router';
|
|
import {UserDTO} from '../../../../common/entities/UserDTO';
|
|
import {AuthenticationService} from '../../model/network/authentication.service';
|
|
import {I18n} from '@ngx-translate/i18n-polyfill';
|
|
import {QueryService} from '../../model/query.service';
|
|
import {GalleryService} from '../gallery.service';
|
|
import {Utils} from '../../../../common/Utils';
|
|
import {SortingMethods} from '../../../../common/entities/SortingMethods';
|
|
import {Config} from '../../../../common/config/public/Config';
|
|
import {SearchResultDTO} from '../../../../common/entities/SearchResultDTO';
|
|
import {SearchTypes} from '../../../../common/entities/AutoCompleteItem';
|
|
|
|
@Component({
|
|
selector: 'app-gallery-navbar',
|
|
styleUrls: ['./navigator.gallery.component.css'],
|
|
templateUrl: './navigator.gallery.component.html',
|
|
providers: [RouterLink],
|
|
})
|
|
export class GalleryNavigatorComponent implements OnChanges {
|
|
@Input() directory: DirectoryDTO;
|
|
@Input() searchResult: SearchResultDTO;
|
|
|
|
routes: NavigatorPath[] = [];
|
|
SortingMethods = SortingMethods;
|
|
sortingMethodsType: { key: number; value: string }[] = [];
|
|
config = Config;
|
|
DefaultSorting = Config.Client.Other.defaultPhotoSortingMethod;
|
|
private readonly RootFolderName: string;
|
|
|
|
readonly SearchTypes = SearchTypes;
|
|
|
|
constructor(private _authService: AuthenticationService,
|
|
public queryService: QueryService,
|
|
public galleryService: GalleryService,
|
|
private router: Router,
|
|
private i18n: I18n) {
|
|
this.sortingMethodsType = Utils.enumToArray(SortingMethods);
|
|
this.RootFolderName = this.i18n('Images');
|
|
}
|
|
|
|
|
|
ngOnChanges() {
|
|
this.getPath();
|
|
}
|
|
|
|
getPath(): any {
|
|
if (!this.directory) {
|
|
return [];
|
|
}
|
|
|
|
const path = this.directory.path.replace(new RegExp('\\\\', 'g'), '/');
|
|
|
|
const dirs = path.split('/');
|
|
dirs.push(this.directory.name);
|
|
|
|
// removing empty strings
|
|
for (let i = 0; i < dirs.length; i++) {
|
|
if (!dirs[i] || 0 === dirs[i].length || '.' === dirs[i]) {
|
|
dirs.splice(i, 1);
|
|
i--;
|
|
}
|
|
}
|
|
|
|
const user = this._authService.user.value;
|
|
const arr: NavigatorPath[] = [];
|
|
|
|
// create root link
|
|
if (dirs.length === 0) {
|
|
arr.push({name: this.RootFolderName, route: null});
|
|
} else {
|
|
arr.push({name: this.RootFolderName, route: UserDTO.isPathAvailable('/', user.permissions) ? '/' : null});
|
|
}
|
|
|
|
// create rest navigation
|
|
dirs.forEach((name, index) => {
|
|
const route = dirs.slice(0, dirs.indexOf(name) + 1).join('/');
|
|
if (dirs.length - 1 === index) {
|
|
arr.push({name: name, route: null});
|
|
} else {
|
|
arr.push({name: name, route: UserDTO.isPathAvailable(route, user.permissions) ? route : null});
|
|
}
|
|
});
|
|
|
|
|
|
this.routes = arr;
|
|
|
|
|
|
}
|
|
|
|
setSorting(sorting: SortingMethods) {
|
|
this.galleryService.setSorting(sorting);
|
|
}
|
|
|
|
get ItemCount(): number {
|
|
return this.directory ? this.directory.mediaCount : this.searchResult.media.length;
|
|
}
|
|
|
|
/*
|
|
|
|
@HostListener('window:keydown', ['$event'])
|
|
onKeyPress(e: KeyboardEvent) {
|
|
if (this.routes.length < 2) {
|
|
return;
|
|
}
|
|
const event: KeyboardEvent = window.event ? <any>window.event : e;
|
|
if (event.altKey === true && event.key === 'ArrowUp') {
|
|
const path = this.routes[this.routes.length - 2];
|
|
this.router.navigate(['/gallery', path.route],
|
|
{queryParams: this.queryService.getParams()}).catch(console.error);
|
|
}
|
|
}*/
|
|
}
|
|
|
|
interface NavigatorPath {
|
|
name: string;
|
|
route: string;
|
|
}
|
|
|