Change style of overview

master
Max Ehrlicher-Schmidt 4 years ago
parent c796befec7
commit 7175aa58c8

@ -6,6 +6,7 @@ import { ViewChild } from '@angular/core';
import { MatSidenav } from '@angular/material/sidenav'; import { MatSidenav } from '@angular/material/sidenav';
import { NavService } from './components/menu-list-item/nav.service'; import { NavService } from './components/menu-list-item/nav.service';
import { NavItem } from './components/menu-list-item/nav-item'; import { NavItem } from './components/menu-list-item/nav-item';
import { tableLinks } from 'src/app/tableLinks';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
@ -20,28 +21,12 @@ export class AppComponent {
@ViewChild('sidenav') public sideNav:MatSidenav; @ViewChild('sidenav') public sideNav:MatSidenav;
@ViewChild('appDrawer') appDrawer: ElementRef; @ViewChild('appDrawer') appDrawer: ElementRef;
navItems: NavItem[] = [ navItems: NavItem[] = [
{ {
displayName: 'Tabellen', displayName: 'Tabellen',
iconName: 'recent_actors', iconName: 'recent_actors',
route: 'tableOverview', route: 'tableOverview',
children: [ children: tableLinks
{
displayName: 'Lastenräder',
iconName: 'directions_bike',
route: 'table/bikes'
},
{
displayName: 'Beteiligte',
iconName: 'group',
route: 'table/participants'
},
{
displayName: 'Standorte',
iconName: 'place',
route: 'table/lendingStations'
}]
}]; }];

@ -1,27 +1,21 @@
<div class="page-wrapper">
<div class="grid-list-spacer"> <div class="link-box">
<div class="big-list"> <div class="text-wrapper">
<mat-grid-list class="big-list" cols="2" rowHeight="3:1"> <h1>Wohin soll es gehen?</h1>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/bikes">Lastenräder</mat-grid-tile> <mat-list>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/participants">Aktive</mat-grid-tile> <mat-list-item *ngFor="let link of tableLinks">
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/lendingStations">Standorte</mat-grid-tile> <a mat-button color="primary" [routerLink]="link.route">
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/persons">Personen</mat-grid-tile> <mat-icon>{{ link.iconName }}</mat-icon>
</mat-grid-list> {{ link.displayName }}
<div> </a>
<mat-grid-list cols="4" rowHeight="60px" > </mat-list-item>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/equipmentTypes">Equipmenttypen</mat-grid-tile> </mat-list>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/equipments">Equipment</mat-grid-tile> </div>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/timeFrames">Zeitscheiben</mat-grid-tile> </div>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/organisations">Organisation</mat-grid-tile> <div class="banner-box mat-elevation-z8">
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/contactInformation">Kontaktinformation</mat-grid-tile> <span class="center-text mat-display-3">Willkommen, {{ username }}!</span>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/providers">Anbieter</mat-grid-tile> <div class="banner-img-box">
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/engagements">Engagements</mat-grid-tile> <img class="banner-img" src="../../../assets/rain.png" />
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/engagementTypes">Engagementtypen</mat-grid-tile> </div>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/bikeEvents">Lastenradevents</mat-grid-tile> </div>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/bikeEventTypes">Lastenradeventtypen</mat-grid-tile>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/workshops">Workshops</mat-grid-tile>
<mat-grid-tile class="mat-elevation-z4" routerLink = "/table/workshopTypes">Workshoptypen</mat-grid-tile>
</mat-grid-list>
</div> </div>

@ -1,12 +1,34 @@
mat-grid-tile { .page-wrapper {
cursor: pointer; display: flex;
background: grey; height: 100%;
} .link-box {
flex-basis: 50%;
.grid-list-spacer { height: 100%;
margin: 15px; overflow: auto;
} .text-wrapper {
padding: 2em;
.big-list { }
margin-bottom: 30px; }
.banner-box {
flex-basis: 50%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
.center-text {
margin: 0.5em;
position: absolute;
word-break: break-word;
color: white;
z-index: 5;
}
.banner-img-box {
height: 100%;
filter: blur(2px);
img {
height: 100%;
}
}
}
} }

@ -1,4 +1,6 @@
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { AuthService } from 'src/app/services/auth.service';
import { tableLinks } from 'src/app/tableLinks';
@Component({ @Component({
selector: 'app-table-overview', selector: 'app-table-overview',
@ -7,9 +9,17 @@ import { Component, OnInit } from '@angular/core';
}) })
export class TableOverviewComponent implements OnInit { export class TableOverviewComponent implements OnInit {
constructor() { } username = "fLotte Nutzer"
tableLinks = tableLinks;
constructor(private auth: AuthService) {
}
ngOnInit(): void { ngOnInit(): void {
this.auth.currentUser.subscribe(user => {
const name = user?.user?.name;
this.username = name || this.username
});
} }
} }

@ -118,7 +118,7 @@ export class BikeEventsComponent implements OnInit {
tableDataGQLCreateInputType: string = 'BikeEventCreateInput'; tableDataGQLCreateInputType: string = 'BikeEventCreateInput';
tableDataGQLUpdateInputType: string = 'BikeEventUpdateInput'; tableDataGQLUpdateInputType: string = 'BikeEventUpdateInput';
headline = 'Lastenradevent'; headline = 'Lastenradevents';
headlineIconName = 'event'; headlineIconName = 'event';
loadingRowIds: string[] = []; loadingRowIds: string[] = [];

@ -50,7 +50,7 @@ export class OrganisationsComponent implements OnInit {
tableDataGQLCreateInputType: string = 'OrganisationCreateInput'; tableDataGQLCreateInputType: string = 'OrganisationCreateInput';
tableDataGQLUpdateInputType: string = 'OrganisationUpdateInput'; tableDataGQLUpdateInputType: string = 'OrganisationUpdateInput';
headline = 'Organisation'; headline = 'Organisationen';
headlineIconName = 'business'; headlineIconName = 'business';
loadingRowIds: string[] = []; loadingRowIds: string[] = [];

@ -0,0 +1,83 @@
export const tableLinks = [
{
displayName: 'Lastenräder',
iconName: 'directions_bike',
route: 'table/bikes'
},
{
displayName: 'Aktive',
iconName: 'directions_run',
route: 'table/participants'
},
{
displayName: 'Standorte',
iconName: 'location_on',
route: 'table/lendingStations'
},
{
displayName: 'Personen',
iconName: 'person',
route: 'table/persons'
},
{
displayName: 'Kontaktinformationen',
iconName: 'contact_page',
route: 'table/contactInformation'
},
{
displayName: 'Zeitscheiben',
iconName: 'access_time',
route: 'table/timeFrames'
},
{
displayName: 'Lastenfahrrad-Eventtypen',
iconName: 'build',
route: 'table/bikeEventTypes'
},
{
displayName: 'Lastenfahrrad-Events',
iconName: 'event',
route: 'table/bikeEvents'
},
{
displayName: 'Equipmenttypen',
iconName: 'toys',
route: 'table/equipmentTypes'
},
{
displayName: 'Equipment',
iconName: 'battery_full',
route: 'table/equipments'
},
{
displayName: 'Engagementypen',
iconName: 'track_changes',
route: 'table/engagementTypes'
},
{
displayName: 'Engagements',
iconName: 'update',
route: 'table/engagements'
},
{
displayName: 'Organisationen',
iconName: 'business',
route: 'table/organisations'
},
{
displayName: 'Anbieter',
iconName: 'people',
route: 'table/providers'
},
{
displayName: 'Workshops',
iconName: 'school',
route: 'table/workshops'
},
{
displayName: 'Workshoptypen',
iconName: 'multiline_chart',
route: 'table/workshopTypes'
},
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Loading…
Cancel
Save