Compare commits
4 Commits
e3824b15b8
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf1f9f012a | ||
|
|
bde0efa167 | ||
|
|
3ca88d9e2f | ||
|
|
bdd6de5fbe |
@@ -2,9 +2,15 @@
|
|||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</main>
|
</main>
|
||||||
<nav>
|
<nav>
|
||||||
<ul ngbNav [activeId]="route.fragment | async" class="nav-tabs custom-navbar bg-body-secondary">
|
<ul ngbNav [activeId]="activeId" class="nav-tabs custom-navbar bg-body-secondary">
|
||||||
<li ngbNavItem="/edit" class="custom-navitem"><a ngbNavLink routerLink="/edit" routerLinkActive="active"><i class="bi bi-pencil-square"></i>{{ data.getPlayers().length }}</a></li>
|
<li ngbNavItem="/" class="custom-navitem"><a ngbNavLink routerLink="" routerLinkActive="active">
|
||||||
<li ngbNavItem="/basic" class="custom-navitem"><a ngbNavLink routerLink="/basic" routerLinkActive="active"><i class="bi bi-shuffle"></i></a></li>
|
<i class="bi bi-pencil-square"></i>{{ data.getPlayers().length }}</a>
|
||||||
<li ngbNavItem="/rotations" class="custom-navitem"><a ngbNavLink routerLink="/rotations" routerLinkActive="active"><i class="bi bi-arrow-repeat"></i></a></li>
|
</li>
|
||||||
|
<li ngbNavItem="/basic.t" class="custom-navitem"><a ngbNavLink routerLink="/basic.t" routerLinkActive="active">
|
||||||
|
<i class="bi bi-shuffle"></i></a>
|
||||||
|
</li>
|
||||||
|
<li ngbNavItem="/rotations.t" class="custom-navitem"><a ngbNavLink routerLink="/rotations.t" routerLinkActive="active">
|
||||||
|
<i class="bi bi-arrow-repeat"></i></a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@@ -1,31 +1,39 @@
|
|||||||
import { Component, inject, OnInit} from '@angular/core';
|
import { Component, inject, OnInit} from '@angular/core';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { RouterOutlet, ActivatedRoute, RouterLink } from '@angular/router';
|
import { RouterOutlet, ActivatedRoute, RouterLink, Router, NavigationEnd } from '@angular/router';
|
||||||
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
||||||
|
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { filter, take } from 'rxjs';
|
import { filter, take } from 'rxjs';
|
||||||
import { ScreenBasicComponent } from "./screen-basic/screen-basic.component";
|
|
||||||
import { ScreenRotationsComponent } from './screen-rotations/screen-rotations.component';
|
|
||||||
import { Player } from './model';
|
import { Player } from './model';
|
||||||
import { ScreenEditComponent } from './screen-edit/screen-edit.component';
|
|
||||||
import { DataService } from './data.service';
|
import { DataService } from './data.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
imports: [NgbModule, RouterOutlet, CommonModule, FormsModule, ScreenBasicComponent, ScreenRotationsComponent, ScreenEditComponent, RouterLink],
|
imports: [NgbModule, RouterOutlet, CommonModule, FormsModule, RouterLink],
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
styleUrl: './app.component.less'
|
styleUrl: './app.component.less'
|
||||||
})
|
})
|
||||||
export class AppComponent implements OnInit {
|
export class AppComponent implements OnInit {
|
||||||
title = 'vb';
|
title = 'vb';
|
||||||
data = inject(DataService);
|
data = inject(DataService);
|
||||||
|
activeId = '/';
|
||||||
|
|
||||||
constructor(public route: ActivatedRoute){}
|
constructor(
|
||||||
|
private route: ActivatedRoute,
|
||||||
|
private router: Router
|
||||||
|
){}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
this.router.events
|
||||||
|
.pipe(filter(event => event instanceof NavigationEnd))
|
||||||
|
.subscribe(() => {
|
||||||
|
this.activeId = this.router.url;
|
||||||
|
});
|
||||||
|
// process query params
|
||||||
this.route.queryParams.pipe(
|
this.route.queryParams.pipe(
|
||||||
filter(params => Object.keys(params).length > 0), // Only proceed if params are not empty
|
// Only proceed if params are not empty
|
||||||
|
filter(params => Object.keys(params).length > 0),
|
||||||
take(1)
|
take(1)
|
||||||
).subscribe(params => {
|
).subscribe(params => {
|
||||||
if (params['names']){
|
if (params['names']){
|
||||||
|
|||||||
@@ -2,16 +2,18 @@ import { Routes } from '@angular/router';
|
|||||||
import { ScreenBasicComponent } from './screen-basic/screen-basic.component';
|
import { ScreenBasicComponent } from './screen-basic/screen-basic.component';
|
||||||
import { ScreenEditComponent } from './screen-edit/screen-edit.component';
|
import { ScreenEditComponent } from './screen-edit/screen-edit.component';
|
||||||
import { ScreenRotationsComponent } from './screen-rotations/screen-rotations.component';
|
import { ScreenRotationsComponent } from './screen-rotations/screen-rotations.component';
|
||||||
import { AppComponent } from './app.component';
|
|
||||||
|
|
||||||
export const routes: Routes = [
|
export const routes: Routes = [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
children: [
|
children: [
|
||||||
{ path: '', redirectTo: 'edit', pathMatch: 'full' },
|
{ path: '', component: ScreenEditComponent },
|
||||||
{ path: 'edit', component: ScreenEditComponent },
|
/* IMPORTANT: all routes have to include a `.` (dot)
|
||||||
{ path: 'basic', component: ScreenBasicComponent },
|
this is a workaround used in `sw.js`
|
||||||
{ path: 'rotations', component: ScreenRotationsComponent }
|
to allow hosting services on the same subdomain as this PWA
|
||||||
|
*/
|
||||||
|
{ path: 'basic.t', component: ScreenBasicComponent },
|
||||||
|
{ path: 'rotations.t', component: ScreenRotationsComponent }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -21,9 +21,14 @@ export class Player{
|
|||||||
this.setter = setter;
|
this.setter = setter;
|
||||||
this.libero = libero;
|
this.libero = libero;
|
||||||
}
|
}
|
||||||
serialize(): string[] {
|
getRoles(): string[] {
|
||||||
const values = 'OOOO'
|
const roles = [];
|
||||||
return [this.name, values];
|
if (this.outside){roles.push('OH')}
|
||||||
|
if (this.middle){roles.push('M')}
|
||||||
|
if (this.opposite){roles.push('OPP')}
|
||||||
|
if (this.setter){roles.push('S')}
|
||||||
|
if (this.libero){roles.push('L')}
|
||||||
|
return roles;
|
||||||
}
|
}
|
||||||
|
|
||||||
toString(): string{
|
toString(): string{
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
// Original Team Generation Screen for arbitrary size and number of teams
|
// Original Team Generation Screen for arbitrary size and number of teams
|
||||||
import { Component, inject} from '@angular/core';
|
import { Component, inject} from '@angular/core';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { RouterOutlet, ActivatedRoute } from '@angular/router';
|
|
||||||
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { Player } from '../model';
|
import { Player } from '../model';
|
||||||
@@ -10,7 +9,7 @@ import { DataService } from '../data.service';
|
|||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-screen-basic',
|
selector: 'app-screen-basic',
|
||||||
imports: [NgbModule, RouterOutlet, CommonModule, FormsModule],
|
imports: [NgbModule, CommonModule, FormsModule],
|
||||||
templateUrl: './screen-basic.component.html',
|
templateUrl: './screen-basic.component.html',
|
||||||
styleUrl: './screen-basic.component.less'
|
styleUrl: './screen-basic.component.less'
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
class="form-control"
|
class="form-control"
|
||||||
placeholder="Enter a name..."
|
placeholder="Enter a name..."
|
||||||
(keyup.enter)="addItem()"
|
(keyup.enter)="addItem()"
|
||||||
|
autocapitalize="words"
|
||||||
/>
|
/>
|
||||||
<button class="btn btn-primary" type="button" (click)="addItem()" >
|
<button class="btn btn-primary" type="button" (click)="addItem()" >
|
||||||
<i class="bi bi-plus-lg"></i> Add
|
<i class="bi bi-plus-lg"></i> Add
|
||||||
@@ -19,7 +20,10 @@
|
|||||||
<ul class="list-group mb-3">
|
<ul class="list-group mb-3">
|
||||||
@for (player of data.getPlayers(); track $index) {
|
@for (player of data.getPlayers(); track $index) {
|
||||||
<li class="list-group-item d-flex justify-content-between">
|
<li class="list-group-item d-flex justify-content-between">
|
||||||
<a (click)="openPlayerModal(player)" style="display: block; cursor: pointer; flex-grow: 1; text-align: left;">{{ player.name }}</a>
|
<div (click)="openPlayerModal(player)" class="player-content">
|
||||||
|
<div class="text-start">{{ player.name }}</div>
|
||||||
|
<div class="text-end text-muted">{{ player.getRoles() }}</div>
|
||||||
|
</div>
|
||||||
<button (click)="removeItem(player)" class="btn btn-secondary btn-sm p-0 ms-2" style="width: 24px; height: 24px" >
|
<button (click)="removeItem(player)" class="btn btn-secondary btn-sm p-0 ms-2" style="width: 24px; height: 24px" >
|
||||||
<i class="bi bi-x"></i>
|
<i class="bi bi-x"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
.player-content{
|
||||||
|
cursor: pointer;
|
||||||
|
flex-grow: 1;
|
||||||
|
text-align: left;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// Team Generation Screen respecting volleyball roles as defined by `../model/Player`
|
// Team Generation Screen respecting volleyball roles as defined by `../model/Player`
|
||||||
import { Component, inject, Input } from '@angular/core';
|
import { Component, inject, OnInit } from '@angular/core';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { Player } from '../model';
|
import { Player } from '../model';
|
||||||
import { NgbAccordionBody, NgbAccordionCollapse, NgbAccordionHeader, NgbAccordionItem, NgbAccordionButton, NgbAccordionDirective, NgbAccordionToggle } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbAccordionBody, NgbAccordionCollapse, NgbAccordionHeader, NgbAccordionItem, NgbAccordionButton, NgbAccordionDirective, NgbAccordionToggle } from '@ng-bootstrap/ng-bootstrap';
|
||||||
@@ -11,8 +11,13 @@ import { DataService } from '../data.service';
|
|||||||
templateUrl: './screen-rotations.component.html',
|
templateUrl: './screen-rotations.component.html',
|
||||||
styleUrl: './screen-rotations.component.less'
|
styleUrl: './screen-rotations.component.less'
|
||||||
})
|
})
|
||||||
export class ScreenRotationsComponent {
|
export class ScreenRotationsComponent implements OnInit{
|
||||||
data = inject(DataService);
|
data = inject(DataService);
|
||||||
|
ngOnInit(): void {
|
||||||
|
|
||||||
|
}
|
||||||
|
// https://de.wikipedia.org/wiki/Volleyball#Spielpositionen
|
||||||
|
// we want 2 outside, 1 opp, 1 set and either 2*middle or middle + libero
|
||||||
|
|
||||||
get OutsidePlayers(): Player[] {
|
get OutsidePlayers(): Player[] {
|
||||||
return this.data.getPlayers().filter(player => player.outside);
|
return this.data.getPlayers().filter(player => player.outside);
|
||||||
|
|||||||
Reference in New Issue
Block a user