Remove global outlets
parent
b2d18e5cd0
commit
e8319d351f
|
@ -18,10 +18,10 @@
|
||||||
<a routerLink='{{config.overviewPath}}' class="link">Armeeübersicht</a>
|
<a routerLink='{{config.overviewPath}}' class="link">Armeeübersicht</a>
|
||||||
</li>
|
</li>
|
||||||
<li routerLinkActive="active">
|
<li routerLinkActive="active">
|
||||||
<a [routerLink]="[config.publicPath,{outlets:{right:'ranks'}}]" class="link">Ränge</a>
|
<a [routerLink]="[config.publicPath.concat('/').concat(config.rankPath)]" class="link">Ränge</a>
|
||||||
</li>
|
</li>
|
||||||
<li routerLinkActive="active">
|
<li routerLinkActive="active">
|
||||||
<a [routerLink]="[config.publicPath,{outlets:{right:'decorations'}}]" class="link">Auszeichnungen</a>
|
<a [routerLink]="[config.publicPath.concat('/').concat(config.decorationPath)]" class="link">Auszeichnungen</a>
|
||||||
</li>
|
</li>
|
||||||
<li routerLinkActive="active">
|
<li routerLinkActive="active">
|
||||||
<a routerLink='{{config.statsPath}}' class="link">Statistiken</a>
|
<a routerLink='{{config.statsPath}}' class="link">Statistiken</a>
|
||||||
|
@ -115,27 +115,10 @@
|
||||||
<!--</mat-icon>-->
|
<!--</mat-icon>-->
|
||||||
<!--</button>-->
|
<!--</button>-->
|
||||||
|
|
||||||
|
<div>
|
||||||
<div id="top">
|
|
||||||
<router-outlet name="top"></router-outlet>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="left"
|
|
||||||
[style.background]="leftBackground"
|
|
||||||
[style.box-shadow]="leftBoxShadow"
|
|
||||||
*ngIf="sidebarOpen">
|
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="right">
|
|
||||||
<router-outlet name="right"></router-outlet>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
<router-outlet name="footer"></router-outlet>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span *ngIf="loading" class="load-indicator load-arrow glyphicon-refresh-animate"></span>
|
<span *ngIf="loading" class="load-indicator load-arrow glyphicon-refresh-animate"></span>
|
||||||
|
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
|
|
|
@ -71,7 +71,7 @@ export const appRoutes: Routes = [
|
||||||
} // always configure this last - first matching route gets processed
|
} // always configure this last - first matching route gets processed
|
||||||
];
|
];
|
||||||
|
|
||||||
export const appRouting = RouterModule.forRoot(appRoutes);
|
export const appRouting = RouterModule.forRoot(appRoutes, { enableTracing: true });
|
||||||
|
|
||||||
export const routingComponents = [...armyRoutingComponents, LoginComponent, SignupComponent, NotFoundComponent];
|
export const routingComponents = [...armyRoutingComponents, LoginComponent, SignupComponent, NotFoundComponent];
|
||||||
|
|
||||||
|
|
|
@ -6,15 +6,14 @@ import {Subscription} from 'rxjs/Subscription';
|
||||||
import {RouteConfig} from '../../app.config';
|
import {RouteConfig} from '../../app.config';
|
||||||
import {AwardingService} from '../../services/army-management/awarding.service';
|
import {AwardingService} from '../../services/army-management/awarding.service';
|
||||||
import {Fraction} from '../../utils/fraction.enum';
|
import {Fraction} from '../../utils/fraction.enum';
|
||||||
import {DOCUMENT, Location} from '@angular/common';
|
import {Location} from '@angular/common';
|
||||||
import {CSSHelpers} from '../../utils/global.helpers';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'army-member',
|
selector: 'army-member',
|
||||||
templateUrl: './army-member.component.html',
|
templateUrl: './army-member.component.html',
|
||||||
styleUrls: ['./army-member.component.css']
|
styleUrls: ['./army-member.component.css']
|
||||||
})
|
})
|
||||||
export class ArmyMemberComponent implements OnInit, OnDestroy {
|
export class ArmyMemberComponent implements OnInit {
|
||||||
|
|
||||||
subscription: Subscription;
|
subscription: Subscription;
|
||||||
|
|
||||||
|
@ -32,13 +31,10 @@ export class ArmyMemberComponent implements OnInit, OnDestroy {
|
||||||
private route: ActivatedRoute,
|
private route: ActivatedRoute,
|
||||||
private userService: UserService,
|
private userService: UserService,
|
||||||
private awardingService: AwardingService,
|
private awardingService: AwardingService,
|
||||||
private location: Location,
|
private location: Location) {
|
||||||
@Inject(DOCUMENT) private document) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
// set background image css
|
|
||||||
this.document.getElementById('right').setAttribute('style', CSSHelpers.getBackgroundCSS('../assets/bg.jpg'));
|
|
||||||
|
|
||||||
this.subscription = this.route.params
|
this.subscription = this.route.params
|
||||||
.map(params => params['id'])
|
.map(params => params['id'])
|
||||||
|
@ -53,12 +49,6 @@ export class ArmyMemberComponent implements OnInit, OnDestroy {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
if (this.router.url !== '/' + RouteConfig.overviewPath) {
|
|
||||||
this.document.getElementById('right').setAttribute('style', '');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
backToOverview() {
|
backToOverview() {
|
||||||
this.location.back();
|
this.location.back();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
import {Component, Inject, OnDestroy, OnInit} from '@angular/core';
|
import {Component, OnInit} from '@angular/core';
|
||||||
import {Army} from '../models/model-interfaces';
|
import {Army} from '../models/model-interfaces';
|
||||||
import {ArmyService} from '../services/army-service/army.service';
|
import {ArmyService} from '../services/army-service/army.service';
|
||||||
import {ActivatedRoute, Router} from '@angular/router';
|
import {ActivatedRoute, Router} from '@angular/router';
|
||||||
import {Fraction} from '../utils/fraction.enum';
|
import {Fraction} from '../utils/fraction.enum';
|
||||||
import {DOCUMENT} from '@angular/common';
|
|
||||||
import {RouteConfig} from '../app.config';
|
|
||||||
import {CSSHelpers} from '../utils/global.helpers';
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -13,7 +10,7 @@ import {CSSHelpers} from '../utils/global.helpers';
|
||||||
templateUrl: './army.component.html',
|
templateUrl: './army.component.html',
|
||||||
styleUrls: ['./army.component.css']
|
styleUrls: ['./army.component.css']
|
||||||
})
|
})
|
||||||
export class ArmyComponent implements OnInit, OnDestroy {
|
export class ArmyComponent implements OnInit {
|
||||||
|
|
||||||
army: Army[] = [{}, {}];
|
army: Army[] = [{}, {}];
|
||||||
|
|
||||||
|
@ -21,14 +18,10 @@ export class ArmyComponent implements OnInit, OnDestroy {
|
||||||
|
|
||||||
constructor(private router: Router,
|
constructor(private router: Router,
|
||||||
private route: ActivatedRoute,
|
private route: ActivatedRoute,
|
||||||
private armyService: ArmyService,
|
private armyService: ArmyService) {
|
||||||
@Inject(DOCUMENT) private document) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
// set background image css
|
|
||||||
this.document.getElementById('right').setAttribute('style', CSSHelpers.getBackgroundCSS('../assets/bg.jpg'));
|
|
||||||
|
|
||||||
// init army data
|
// init army data
|
||||||
this.armyService.getArmy()
|
this.armyService.getArmy()
|
||||||
.subscribe(army => {
|
.subscribe(army => {
|
||||||
|
@ -36,14 +29,8 @@ export class ArmyComponent implements OnInit, OnDestroy {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
if (!this.router.url.includes(RouteConfig.overviewPath)) {
|
|
||||||
this.document.getElementById('right').setAttribute('style', '');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
select(memberId) {
|
select(memberId) {
|
||||||
this.router.navigate([{outlets: {'right': ['member', memberId]}}], {relativeTo: this.route});
|
this.router.navigate(['member', memberId], {relativeTo: this.route});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,18 +3,14 @@ import {ArmyComponent} from './army.component';
|
||||||
import {ArmyMemberComponent} from './army-member/army-member.component';
|
import {ArmyMemberComponent} from './army-member/army-member.component';
|
||||||
import {ArmySquadComponent} from './army-squad/army-squad.component';
|
import {ArmySquadComponent} from './army-squad/army-squad.component';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const armyRoutes: Routes = [
|
export const armyRoutes: Routes = [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
component: ArmyComponent,
|
component: ArmyComponent,
|
||||||
outlet: 'right'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'member/:id',
|
path: 'member/:id',
|
||||||
component: ArmyMemberComponent,
|
component: ArmyMemberComponent,
|
||||||
outlet: 'right'
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
import {Component, Inject, OnDestroy, OnInit} from '@angular/core';
|
import {Component, OnInit} from '@angular/core';
|
||||||
import {ActivatedRoute, Router} from '@angular/router';
|
import {ActivatedRoute, Router} from '@angular/router';
|
||||||
|
|
||||||
import {DOCUMENT} from '@angular/common';
|
|
||||||
import {Fraction} from '../../utils/fraction.enum';
|
import {Fraction} from '../../utils/fraction.enum';
|
||||||
import {CSSHelpers} from '../../utils/global.helpers';
|
|
||||||
import {RouteConfig} from '../../app.config';
|
|
||||||
import {Decoration} from '../../models/model-interfaces';
|
import {Decoration} from '../../models/model-interfaces';
|
||||||
import {DecorationService} from '../../services/army-management/decoration.service';
|
import {DecorationService} from '../../services/army-management/decoration.service';
|
||||||
import {MatBottomSheet} from '@angular/material';
|
import {MatBottomSheet} from '@angular/material';
|
||||||
|
@ -16,7 +13,7 @@ import {UserListSheetComponent} from '../user-list-sheet/user-list-sheet.compone
|
||||||
templateUrl: './decoration-overview.component.html',
|
templateUrl: './decoration-overview.component.html',
|
||||||
styleUrls: ['./decoration-overview.component.css']
|
styleUrls: ['./decoration-overview.component.css']
|
||||||
})
|
})
|
||||||
export class DecorationOverviewComponent implements OnInit, OnDestroy {
|
export class DecorationOverviewComponent implements OnInit {
|
||||||
|
|
||||||
decorationsBlufor: Decoration[];
|
decorationsBlufor: Decoration[];
|
||||||
|
|
||||||
|
@ -31,14 +28,10 @@ export class DecorationOverviewComponent implements OnInit, OnDestroy {
|
||||||
constructor(private router: Router,
|
constructor(private router: Router,
|
||||||
private route: ActivatedRoute,
|
private route: ActivatedRoute,
|
||||||
private decorationService: DecorationService,
|
private decorationService: DecorationService,
|
||||||
private bottomSheet: MatBottomSheet,
|
private bottomSheet: MatBottomSheet) {
|
||||||
@Inject(DOCUMENT) private document) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
// set background image css
|
|
||||||
this.document.getElementById('right').setAttribute('style', CSSHelpers.getBackgroundCSS('../assets/bg.jpg'));
|
|
||||||
|
|
||||||
// init decoration data
|
// init decoration data
|
||||||
this.decorationService.findDecorations()
|
this.decorationService.findDecorations()
|
||||||
.subscribe(decorations => {
|
.subscribe(decorations => {
|
||||||
|
@ -49,12 +42,6 @@ export class DecorationOverviewComponent implements OnInit, OnDestroy {
|
||||||
};
|
};
|
||||||
|
|
||||||
select(decoration: Decoration) {
|
select(decoration: Decoration) {
|
||||||
this.bottomSheet.open(UserListSheetComponent, {data: { decoration: decoration }});
|
this.bottomSheet.open(UserListSheetComponent, {data: {decoration: decoration}});
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
if (!this.router.url.includes(RouteConfig.overviewPath)) {
|
|
||||||
this.document.getElementById('right').setAttribute('style', '');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<router-outlet></router-outlet>
|
|
|
@ -1,11 +0,0 @@
|
||||||
import {Component} from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'cc-public',
|
|
||||||
templateUrl: './public.component.html',
|
|
||||||
styleUrls: ['./public.component.css']
|
|
||||||
})
|
|
||||||
export class PublicComponent {
|
|
||||||
constructor() {
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,26 +2,28 @@ import {RouterModule, Routes} from '@angular/router';
|
||||||
import {RankOverviewComponent} from './rank-overview/rank-overview.component';
|
import {RankOverviewComponent} from './rank-overview/rank-overview.component';
|
||||||
import {ModuleWithProviders} from '@angular/core';
|
import {ModuleWithProviders} from '@angular/core';
|
||||||
import {DecorationOverviewComponent} from './decoration-overview/decoration-overview.component';
|
import {DecorationOverviewComponent} from './decoration-overview/decoration-overview.component';
|
||||||
import {PublicComponent} from './public.component';
|
|
||||||
import {DecorationPanelComponent} from './decoration-overview/decoration-panel/decoration-panel.component';
|
import {DecorationPanelComponent} from './decoration-overview/decoration-panel/decoration-panel.component';
|
||||||
import {RankPanelComponent} from './rank-overview/rank-panel/rank-panel.component';
|
import {RankPanelComponent} from './rank-overview/rank-panel/rank-panel.component';
|
||||||
import {UserListSheetComponent} from './user-list-sheet/user-list-sheet.component';
|
import {UserListSheetComponent} from './user-list-sheet/user-list-sheet.component';
|
||||||
|
|
||||||
export const publicRoutes: Routes = [
|
export const publicRoutes: Routes = [
|
||||||
{
|
{
|
||||||
path: 'ranks',
|
path: '',
|
||||||
component: RankOverviewComponent,
|
children: [
|
||||||
outlet: 'right'
|
{
|
||||||
},
|
path: 'ranks',
|
||||||
{
|
component: RankOverviewComponent,
|
||||||
path: 'decorations',
|
},
|
||||||
component: DecorationOverviewComponent,
|
{
|
||||||
outlet: 'right'
|
path: 'decorations',
|
||||||
|
component: DecorationOverviewComponent,
|
||||||
|
},
|
||||||
|
]
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const pubRouterModule: ModuleWithProviders = RouterModule.forChild(publicRoutes);
|
export const pubRouterModule: ModuleWithProviders = RouterModule.forChild(publicRoutes);
|
||||||
|
|
||||||
export const pubRoutingComponents = [PublicComponent, RankOverviewComponent, DecorationOverviewComponent,
|
export const pubRoutingComponents = [RankOverviewComponent, DecorationOverviewComponent, DecorationPanelComponent,
|
||||||
DecorationPanelComponent, RankPanelComponent, UserListSheetComponent];
|
RankPanelComponent, UserListSheetComponent];
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ import {UserListSheetComponent} from '../user-list-sheet/user-list-sheet.compone
|
||||||
templateUrl: './rank-overview.component.html',
|
templateUrl: './rank-overview.component.html',
|
||||||
styleUrls: ['./rank-overview.component.css']
|
styleUrls: ['./rank-overview.component.css']
|
||||||
})
|
})
|
||||||
export class RankOverviewComponent implements OnInit, OnDestroy {
|
export class RankOverviewComponent implements OnInit {
|
||||||
|
|
||||||
ranksOpfor: Rank[];
|
ranksOpfor: Rank[];
|
||||||
|
|
||||||
|
@ -28,14 +28,10 @@ export class RankOverviewComponent implements OnInit, OnDestroy {
|
||||||
constructor(private router: Router,
|
constructor(private router: Router,
|
||||||
private route: ActivatedRoute,
|
private route: ActivatedRoute,
|
||||||
private rankService: RankService,
|
private rankService: RankService,
|
||||||
private bottomSheet: MatBottomSheet,
|
private bottomSheet: MatBottomSheet) {
|
||||||
@Inject(DOCUMENT) private document) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
// set background image css
|
|
||||||
this.document.getElementById('right').setAttribute('style', CSSHelpers.getBackgroundCSS('../assets/bg.jpg'));
|
|
||||||
|
|
||||||
// init rank data
|
// init rank data
|
||||||
this.rankService.findRanks()
|
this.rankService.findRanks()
|
||||||
.subscribe(ranks => {
|
.subscribe(ranks => {
|
||||||
|
@ -47,10 +43,4 @@ export class RankOverviewComponent implements OnInit, OnDestroy {
|
||||||
selectRow(rank: Rank) {
|
selectRow(rank: Rank) {
|
||||||
this.bottomSheet.open(UserListSheetComponent, {data: { rank: rank }});
|
this.bottomSheet.open(UserListSheetComponent, {data: { rank: rank }});
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnDestroy() {
|
|
||||||
if (!this.router.url.includes(RouteConfig.overviewPath)) {
|
|
||||||
this.document.getElementById('right').setAttribute('style', '');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue