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