mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
7371fda5a8
Router active line broke navigation, replacing it with custom function
83 lines
2.2 KiB
TypeScript
83 lines
2.2 KiB
TypeScript
import {NgModule} from '@angular/core';
|
|
import {RouterModule, Routes, UrlMatchResult, UrlSegment} from '@angular/router';
|
|
import {LoginComponent} from './ui/login/login.component';
|
|
import {GalleryComponent} from './ui/gallery/gallery.component';
|
|
import {AdminComponent} from './ui/admin/admin.component';
|
|
import {ShareLoginComponent} from './ui/sharelogin/share-login.component';
|
|
import {QueryParams} from '../../common/QueryParams';
|
|
import {DuplicateComponent} from './ui/duplicates/duplicates.component';
|
|
import {FacesComponent} from './ui/faces/faces.component';
|
|
import {AuthGuard} from './model/network/helper/auth.guard';
|
|
|
|
export function galleryMatcherFunction(
|
|
segments: UrlSegment[]): UrlMatchResult | null {
|
|
|
|
|
|
if (segments.length === 0) {
|
|
return null;
|
|
}
|
|
const path = segments[0].path;
|
|
|
|
const posParams: { [key: string]: UrlSegment } = {};
|
|
if (path === 'gallery') {
|
|
if (segments.length > 1) {
|
|
posParams[QueryParams.gallery.directory] = segments[1];
|
|
}
|
|
return {consumed: segments.slice(0, Math.min(segments.length, 2)), posParams};
|
|
}
|
|
if (path === 'search') {
|
|
if (segments.length > 1) {
|
|
posParams[QueryParams.gallery.search.query] = segments[1];
|
|
}
|
|
return {consumed: segments.slice(0, Math.min(segments.length, 2)), posParams};
|
|
}
|
|
if (path === 'share') {
|
|
if (segments.length > 1) {
|
|
posParams[QueryParams.gallery.sharingKey_params] = segments[1];
|
|
}
|
|
return {consumed: segments.slice(0, Math.min(segments.length, 2)), posParams};
|
|
}
|
|
return null;
|
|
}
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: 'login',
|
|
component: LoginComponent
|
|
},
|
|
{
|
|
path: 'shareLogin',
|
|
component: ShareLoginComponent
|
|
},
|
|
{
|
|
path: 'admin',
|
|
component: AdminComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{
|
|
path: 'duplicates',
|
|
component: DuplicateComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{
|
|
path: 'faces',
|
|
component: FacesComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{
|
|
matcher: galleryMatcherFunction,
|
|
component: GalleryComponent,
|
|
canActivate: [AuthGuard]
|
|
},
|
|
{path: '', redirectTo: '/login', pathMatch: 'full'},
|
|
{path: '**', redirectTo: '/login', pathMatch: 'full'}
|
|
];
|
|
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forRoot(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class AppRoutingModule {
|
|
}
|