Compare commits
13 Commits
master
...
36e1241539
| Author | SHA1 | Date | |
|---|---|---|---|
| 36e1241539 | |||
| 194f9ac556 | |||
| ce9e5b5585 | |||
| 3e10762eaf | |||
| d81fb3743b | |||
| 4141824b00 | |||
| f7e11b792c | |||
| a12e1ccb2f | |||
| 4e8a50374e | |||
| 0c2157bd0a | |||
| 0b831e45d5 | |||
| 3fb2e8b341 | |||
| ed69d9e972 |
18
README.md
18
README.md
@@ -1 +1,19 @@
|
|||||||
# wgenerator
|
# wgenerator
|
||||||
|
|
||||||
|
## Admin migration
|
||||||
|
|
||||||
|
If `songUsage` needs to be rebuilt from all existing shows, log in with a user that has the `admin` role and run this in the browser console:
|
||||||
|
|
||||||
|
```js
|
||||||
|
await window.wgeneratorAdmin.rebuildSongUsage()
|
||||||
|
```
|
||||||
|
|
||||||
|
The migration:
|
||||||
|
|
||||||
|
- resets `songUsage` for all users
|
||||||
|
- scans all shows and all `shows/{id}/songs` entries
|
||||||
|
- rebuilds the per-user counters based on show ownership
|
||||||
|
|
||||||
|
It returns a summary object with processed user, show and show-song counts.
|
||||||
|
|
||||||
|
This is intended as a manual one-off migration and is read-heavy by design.
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
h1 {
|
h1 {
|
||||||
color: red;
|
color: var(--text);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
@animation-duration: 20s;
|
:host {
|
||||||
|
--animation-duration: 20s;
|
||||||
|
}
|
||||||
|
|
||||||
.frame {
|
.frame {
|
||||||
width: 512px;
|
width: 512px;
|
||||||
@@ -11,10 +13,10 @@
|
|||||||
.brand {
|
.brand {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
animation: @animation-duration brand ease-in-out forwards;
|
animation: var(--animation-duration) brand ease-in-out forwards;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
animation: @animation-duration brand-mobile ease-in-out forwards;
|
animation: var(--animation-duration) brand-mobile ease-in-out forwards;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,7 +36,7 @@
|
|||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
font-size: 40px;
|
font-size: 40px;
|
||||||
}
|
}
|
||||||
animation: @animation-duration welcome ease-in-out forwards;
|
animation: var(--animation-duration) welcome ease-in-out forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
@@ -43,14 +45,14 @@
|
|||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
animation: @animation-duration name ease-in-out forwards;
|
animation: var(--animation-duration) name ease-in-out forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
.roles {
|
.roles {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
animation: @animation-duration roles ease-in-out forwards;
|
animation: var(--animation-duration) roles ease-in-out forwards;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {BehaviorSubject, Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
import {map} from 'rxjs/operators';
|
import {shareReplay} from 'rxjs/operators';
|
||||||
import {DbService} from 'src/app/services/db.service';
|
import {DbService} from 'src/app/services/db.service';
|
||||||
import {GuestShow} from './guest-show';
|
import {GuestShow} from './guest-show';
|
||||||
|
|
||||||
@@ -8,14 +8,17 @@ import {GuestShow} from './guest-show';
|
|||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class GuestShowDataService {
|
export class GuestShowDataService {
|
||||||
public list$: BehaviorSubject<GuestShow[]> = new BehaviorSubject<GuestShow[]>([]);
|
|
||||||
private collection = 'guest';
|
private collection = 'guest';
|
||||||
|
public list$: Observable<GuestShow[]> = this.dbService.col$<GuestShow>(this.collection).pipe(
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
public constructor(private dbService: DbService) {
|
public constructor(private dbService: DbService) {}
|
||||||
this.dbService.col$<GuestShow>(this.collection).subscribe(_ => this.list$.next(_));
|
|
||||||
}
|
|
||||||
|
|
||||||
public read$: (id: string) => Observable<GuestShow | null> = (id: string): Observable<GuestShow | null> => this.list$.pipe(map(_ => _.find(s => s.id === id) || null));
|
public read$: (id: string) => Observable<GuestShow | null> = (id: string): Observable<GuestShow | null> => this.dbService.doc$(`${this.collection}/${id}`);
|
||||||
public update$: (id: string, data: Partial<GuestShow>) => Promise<void> = async (id: string, data: Partial<GuestShow>): Promise<void> =>
|
public update$: (id: string, data: Partial<GuestShow>) => Promise<void> = async (id: string, data: Partial<GuestShow>): Promise<void> =>
|
||||||
await this.dbService.doc(this.collection + '/' + id).update(data);
|
await this.dbService.doc(this.collection + '/' + id).update(data);
|
||||||
public add: (data: Partial<GuestShow>) => Promise<string> = async (data: Partial<GuestShow>): Promise<string> => (await this.dbService.col(this.collection).add(data)).id;
|
public add: (data: Partial<GuestShow>) => Promise<string> = async (data: Partial<GuestShow>): Promise<string> => (await this.dbService.col(this.collection).add(data)).id;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
.page {
|
.page {
|
||||||
background: #0009;
|
background: var(--overlay);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
@@ -7,15 +7,15 @@
|
|||||||
right: 0;
|
right: 0;
|
||||||
backdrop-filter: blur(8px);
|
backdrop-filter: blur(8px);
|
||||||
|
|
||||||
--swiper-scrollbar-bg-color: #fff3;
|
--swiper-scrollbar-bg-color: rgba(247, 251, 255, 0.2);
|
||||||
--swiper-scrollbar-drag-bg-color: #fff9;
|
--swiper-scrollbar-drag-bg-color: rgba(247, 251, 255, 0.6);
|
||||||
--swiper-scrollbar-sides-offset: 20px;
|
--swiper-scrollbar-sides-offset: 20px;
|
||||||
--swiper-scrollbar-top: 100px;
|
--swiper-scrollbar-top: 100px;
|
||||||
--swiper-scrollbar-bottom: auto;
|
--swiper-scrollbar-bottom: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
color: white;
|
color: var(--text-inverse);
|
||||||
padding: 70px 20px 0;
|
padding: 70px 20px 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
.left {
|
.left {
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
color: #fff;
|
color: var(--text-inverse);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
.legal {
|
.legal {
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
font-size: 0.6em;
|
font-size: 0.6em;
|
||||||
color: #fff9;
|
color: rgba(247, 251, 255, 0.72);
|
||||||
}
|
}
|
||||||
|
|
||||||
.view {
|
.view {
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
color: white;
|
color: var(--text-inverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
app-song-text {
|
app-song-text {
|
||||||
|
|||||||
@@ -1,15 +1,14 @@
|
|||||||
import {ChangeDetectorRef, Component, OnInit} from '@angular/core';
|
import {ChangeDetectorRef, Component, OnDestroy, OnInit} from '@angular/core';
|
||||||
import {debounceTime, distinctUntilChanged, filter, map, switchMap, tap} from 'rxjs/operators';
|
import {debounceTime, distinctUntilChanged, filter, map, shareReplay, switchMap, takeUntil, tap} from 'rxjs/operators';
|
||||||
import {ShowService} from '../../shows/services/show.service';
|
import {ShowService} from '../../shows/services/show.service';
|
||||||
import {SongService} from '../../songs/services/song.service';
|
|
||||||
import {Song} from '../../songs/services/song';
|
import {Song} from '../../songs/services/song';
|
||||||
import {GlobalSettingsService} from '../../../services/global-settings.service';
|
import {GlobalSettingsService} from '../../../services/global-settings.service';
|
||||||
import {Config} from '../../../services/config';
|
import {Config} from '../../../services/config';
|
||||||
import {Observable} from 'rxjs';
|
import {Observable, Subject} from 'rxjs';
|
||||||
import {ConfigService} from '../../../services/config.service';
|
import {ConfigService} from '../../../services/config.service';
|
||||||
import {songSwitch} from '../../../widget-modules/components/song-text/animation';
|
import {songSwitch} from '../../../widget-modules/components/song-text/animation';
|
||||||
import {TextRenderingService} from '../../songs/services/text-rendering.service';
|
|
||||||
import {PresentationBackground, Show} from '../../shows/services/show';
|
import {PresentationBackground, Show} from '../../shows/services/show';
|
||||||
|
import {ShowSong} from '../../shows/services/show-song';
|
||||||
import {ShowSongService} from '../../shows/services/show-song.service';
|
import {ShowSongService} from '../../shows/services/show-song.service';
|
||||||
import {openFullscreen} from '../../../services/fullscreen';
|
import {openFullscreen} from '../../../services/fullscreen';
|
||||||
import {AsyncPipe, DatePipe, NgIf} from '@angular/common';
|
import {AsyncPipe, DatePipe, NgIf} from '@angular/common';
|
||||||
@@ -25,7 +24,7 @@ import {ShowTypePipe} from '../../../widget-modules/pipes/show-type-translater/s
|
|||||||
animations: [songSwitch],
|
animations: [songSwitch],
|
||||||
imports: [NgIf, LogoComponent, SongTextComponent, LegalComponent, AsyncPipe, DatePipe, ShowTypePipe],
|
imports: [NgIf, LogoComponent, SongTextComponent, LegalComponent, AsyncPipe, DatePipe, ShowTypePipe],
|
||||||
})
|
})
|
||||||
export class MonitorComponent implements OnInit {
|
export class MonitorComponent implements OnInit, OnDestroy {
|
||||||
public song: Song | null = null;
|
public song: Song | null = null;
|
||||||
public zoom = 10;
|
public zoom = 10;
|
||||||
public currentShowId: string | null = null;
|
public currentShowId: string | null = null;
|
||||||
@@ -37,12 +36,11 @@ export class MonitorComponent implements OnInit {
|
|||||||
public date: Date | null = null;
|
public date: Date | null = null;
|
||||||
public config$: Observable<Config | null>;
|
public config$: Observable<Config | null>;
|
||||||
public presentationBackground: PresentationBackground = 'none';
|
public presentationBackground: PresentationBackground = 'none';
|
||||||
|
private destroy$ = new Subject<void>();
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
private showService: ShowService,
|
private showService: ShowService,
|
||||||
private showSongService: ShowSongService,
|
private showSongService: ShowSongService,
|
||||||
private songService: SongService,
|
|
||||||
private textRenderingService: TextRenderingService,
|
|
||||||
private globalSettingsService: GlobalSettingsService,
|
private globalSettingsService: GlobalSettingsService,
|
||||||
private configService: ConfigService,
|
private configService: ConfigService,
|
||||||
private cRef: ChangeDetectorRef
|
private cRef: ChangeDetectorRef
|
||||||
@@ -52,40 +50,68 @@ export class MonitorComponent implements OnInit {
|
|||||||
|
|
||||||
public ngOnInit(): void {
|
public ngOnInit(): void {
|
||||||
openFullscreen();
|
openFullscreen();
|
||||||
this.globalSettingsService.get$
|
const currentShowId$ = this.globalSettingsService.get$
|
||||||
.pipe(
|
.pipe(
|
||||||
debounceTime(100),
|
debounceTime(100),
|
||||||
filter(_ => !!_),
|
filter(_ => !!_),
|
||||||
map(_ => _),
|
map(_ => _),
|
||||||
map(_ => _.currentShow),
|
map(_ => _.currentShow),
|
||||||
distinctUntilChanged(),
|
distinctUntilChanged(),
|
||||||
tap(_ => (this.currentShowId = _))
|
tap(_ => (this.currentShowId = _)),
|
||||||
)
|
takeUntil(this.destroy$)
|
||||||
|
);
|
||||||
|
|
||||||
|
const show$ = currentShowId$
|
||||||
.pipe(
|
.pipe(
|
||||||
switchMap(_ => this.showService.read$(_)),
|
switchMap(showId => this.showService.read$(showId)),
|
||||||
filter(_ => !!_),
|
filter((show): show is Show => !!show),
|
||||||
map(_ => _),
|
shareReplay({
|
||||||
tap<Show>(_ => {
|
bufferSize: 1,
|
||||||
this.showType = _.showType;
|
refCount: true,
|
||||||
this.date = _.date.toDate();
|
}),
|
||||||
this.index = _.presentationSection;
|
takeUntil(this.destroy$)
|
||||||
this.presentationBackground = _.presentationBackground;
|
);
|
||||||
this.presentationDynamicCaption = _.presentationDynamicCaption;
|
|
||||||
this.presentationDynamicText = _.presentationDynamicText;
|
show$
|
||||||
this.zoom = _.presentationZoom ?? 30;
|
.pipe(
|
||||||
if (this.songId !== _.presentationSongId) this.songId = 'empty';
|
tap(show => {
|
||||||
|
this.showType = show.showType;
|
||||||
|
this.date = show.date.toDate();
|
||||||
|
this.index = show.presentationSection;
|
||||||
|
this.presentationBackground = show.presentationBackground;
|
||||||
|
this.presentationDynamicCaption = show.presentationDynamicCaption;
|
||||||
|
this.presentationDynamicText = show.presentationDynamicText;
|
||||||
|
this.zoom = show.presentationZoom ?? 30;
|
||||||
|
}),
|
||||||
|
takeUntil(this.destroy$)
|
||||||
|
)
|
||||||
|
.subscribe(() => this.cRef.markForCheck());
|
||||||
|
|
||||||
|
show$
|
||||||
|
.pipe(
|
||||||
|
map(show => ({showId: show.id, presentationSongId: show.presentationSongId})),
|
||||||
|
distinctUntilChanged((a, b) => a.showId === b.showId && a.presentationSongId === b.presentationSongId),
|
||||||
|
tap(({presentationSongId}) => {
|
||||||
|
if (this.songId !== presentationSongId) {
|
||||||
|
this.songId = 'empty';
|
||||||
|
}
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.songId = _.presentationSongId;
|
this.songId = presentationSongId;
|
||||||
this.cRef.markForCheck();
|
this.cRef.markForCheck();
|
||||||
}, 600);
|
}, 600);
|
||||||
}),
|
}),
|
||||||
switchMap((_: Show) => this.showSongService.read$(_.id, _.presentationSongId)),
|
switchMap(({showId, presentationSongId}) => this.showSongService.read$(showId, presentationSongId)),
|
||||||
filter(_ => !!_),
|
filter((song): song is ShowSong => !!song),
|
||||||
map(_ => _ as Song)
|
takeUntil(this.destroy$)
|
||||||
)
|
)
|
||||||
.subscribe(_ => {
|
.subscribe(song => {
|
||||||
this.song = _;
|
this.song = song;
|
||||||
this.cRef.markForCheck();
|
this.cRef.markForCheck();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ngOnDestroy(): void {
|
||||||
|
this.destroy$.next();
|
||||||
|
this.destroy$.complete();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
@import "../../../../styles/shadow";
|
@import "../../../../styles/shadow";
|
||||||
|
|
||||||
.song {
|
.song {
|
||||||
background: #fff;
|
background: var(--surface-strong);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
color: var(--text);
|
||||||
|
border: 1px solid var(--surface-border);
|
||||||
|
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
@@ -14,7 +16,7 @@
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: -11px -20px 10px;
|
margin: -11px -20px 10px;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid var(--surface-border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,31 +41,31 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.song-part {
|
.song-part {
|
||||||
background: #fff;
|
background: var(--surface-strong);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: 300ms all ease-in-out;
|
transition: var(--transition);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: 0.5px solid #eee;
|
outline: 1px solid var(--divider);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
outline: 0.5px solid var(--color-primary-light);
|
outline: 1px solid var(--primary-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
outline: 0.5px solid var(--color-primary);
|
outline: 1px solid var(--primary-color);
|
||||||
|
|
||||||
.head {
|
.head {
|
||||||
background-color: var(--color-primary);
|
background-color: var(--primary-color);
|
||||||
color: white;
|
color: var(--text-inverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.head {
|
.head {
|
||||||
transition: 300ms all ease-in-out;
|
transition: var(--transition);
|
||||||
background: #eee;
|
background: var(--surface-muted);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
@@ -100,9 +102,9 @@
|
|||||||
a {
|
a {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
transition: all 300ms ease-in-out;
|
transition: var(--transition);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: #4286f4;
|
color: var(--link-color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {ChangeDetectionStrategy, ChangeDetectorRef, Component} from '@angular/core';
|
import {ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy} from '@angular/core';
|
||||||
import {combineLatest, Subject} from 'rxjs';
|
import {combineLatest, Subject} from 'rxjs';
|
||||||
import {PresentationBackground, Show} from '../../shows/services/show';
|
import {PresentationBackground, Show} from '../../shows/services/show';
|
||||||
import {ShowSongService} from '../../shows/services/show-song.service';
|
import {ShowSongService} from '../../shows/services/show-song.service';
|
||||||
@@ -7,7 +7,7 @@ import {faDesktop, faFolderOpen} from '@fortawesome/free-solid-svg-icons';
|
|||||||
import {ShowService} from '../../shows/services/show.service';
|
import {ShowService} from '../../shows/services/show.service';
|
||||||
import {ShowSong} from '../../shows/services/show-song';
|
import {ShowSong} from '../../shows/services/show-song';
|
||||||
import {GlobalSettingsService} from '../../../services/global-settings.service';
|
import {GlobalSettingsService} from '../../../services/global-settings.service';
|
||||||
import {debounceTime, filter, map} from 'rxjs/operators';
|
import {debounceTime, distinctUntilChanged, filter, map, switchMap, takeUntil} from 'rxjs/operators';
|
||||||
import {fade} from '../../../animations';
|
import {fade} from '../../../animations';
|
||||||
import {TextRenderingService} from '../../songs/services/text-rendering.service';
|
import {TextRenderingService} from '../../songs/services/text-rendering.service';
|
||||||
import {Section} from '../../songs/services/section';
|
import {Section} from '../../songs/services/section';
|
||||||
@@ -62,7 +62,7 @@ export interface PresentationSong {
|
|||||||
SectionTypePipe,
|
SectionTypePipe,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class RemoteComponent {
|
export class RemoteComponent implements OnDestroy {
|
||||||
public show: Show | null = null;
|
public show: Show | null = null;
|
||||||
public showSongs: ShowSong[] = [];
|
public showSongs: ShowSong[] = [];
|
||||||
public songs$ = this.songService.list$();
|
public songs$ = this.songService.list$();
|
||||||
@@ -73,6 +73,7 @@ export class RemoteComponent {
|
|||||||
public faDesktop = faDesktop;
|
public faDesktop = faDesktop;
|
||||||
public presentationDynamicCaptionChanged$ = new Subject<{presentationDynamicCaption: string; showId: string}>();
|
public presentationDynamicCaptionChanged$ = new Subject<{presentationDynamicCaption: string; showId: string}>();
|
||||||
public presentationDynamicTextChanged$ = new Subject<{presentationDynamicText: string; showId: string}>();
|
public presentationDynamicTextChanged$ = new Subject<{presentationDynamicText: string; showId: string}>();
|
||||||
|
private destroy$ = new Subject<void>();
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
private showService: ShowService,
|
private showService: ShowService,
|
||||||
@@ -84,11 +85,30 @@ export class RemoteComponent {
|
|||||||
) {
|
) {
|
||||||
globalSettingsService.get$
|
globalSettingsService.get$
|
||||||
.pipe(
|
.pipe(
|
||||||
filter(_ => !!_),
|
filter((settings): settings is NonNullable<typeof settings> => !!settings),
|
||||||
map(_ => _.currentShow)
|
map(_ => _.currentShow),
|
||||||
|
filter((showId): showId is string => !!showId),
|
||||||
|
distinctUntilChanged(),
|
||||||
|
switchMap(showId =>
|
||||||
|
combineLatest([this.showService.read$(showId), this.showSongService.list$(showId)]).pipe(
|
||||||
|
map(([show, list]) => {
|
||||||
|
const presentationSongs = list.map(song => ({
|
||||||
|
id: song.id,
|
||||||
|
title: song.title,
|
||||||
|
sections: this.textRenderingService.parse(song.text, null, false),
|
||||||
|
}));
|
||||||
|
return {show, list, presentationSongs};
|
||||||
|
})
|
||||||
|
)
|
||||||
|
),
|
||||||
|
takeUntil(this.destroy$)
|
||||||
)
|
)
|
||||||
.subscribe(_ => {
|
.subscribe(({show, list, presentationSongs}) => {
|
||||||
this.onShowChanged(_);
|
this.showSongs = list;
|
||||||
|
this.show = show;
|
||||||
|
const order = show?.order ?? [];
|
||||||
|
const presentationSongsById = new Map(presentationSongs.map(song => [song.id, song] as const));
|
||||||
|
this.presentationSongs = order.map(id => presentationSongsById.get(id) ?? null).filter((s): s is PresentationSong => !!s);
|
||||||
this.cRef.markForCheck();
|
this.cRef.markForCheck();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -102,20 +122,6 @@ export class RemoteComponent {
|
|||||||
return item.id;
|
return item.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public onShowChanged(change: string): void {
|
|
||||||
combineLatest([this.showService.read$(change), this.showSongService.list$(change)]).subscribe(([show, list]) => {
|
|
||||||
this.showSongs = list;
|
|
||||||
this.show = show;
|
|
||||||
const presentationSongs = list.map(song => ({
|
|
||||||
id: song.id,
|
|
||||||
title: song.title,
|
|
||||||
sections: this.textRenderingService.parse(song.text, null, false),
|
|
||||||
}));
|
|
||||||
this.presentationSongs = show?.order.map(_ => presentationSongs.filter(f => f.id === _)[0]) ?? [];
|
|
||||||
this.cRef.markForCheck();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public getFirstLine(section: Section): string {
|
public getFirstLine(section: Section): string {
|
||||||
return section.lines.filter(_ => _.type === LineType.text)[0].text;
|
return section.lines.filter(_ => _.type === LineType.text)[0].text;
|
||||||
}
|
}
|
||||||
@@ -142,4 +148,9 @@ export class RemoteComponent {
|
|||||||
public onDynamicText(presentationDynamicText: string, showId: string): void {
|
public onDynamicText(presentationDynamicText: string, showId: string): void {
|
||||||
this.presentationDynamicTextChanged$.next({presentationDynamicText, showId});
|
this.presentationDynamicTextChanged$.next({presentationDynamicText, showId});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ngOnDestroy(): void {
|
||||||
|
this.destroy$.next();
|
||||||
|
this.destroy$.complete();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
<mat-form-field appearance="outline">
|
<mat-form-field appearance="outline">
|
||||||
<mat-label>Ersteller</mat-label>
|
<mat-label>Ersteller</mat-label>
|
||||||
<mat-select formControlName="owner">
|
<mat-select formControlName="owner">
|
||||||
|
<mat-option [value]="null">Alle</mat-option>
|
||||||
<mat-option *ngFor="let owner of owners" [value]="owner.key">{{
|
<mat-option *ngFor="let owner of owners" [value]="owner.key">{{
|
||||||
owner.value
|
owner.value
|
||||||
}}
|
}}
|
||||||
@@ -24,6 +25,7 @@
|
|||||||
<mat-form-field appearance="outline">
|
<mat-form-field appearance="outline">
|
||||||
<mat-label>Art der Veranstaltung</mat-label>
|
<mat-label>Art der Veranstaltung</mat-label>
|
||||||
<mat-select formControlName="showType">
|
<mat-select formControlName="showType">
|
||||||
|
<mat-option [value]="null">Alle</mat-option>
|
||||||
<mat-optgroup label="öffentlich">
|
<mat-optgroup label="öffentlich">
|
||||||
<mat-option *ngFor="let key of showTypePublic" [value]="key">{{
|
<mat-option *ngFor="let key of showTypePublic" [value]="key">{{
|
||||||
key | showType
|
key | showType
|
||||||
@@ -41,5 +43,5 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<i>Anzahl der Suchergebnisse: {{ shows.length }}</i>
|
<i>Anzahl der Suchergebnisse: {{ shows?.length ?? 0 }}</i>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -54,6 +54,8 @@ export class FilterComponent {
|
|||||||
activatedRoute.queryParams.subscribe(params => {
|
activatedRoute.queryParams.subscribe(params => {
|
||||||
const filterValues = params as FilterValues;
|
const filterValues = params as FilterValues;
|
||||||
if (filterValues.time) this.filterFormGroup.controls.time.setValue(+filterValues.time);
|
if (filterValues.time) this.filterFormGroup.controls.time.setValue(+filterValues.time);
|
||||||
|
this.filterFormGroup.controls.owner.setValue(filterValues.owner ?? null, {emitEvent: false});
|
||||||
|
this.filterFormGroup.controls.showType.setValue(filterValues.showType ?? null, {emitEvent: false});
|
||||||
});
|
});
|
||||||
|
|
||||||
this.filterFormGroup.controls.time.valueChanges.subscribe(_ => void this.filerValueChanged('time', _ as number));
|
this.filterFormGroup.controls.time.valueChanges.subscribe(_ => void this.filerValueChanged('time', _ as number));
|
||||||
@@ -87,7 +89,7 @@ export class FilterComponent {
|
|||||||
|
|
||||||
private async filerValueChanged<T>(key: string, value: T): Promise<void> {
|
private async filerValueChanged<T>(key: string, value: T): Promise<void> {
|
||||||
const route = this.router.createUrlTree([this.route], {
|
const route = this.router.createUrlTree([this.route], {
|
||||||
queryParams: {[key]: value},
|
queryParams: {[key]: value || null},
|
||||||
queryParamsHandling: 'merge',
|
queryParamsHandling: 'merge',
|
||||||
});
|
});
|
||||||
await this.router.navigateByUrl(route);
|
await this.router.navigateByUrl(route);
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
@import "../../../../../styles/styles";
|
|
||||||
|
|
||||||
.list-item {
|
.list-item {
|
||||||
padding: 5px 20px;
|
padding: 5px 20px;
|
||||||
display: grid;
|
display: grid;
|
||||||
@@ -12,10 +10,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
transition: var(--transition);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: @primary-color;
|
background: var(--hover-background);
|
||||||
color: #fff;
|
color: var(--text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import {fade} from '../../../animations';
|
|||||||
import {ShowService} from '../services/show.service';
|
import {ShowService} from '../services/show.service';
|
||||||
import {FilterValues} from './filter/filter-values';
|
import {FilterValues} from './filter/filter-values';
|
||||||
import {ActivatedRoute, RouterLink} from '@angular/router';
|
import {ActivatedRoute, RouterLink} from '@angular/router';
|
||||||
import {map} from 'rxjs/operators';
|
import {map, switchMap} from 'rxjs/operators';
|
||||||
import {RoleDirective} from '../../../services/user/role.directive';
|
import {RoleDirective} from '../../../services/user/role.directive';
|
||||||
import {ListHeaderComponent} from '../../../widget-modules/components/list-header/list-header.component';
|
import {ListHeaderComponent} from '../../../widget-modules/components/list-header/list-header.component';
|
||||||
import {AsyncPipe, NgFor, NgIf} from '@angular/common';
|
import {AsyncPipe, NgFor, NgIf} from '@angular/common';
|
||||||
@@ -37,17 +37,32 @@ export class ListComponent {
|
|||||||
return filterValues?.owner;
|
return filterValues?.owner;
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
public showType$ = this.activatedRoute.queryParams.pipe(
|
||||||
|
map(params => {
|
||||||
|
const filterValues = params as FilterValues;
|
||||||
|
return filterValues?.showType;
|
||||||
|
})
|
||||||
|
);
|
||||||
|
public queriedPublicShows$ = this.lastMonths$.pipe(switchMap(lastMonths => this.showService.listPublicSince$(lastMonths)));
|
||||||
|
|
||||||
public publicShows$ = combineLatest([this.shows$, this.lastMonths$, this.owner$]).pipe(
|
public fallbackPublicShows$ = combineLatest([this.shows$, this.lastMonths$]).pipe(
|
||||||
map(([shows, lastMonths, owner]) =>
|
map(([shows, lastMonths]) => {
|
||||||
shows
|
const startDate = new Date();
|
||||||
.filter(f => {
|
startDate.setHours(0, 0, 0, 0);
|
||||||
const d = new Date();
|
startDate.setDate(startDate.getDate() - lastMonths * 30);
|
||||||
d.setMonth(d.getMonth() - lastMonths);
|
|
||||||
return f.published && f.date.toDate() >= d;
|
return shows.filter(show => show.published && !show.archived && show.date.toDate() >= startDate);
|
||||||
})
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
public publicShows$ = combineLatest([this.queriedPublicShows$, this.fallbackPublicShows$, this.owner$, this.showType$]).pipe(
|
||||||
|
map(([queriedShows, fallbackShows, owner, showType]) => {
|
||||||
|
const shows = queriedShows.length > 0 || fallbackShows.length === 0 ? queriedShows : fallbackShows;
|
||||||
|
|
||||||
|
return shows
|
||||||
.filter(show => !owner || show.owner === owner)
|
.filter(show => !owner || show.owner === owner)
|
||||||
)
|
.filter(show => !showType || show.showType === showType);
|
||||||
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
|
|||||||
@@ -1,26 +1,48 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {BehaviorSubject, Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
import {DbService} from '../../../services/db.service';
|
import {DbService} from '../../../services/db.service';
|
||||||
import {Show} from './show';
|
import {Show} from './show';
|
||||||
import {map} from 'rxjs/operators';
|
import {map, shareReplay} from 'rxjs/operators';
|
||||||
|
import {QueryFn} from '@angular/fire/compat/firestore/interfaces';
|
||||||
|
import firebase from 'firebase/compat/app';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class ShowDataService {
|
export class ShowDataService {
|
||||||
public list$ = new BehaviorSubject<Show[]>([]);
|
|
||||||
private collection = 'shows';
|
private collection = 'shows';
|
||||||
|
public list$: Observable<Show[]> = this.dbService.col$<Show>(this.collection).pipe(
|
||||||
|
// server-side ordering cuts client work and keeps stable order across subscribers
|
||||||
|
map(shows => [...shows].sort((a, b) => a.date.toMillis() - b.date.toMillis())),
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
public constructor(private dbService: DbService) {
|
public constructor(private dbService: DbService) {}
|
||||||
this.dbService.col$<Show>(this.collection).subscribe(_ => this.list$.next(_));
|
|
||||||
}
|
|
||||||
|
|
||||||
public listRaw$ = () => this.dbService.col$<Show>(this.collection);
|
public listRaw$ = () => this.dbService.col$<Show>(this.collection);
|
||||||
|
|
||||||
public read$ = (showId: string): Observable<Show | null> => this.list$.pipe(map(_ => _.find(s => s.id === showId) || null));
|
public listPublicSince$(lastMonths: number): Observable<Show[]> {
|
||||||
|
const startDate = new Date();
|
||||||
|
startDate.setHours(0, 0, 0, 0);
|
||||||
|
startDate.setDate(startDate.getDate() - lastMonths * 30);
|
||||||
|
const startTimestamp = firebase.firestore.Timestamp.fromDate(startDate);
|
||||||
|
|
||||||
|
const queryFn: QueryFn = ref => ref.where('published', '==', true).where('date', '>=', startTimestamp).orderBy('date', 'desc');
|
||||||
|
|
||||||
|
return this.dbService.col$<Show>(this.collection, queryFn).pipe(
|
||||||
|
map(shows => shows.filter(show => !show.archived)),
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public read$ = (showId: string): Observable<Show | null> => this.dbService.doc$(`${this.collection}/${showId}`);
|
||||||
|
|
||||||
// public list$ = (): Observable<Show[]> => this.dbService.col$(this.collection);
|
|
||||||
// public read$ = (showId: string): Observable<Show | null> => this.dbService.doc$(`${this.collection}/${showId}`);
|
|
||||||
public update = async (showId: string, data: Partial<Show>): Promise<void> => await this.dbService.doc(`${this.collection}/${showId}`).update(data);
|
public update = async (showId: string, data: Partial<Show>): Promise<void> => await this.dbService.doc(`${this.collection}/${showId}`).update(data);
|
||||||
public add = async (data: Partial<Show>): Promise<string> => (await this.dbService.col(this.collection).add(data)).id;
|
public add = async (data: Partial<Show>): Promise<string> => (await this.dbService.col(this.collection).add(data)).id;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import {DbService} from '../../../services/db.service';
|
|||||||
import {Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
import {ShowSong} from './show-song';
|
import {ShowSong} from './show-song';
|
||||||
import {QueryFn} from '@angular/fire/compat/firestore/interfaces';
|
import {QueryFn} from '@angular/fire/compat/firestore/interfaces';
|
||||||
|
import {shareReplay} from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
@@ -10,10 +11,31 @@ import {QueryFn} from '@angular/fire/compat/firestore/interfaces';
|
|||||||
export class ShowSongDataService {
|
export class ShowSongDataService {
|
||||||
private collection = 'shows';
|
private collection = 'shows';
|
||||||
private subCollection = 'songs';
|
private subCollection = 'songs';
|
||||||
|
private listCache = new Map<string, Observable<ShowSong[]>>();
|
||||||
|
|
||||||
public constructor(private dbService: DbService) {}
|
public constructor(private dbService: DbService) {}
|
||||||
|
|
||||||
public list$ = (showId: string, queryFn?: QueryFn): Observable<ShowSong[]> => this.dbService.col$(`${this.collection}/${showId}/${this.subCollection}`, queryFn);
|
public list$ = (showId: string, queryFn?: QueryFn): Observable<ShowSong[]> => {
|
||||||
|
if (queryFn) {
|
||||||
|
return this.dbService.col$(`${this.collection}/${showId}/${this.subCollection}`, queryFn);
|
||||||
|
}
|
||||||
|
|
||||||
|
const cached = this.listCache.get(showId);
|
||||||
|
if (cached) {
|
||||||
|
return cached;
|
||||||
|
}
|
||||||
|
|
||||||
|
const stream$ = this.dbService.col$<ShowSong>(`${this.collection}/${showId}/${this.subCollection}`).pipe(
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
this.listCache.set(showId, stream$);
|
||||||
|
return stream$;
|
||||||
|
};
|
||||||
|
|
||||||
public read$ = (showId: string, songId: string): Observable<ShowSong | null> => this.dbService.doc$(`${this.collection}/${showId}/${this.subCollection}/${songId}`);
|
public read$ = (showId: string, songId: string): Observable<ShowSong | null> => this.dbService.doc$(`${this.collection}/${showId}/${this.subCollection}/${songId}`);
|
||||||
public update$ = async (showId: string, songId: string, data: Partial<ShowSong>): Promise<void> =>
|
public update$ = async (showId: string, songId: string, data: Partial<ShowSong>): Promise<void> =>
|
||||||
await this.dbService.doc(`${this.collection}/${showId}/${this.subCollection}/${songId}`).update(data);
|
await this.dbService.doc(`${this.collection}/${showId}/${this.subCollection}/${songId}`).update(data);
|
||||||
|
|||||||
@@ -40,14 +40,14 @@ export class ShowSongService {
|
|||||||
public list = (showId: string): Promise<ShowSong[]> => firstValueFrom(this.list$(showId));
|
public list = (showId: string): Promise<ShowSong[]> => firstValueFrom(this.list$(showId));
|
||||||
|
|
||||||
public async delete$(showId: string, showSongId: string, index: number): Promise<void> {
|
public async delete$(showId: string, showSongId: string, index: number): Promise<void> {
|
||||||
const showSong = await this.read(showId, showSongId);
|
const [showSong, show] = await Promise.all([this.read(showId, showSongId), firstValueFrom(this.showService.read$(showId))]);
|
||||||
await this.showSongDataService.delete(showId, showSongId);
|
|
||||||
const show = await firstValueFrom(this.showService.read$(showId));
|
|
||||||
if (!show) return;
|
if (!show) return;
|
||||||
const order = show.order;
|
if (!showSong) return;
|
||||||
|
|
||||||
|
const order = [...show.order];
|
||||||
order.splice(index, 1);
|
order.splice(index, 1);
|
||||||
await this.showService.update$(showId, {order});
|
|
||||||
await this.userService.decSongCount(showSong.songId);
|
await Promise.all([this.showSongDataService.delete(showId, showSongId), this.showService.update$(showId, {order}), this.userService.decSongCount(showSong.songId)]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public update$ = async (showId: string, songId: string, data: Partial<ShowSong>): Promise<void> => await this.showSongDataService.update$(showId, songId, data);
|
public update$ = async (showId: string, songId: string, data: Partial<ShowSong>): Promise<void> => await this.showSongDataService.update$(showId, songId, data);
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ export class ShowService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public read$ = (showId: string): Observable<Show | null> => this.showDataService.read$(showId);
|
public read$ = (showId: string): Observable<Show | null> => this.showDataService.read$(showId);
|
||||||
|
public listPublicSince$ = (lastMonths: number): Observable<Show[]> => this.showDataService.listPublicSince$(lastMonths);
|
||||||
|
|
||||||
public list$(publishedOnly = false): Observable<Show[]> {
|
public list$(publishedOnly = false): Observable<Show[]> {
|
||||||
return this.userService.user$.pipe(
|
return this.userService.user$.pipe(
|
||||||
@@ -30,12 +31,7 @@ export class ShowService {
|
|||||||
() => this.showDataService.list$,
|
() => this.showDataService.list$,
|
||||||
(user: User | null, shows: Show[]) => ({user, shows})
|
(user: User | null, shows: Show[]) => ({user, shows})
|
||||||
),
|
),
|
||||||
map(s =>
|
map(s => s.shows.filter(show => !show.archived).filter(show => show.published || (show.owner === s.user?.id && !publishedOnly)))
|
||||||
s.shows
|
|
||||||
.sort((a, b) => a.date.toMillis() - b.date.toMillis())
|
|
||||||
.filter(_ => !_.archived)
|
|
||||||
.filter(show => show.published || (show.owner === s.user?.id && !publishedOnly))
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
.song-row:not(:last-child) {
|
.song-row:not(:last-child) {
|
||||||
display: block;
|
display: block;
|
||||||
border-bottom: 1px solid #0002;
|
border-bottom: 1px solid var(--divider);
|
||||||
}
|
}
|
||||||
|
|
||||||
.song-swipe {
|
.song-swipe {
|
||||||
@@ -21,9 +21,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.cdk-drag-preview {
|
.cdk-drag-preview {
|
||||||
background-color: white;
|
background-color: var(--surface-strong);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
border: 1px solid var(--surface-border);
|
||||||
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -51,7 +52,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.next-song {
|
.next-song {
|
||||||
color: #0008;
|
color: var(--text-muted);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
@@ -62,7 +63,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.time {
|
.time {
|
||||||
color: #0008;
|
color: var(--text-muted);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
|
|||||||
@@ -49,8 +49,8 @@
|
|||||||
grid-template-columns: 1em auto;
|
grid-template-columns: 1em auto;
|
||||||
|
|
||||||
.key {
|
.key {
|
||||||
color: #00b;
|
color: var(--primary-active);
|
||||||
text-shadow: 0 0 1px #00b;
|
text-shadow: 0 0 1px var(--primary-hover);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
15
src/app/modules/songs/services/key.helper.spec.ts
Normal file
15
src/app/modules/songs/services/key.helper.spec.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import {getScale, scaleMapping} from './key.helper';
|
||||||
|
|
||||||
|
describe('key.helper', () => {
|
||||||
|
it('should render Gb correctly', () => {
|
||||||
|
expect(scaleMapping['Gb']).toBe('G♭');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should expose a sharp-based scale for D', () => {
|
||||||
|
expect(getScale('D')).toEqual(['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'H']);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should keep flat-based spelling for Db', () => {
|
||||||
|
expect(getScale('Db')).toEqual(['C', 'Db', 'D', 'Eb', 'E', 'F', 'Gb', 'G', 'Ab', 'A', 'B', 'H']);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -82,7 +82,7 @@ const scaleAssignment: {[key: string]: string[]} = {
|
|||||||
C: KEYS_MAJOR_FLAT,
|
C: KEYS_MAJOR_FLAT,
|
||||||
'C#': KEYS_MAJOR_FLAT,
|
'C#': KEYS_MAJOR_FLAT,
|
||||||
Db: KEYS_MAJOR_B,
|
Db: KEYS_MAJOR_B,
|
||||||
D: KEYS_MAJOR_B,
|
D: KEYS_MAJOR_FLAT,
|
||||||
'D#': KEYS_MAJOR_FLAT,
|
'D#': KEYS_MAJOR_FLAT,
|
||||||
Eb: KEYS_MAJOR_B,
|
Eb: KEYS_MAJOR_B,
|
||||||
E: KEYS_MAJOR_FLAT,
|
E: KEYS_MAJOR_FLAT,
|
||||||
@@ -125,7 +125,7 @@ export const scaleMapping: {[key: string]: string} = {
|
|||||||
E: 'E',
|
E: 'E',
|
||||||
F: 'F',
|
F: 'F',
|
||||||
'F#': 'F♯',
|
'F#': 'F♯',
|
||||||
Gb: 'D♭',
|
Gb: 'G♭',
|
||||||
G: 'G',
|
G: 'G',
|
||||||
'G#': 'G♯',
|
'G#': 'G♯',
|
||||||
Ab: 'A♭',
|
Ab: 'A♭',
|
||||||
|
|||||||
@@ -1,24 +1,28 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {Song} from './song';
|
import {Song} from './song';
|
||||||
import {BehaviorSubject, Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
import {DbService} from '../../../services/db.service';
|
import {DbService} from '../../../services/db.service';
|
||||||
import {map} from 'rxjs/operators';
|
import {shareReplay, startWith} from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class SongDataService {
|
export class SongDataService {
|
||||||
public list$ = new BehaviorSubject<Song[]>([]);
|
|
||||||
private collection = 'songs';
|
private collection = 'songs';
|
||||||
|
public list$: Observable<Song[]> = this.dbService.col$<Song>(this.collection).pipe(
|
||||||
|
startWith([] as Song[]), // immediate empty emit keeps UI responsive while first snapshot arrives
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: false, // keep the listener alive after first subscription to avoid reloading on navigation
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
public constructor(private dbService: DbService) {
|
public constructor(private dbService: DbService) {
|
||||||
this.dbService.col$<Song>(this.collection).subscribe(_ => this.list$.next(_));
|
// Warm the shared stream once at startup to avoid first-navigation delay.
|
||||||
|
// this.list$.subscribe();
|
||||||
}
|
}
|
||||||
|
|
||||||
// public list$ = (): Observable<Song[]> => this.dbService.col$(this.collection);
|
public read$ = (songId: string): Observable<Song | null> => this.dbService.doc$(this.collection + '/' + songId);
|
||||||
|
|
||||||
//public read$ = (songId: string): Observable<Song | null> => this.dbService.doc$(this.collection + '/' + songId);
|
|
||||||
public read$ = (songId: string): Observable<Song | null> => this.list$.pipe(map(_ => _.find(s => s.id === songId) || null));
|
|
||||||
public update$ = async (songId: string, data: Partial<Song>): Promise<void> => await this.dbService.doc(this.collection + '/' + songId).update(data);
|
public update$ = async (songId: string, data: Partial<Song>): Promise<void> => await this.dbService.doc(this.collection + '/' + songId).update(data);
|
||||||
public add = async (data: Partial<Song>): Promise<string> => (await this.dbService.col(this.collection).add(data)).id;
|
public add = async (data: Partial<Song>): Promise<string> => (await this.dbService.col(this.collection).add(data)).id;
|
||||||
public delete = async (songId: string): Promise<void> => await this.dbService.doc(this.collection + '/' + songId).delete();
|
public delete = async (songId: string): Promise<void> => await this.dbService.doc(this.collection + '/' + songId).delete();
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import {Injectable} from '@angular/core';
|
|||||||
import {Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
import {SongService} from './song.service';
|
import {SongService} from './song.service';
|
||||||
import {Song} from './song';
|
import {Song} from './song';
|
||||||
import {filter} from 'rxjs/operators';
|
import {take} from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
@@ -12,6 +12,6 @@ export class SongListResolver {
|
|||||||
public constructor(private songService: SongService) {}
|
public constructor(private songService: SongService) {}
|
||||||
|
|
||||||
public resolve(): Observable<Song[]> {
|
public resolve(): Observable<Song[]> {
|
||||||
return this.songService.list$().pipe(filter(_ => _.length > 0));
|
return this.songService.list$().pipe(take(1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
import {TestBed} from '@angular/core/testing';
|
import {TestBed} from '@angular/core/testing';
|
||||||
|
|
||||||
import {TransposeService} from './transpose.service';
|
import {TransposeService} from './transpose.service';
|
||||||
|
import {LineType} from './line-type';
|
||||||
|
import {Line} from './line';
|
||||||
|
|
||||||
describe('TransposeService', () => {
|
describe('TransposeService', () => {
|
||||||
let service: TransposeService;
|
let service: TransposeService;
|
||||||
@@ -12,7 +14,7 @@ describe('TransposeService', () => {
|
|||||||
|
|
||||||
it('should create map upwards', () => {
|
it('should create map upwards', () => {
|
||||||
const distance = service.getDistance('D', 'G');
|
const distance = service.getDistance('D', 'G');
|
||||||
const map = service.getMap('D', distance);
|
const map = service.getMap('D', 'G', distance);
|
||||||
|
|
||||||
if (map) {
|
if (map) {
|
||||||
void expect(map['D']).toBe('G');
|
void expect(map['D']).toBe('G');
|
||||||
@@ -21,10 +23,71 @@ describe('TransposeService', () => {
|
|||||||
|
|
||||||
it('should create map downwards', () => {
|
it('should create map downwards', () => {
|
||||||
const distance = service.getDistance('G', 'D');
|
const distance = service.getDistance('G', 'D');
|
||||||
const map = service.getMap('G', distance);
|
const map = service.getMap('G', 'D', distance);
|
||||||
|
|
||||||
if (map) {
|
if (map) {
|
||||||
void expect(map['G']).toBe('D');
|
void expect(map['G']).toBe('D');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should transpose enharmonic targets by semitone distance', () => {
|
||||||
|
const distance = service.getDistance('C', 'Db');
|
||||||
|
const map = service.getMap('C', 'Db', distance);
|
||||||
|
|
||||||
|
expect(distance).toBe(1);
|
||||||
|
expect(map?.['C']).toBe('Db');
|
||||||
|
expect(map?.['G']).toBe('Ab');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should keep german B/H notation consistent', () => {
|
||||||
|
const distance = service.getDistance('H', 'C');
|
||||||
|
const map = service.getMap('H', 'C', distance);
|
||||||
|
|
||||||
|
expect(distance).toBe(1);
|
||||||
|
expect(map?.['H']).toBe('C');
|
||||||
|
expect(map?.['B']).toBe('C#');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should render unknown chords as X', () => {
|
||||||
|
const line: Line = {
|
||||||
|
type: LineType.chord,
|
||||||
|
text: '',
|
||||||
|
chords: [
|
||||||
|
{chord: 'Q', add: 'sus4', slashChord: null, position: 0, length: 1},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
const rendered = service.renderChords(line);
|
||||||
|
|
||||||
|
expect(rendered.text).toBe('Xsus4');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should render unknown slash chords as X', () => {
|
||||||
|
const line: Line = {
|
||||||
|
type: LineType.chord,
|
||||||
|
text: '',
|
||||||
|
chords: [
|
||||||
|
{chord: 'C', add: null, slashChord: 'Q', position: 0, length: 1},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
const rendered = service.renderChords(line);
|
||||||
|
|
||||||
|
expect(rendered.text).toBe('C/X');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should transpose lines with long chord positions without truncating', () => {
|
||||||
|
const line: Line = {
|
||||||
|
type: LineType.chord,
|
||||||
|
text: '',
|
||||||
|
chords: [
|
||||||
|
{chord: 'C', add: null, slashChord: null, position: 120, length: 1},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
const rendered = service.renderChords(line);
|
||||||
|
|
||||||
|
expect(rendered.text.length).toBe(121);
|
||||||
|
expect(rendered.text.endsWith('C')).toBeTrue();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -5,16 +5,56 @@ import {Chord} from './chord';
|
|||||||
import {Line} from './line';
|
import {Line} from './line';
|
||||||
|
|
||||||
type TransposeMap = {[key: string]: string};
|
type TransposeMap = {[key: string]: string};
|
||||||
|
type ScaleVariants = [string[], string[]];
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class TransposeService {
|
export class TransposeService {
|
||||||
|
private readonly keyToSemitone: Record<string, number> = {
|
||||||
|
C: 0,
|
||||||
|
'C#': 1,
|
||||||
|
Db: 1,
|
||||||
|
D: 2,
|
||||||
|
'D#': 3,
|
||||||
|
Eb: 3,
|
||||||
|
E: 4,
|
||||||
|
F: 5,
|
||||||
|
'F#': 6,
|
||||||
|
Gb: 6,
|
||||||
|
G: 7,
|
||||||
|
'G#': 8,
|
||||||
|
Ab: 8,
|
||||||
|
A: 9,
|
||||||
|
'A#': 10,
|
||||||
|
B: 10,
|
||||||
|
H: 11,
|
||||||
|
c: 0,
|
||||||
|
'c#': 1,
|
||||||
|
db: 1,
|
||||||
|
d: 2,
|
||||||
|
'd#': 3,
|
||||||
|
eb: 3,
|
||||||
|
e: 4,
|
||||||
|
f: 5,
|
||||||
|
'f#': 6,
|
||||||
|
gb: 6,
|
||||||
|
g: 7,
|
||||||
|
'g#': 8,
|
||||||
|
ab: 8,
|
||||||
|
a: 9,
|
||||||
|
'a#': 10,
|
||||||
|
b: 10,
|
||||||
|
h: 11,
|
||||||
|
};
|
||||||
|
|
||||||
|
private readonly mapCache = new Map<string, TransposeMap>();
|
||||||
|
|
||||||
public transpose(line: Line, baseKey: string, targetKey: string): Line {
|
public transpose(line: Line, baseKey: string, targetKey: string): Line {
|
||||||
if (line.type !== LineType.chord || !line.chords) return line;
|
if (line.type !== LineType.chord || !line.chords) return line;
|
||||||
|
|
||||||
const difference = this.getDistance(baseKey, targetKey);
|
const difference = this.getDistance(baseKey, targetKey);
|
||||||
const map = this.getMap(baseKey, difference);
|
const map = this.getMap(baseKey, targetKey, difference);
|
||||||
|
|
||||||
const chords = difference !== 0 && map ? line.chords.map(chord => this.transposeChord(chord, map)) : line.chords;
|
const chords = difference !== 0 && map ? line.chords.map(chord => this.transposeChord(chord, map)) : line.chords;
|
||||||
const renderedLine = this.renderLine(chords);
|
const renderedLine = this.renderLine(chords);
|
||||||
@@ -32,32 +72,47 @@ export class TransposeService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public getDistance(baseKey: string, targetKey: string): number {
|
public getDistance(baseKey: string, targetKey: string): number {
|
||||||
const scale = getScaleType(baseKey);
|
const baseSemitone = this.keyToSemitone[baseKey];
|
||||||
return scale ? (scale[0].indexOf(targetKey) - scale[0].indexOf(baseKey) ?? scale[1].indexOf(targetKey) - scale[1].indexOf(baseKey)) % 12 : 0;
|
const targetSemitone = this.keyToSemitone[targetKey];
|
||||||
|
|
||||||
|
if (baseSemitone === undefined || targetSemitone === undefined) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (targetSemitone - baseSemitone + 12) % 12;
|
||||||
}
|
}
|
||||||
|
|
||||||
public getMap(baseKey: string, difference: number): TransposeMap | null {
|
public getMap(baseKey: string, targetKey: string, difference: number): TransposeMap | null {
|
||||||
const scale = getScaleType(baseKey);
|
const cacheKey = `${baseKey}:${targetKey}:${difference}`;
|
||||||
if (!scale) {
|
const cachedMap = this.mapCache.get(cacheKey);
|
||||||
|
if (cachedMap) {
|
||||||
|
return cachedMap;
|
||||||
|
}
|
||||||
|
|
||||||
|
const sourceScales = this.getScaleVariants(baseKey);
|
||||||
|
const targetScales = this.getScaleVariants(targetKey);
|
||||||
|
if (!sourceScales || !targetScales) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
const map: {[key: string]: string} = {};
|
|
||||||
for (let i = 0; i < 12; i++) {
|
const map: TransposeMap = {};
|
||||||
const source = scale[0][i];
|
sourceScales.forEach((sourceScale, scaleIndex) => {
|
||||||
const mappedIndex = (i + difference + 12) % 12;
|
const targetScale = targetScales[scaleIndex];
|
||||||
map[source] = scale[0][mappedIndex];
|
for (let i = 0; i < 12; i++) {
|
||||||
}
|
const source = sourceScale[i];
|
||||||
for (let i = 0; i < 12; i++) {
|
const mappedIndex = (i + difference + 12) % 12;
|
||||||
const source = scale[1][i];
|
map[source] = targetScale[mappedIndex];
|
||||||
const mappedIndex = (i + difference + 12) % 12;
|
}
|
||||||
map[source] = scale[1][mappedIndex];
|
});
|
||||||
}
|
|
||||||
|
this.mapCache.set(cacheKey, map);
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
private transposeChord(chord: Chord, map: TransposeMap): Chord {
|
private transposeChord(chord: Chord, map: TransposeMap): Chord {
|
||||||
const translatedChord = map[chord.chord];
|
const translatedChord = map[chord.chord] ?? 'X';
|
||||||
const translatedSlashChord = chord.slashChord ? map[chord.slashChord] : null;
|
const translatedSlashChord = chord.slashChord ? map[chord.slashChord] ?? 'X' : null;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...chord,
|
...chord,
|
||||||
chord: translatedChord,
|
chord: translatedChord,
|
||||||
@@ -66,23 +121,39 @@ export class TransposeService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private renderLine(chords: Chord[]): string {
|
private renderLine(chords: Chord[]): string {
|
||||||
let template = ' ';
|
const width = chords.reduce((max, chord) => {
|
||||||
|
return Math.max(max, chord.position + this.renderChord(chord).length);
|
||||||
|
}, 0);
|
||||||
|
|
||||||
|
let template = ''.padEnd(width, ' ');
|
||||||
|
|
||||||
chords.forEach(chord => {
|
chords.forEach(chord => {
|
||||||
const pos = chord.position;
|
const pos = chord.position;
|
||||||
const renderedChord = this.renderChord(chord);
|
const renderedChord = this.renderChord(chord);
|
||||||
const newLength = renderedChord.length;
|
const newLength = renderedChord.length;
|
||||||
|
|
||||||
const pre = template.substr(0, pos);
|
if (template.length < pos + newLength) {
|
||||||
const post = template.substr(pos + newLength);
|
template = template.padEnd(pos + newLength, ' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
const pre = template.slice(0, pos);
|
||||||
|
const post = template.slice(pos + newLength);
|
||||||
|
|
||||||
template = pre + renderedChord + post;
|
template = pre + renderedChord + post;
|
||||||
});
|
});
|
||||||
|
|
||||||
return template.trimRight();
|
return template.trimEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
private renderChord(chord: Chord) {
|
private renderChord(chord: Chord): string {
|
||||||
return scaleMapping[chord.chord] + (chord.add ? chord.add : '') + (chord.slashChord ? '/' + scaleMapping[chord.slashChord] : '');
|
const renderedChord = scaleMapping[chord.chord] ?? 'X';
|
||||||
|
const renderedSlashChord = chord.slashChord ? scaleMapping[chord.slashChord] ?? 'X' : '';
|
||||||
|
|
||||||
|
return renderedChord + (chord.add ?? '') + (renderedSlashChord ? '/' + renderedSlashChord : '');
|
||||||
|
}
|
||||||
|
|
||||||
|
private getScaleVariants(key: string): ScaleVariants | null {
|
||||||
|
const scales = getScaleType(key);
|
||||||
|
return scales ? [scales[0], scales[1]] : null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
@import "../../../../styles/styles";
|
|
||||||
|
|
||||||
.list-item {
|
.list-item {
|
||||||
padding: 5px 20px;
|
padding: 5px 20px;
|
||||||
display: grid;
|
display: grid;
|
||||||
@@ -11,13 +9,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
transition: var(--transition);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: @primary-color;
|
background: var(--hover-background);
|
||||||
color: #fff;
|
color: var(--text);
|
||||||
|
|
||||||
.warning {
|
.warning {
|
||||||
color: #fff;
|
color: var(--danger);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -33,13 +32,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.neutral {
|
.neutral {
|
||||||
color: #888;
|
color: var(--text-soft);
|
||||||
}
|
}
|
||||||
|
|
||||||
.warning {
|
.warning {
|
||||||
color: #ba3500;
|
color: var(--danger);
|
||||||
}
|
}
|
||||||
|
|
||||||
.success {
|
.success {
|
||||||
color: #307501;
|
color: var(--success);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,16 +26,11 @@ import {FaIconComponent} from '@fortawesome/angular-fontawesome';
|
|||||||
})
|
})
|
||||||
export class SongListComponent implements OnInit, OnDestroy {
|
export class SongListComponent implements OnInit, OnDestroy {
|
||||||
public anyFilterActive = false;
|
public anyFilterActive = false;
|
||||||
public songs$: Observable<Song[]> | null = combineLatest([
|
public songs$: Observable<Song[]> = combineLatest([
|
||||||
this.activatedRoute.queryParams.pipe(map(_ => _ as FilterValues)),
|
this.activatedRoute.queryParams.pipe(map(_ => _ as FilterValues)),
|
||||||
this.activatedRoute.data.pipe(
|
this.songService.list$().pipe(map(songs => [...songs].sort((a, b) => a.number - b.number))),
|
||||||
map(data => data.songList as Song[]),
|
|
||||||
map(songs => songs.sort((a, b) => a.number - b.number))
|
|
||||||
),
|
|
||||||
]).pipe(
|
]).pipe(
|
||||||
map(_ => {
|
map(([filter, songs]) => {
|
||||||
const songs = _[1];
|
|
||||||
const filter = _[0];
|
|
||||||
this.anyFilterActive = this.checkIfFilterActive(filter);
|
this.anyFilterActive = this.checkIfFilterActive(filter);
|
||||||
return songs.filter(song => this.filter(song, filter)).sort((a, b) => a.title?.localeCompare(b.title));
|
return songs.filter(song => this.filter(song, filter)).sort((a, b) => a.title?.localeCompare(b.title));
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -28,8 +28,7 @@
|
|||||||
<div *ngIf="song.artist">Künstler: {{ song.artist }}</div>
|
<div *ngIf="song.artist">Künstler: {{ song.artist }}</div>
|
||||||
<div *ngIf="song.label">Verlag: {{ song.label }}</div>
|
<div *ngIf="song.label">Verlag: {{ song.label }}</div>
|
||||||
<div *ngIf="song.origin">Quelle: {{ song.origin }}</div>
|
<div *ngIf="song.origin">Quelle: {{ song.origin }}</div>
|
||||||
<div *ngIf="song.origin">Quelle: {{ song.origin }}</div>
|
<div>Wie oft verwendet: {{ songCount$ | async }}</div>
|
||||||
<div *ngIf="songCount$()|async as count">Wie oft verwendet: {{ count }}</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ export class SongComponent implements OnInit {
|
|||||||
public song$: Observable<Song | null> | null = null;
|
public song$: Observable<Song | null> | null = null;
|
||||||
public files$: Observable<File[] | null> | null = null;
|
public files$: Observable<File[] | null> | null = null;
|
||||||
public user$: Observable<User | null> | null = null;
|
public user$: Observable<User | null> | null = null;
|
||||||
|
public songCount$: Observable<number> | null = null;
|
||||||
public faEdit = faEdit;
|
public faEdit = faEdit;
|
||||||
public faDelete = faTrash;
|
public faDelete = faTrash;
|
||||||
public faFileCirclePlus = faFileCirclePlus;
|
public faFileCirclePlus = faFileCirclePlus;
|
||||||
@@ -85,6 +86,17 @@ export class SongComponent implements OnInit {
|
|||||||
map(param => param.songId),
|
map(param => param.songId),
|
||||||
switchMap(songId => this.fileService.read$(songId))
|
switchMap(songId => this.fileService.read$(songId))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.songCount$ = combineLatest([this.user$, this.song$]).pipe(
|
||||||
|
map(([user, song]) => {
|
||||||
|
if (!song) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return user?.songUsage?.[song.id] ?? 0;
|
||||||
|
}),
|
||||||
|
distinctUntilChanged()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public getFlags = (flags: string): string[] => {
|
public getFlags = (flags: string): string[] => {
|
||||||
@@ -105,12 +117,4 @@ export class SongComponent implements OnInit {
|
|||||||
await this.showService.update$(show?.id, {order: [...show.order, newId ?? '']});
|
await this.showService.update$(show?.id, {order: [...show.order, newId ?? '']});
|
||||||
await this.router.navigateByUrl('/shows/' + show.id);
|
await this.router.navigateByUrl('/shows/' + show.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public songCount$ = () =>
|
|
||||||
combineLatest([this.user$, this.song$]).pipe(
|
|
||||||
map(([user, song]) => {
|
|
||||||
return user.songUsage[song.id];
|
|
||||||
}),
|
|
||||||
distinctUntilChanged()
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,13 +5,11 @@ import {SongListComponent} from './song-list/song-list.component';
|
|||||||
import {EditComponent} from './song/edit/edit.component';
|
import {EditComponent} from './song/edit/edit.component';
|
||||||
import {NewComponent} from './song/new/new.component';
|
import {NewComponent} from './song/new/new.component';
|
||||||
import {EditSongGuard} from './song/edit/edit-song.guard';
|
import {EditSongGuard} from './song/edit/edit-song.guard';
|
||||||
import {SongListResolver} from './services/song-list.resolver';
|
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
component: SongListComponent,
|
component: SongListComponent,
|
||||||
resolve: {songList: SongListResolver},
|
|
||||||
pathMatch: 'full',
|
pathMatch: 'full',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
.warn {
|
.warn {
|
||||||
color: #621700;
|
color: var(--danger);
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
@import "../../../../../../styles/styles";
|
|
||||||
|
|
||||||
.users {
|
.users {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr 40px;
|
grid-template-columns: 1fr 1fr 40px;
|
||||||
@@ -10,6 +8,6 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: @primary-color;
|
color: var(--primary-color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
p.error {
|
p.error {
|
||||||
margin: 8px 10px;
|
margin: 8px 10px;
|
||||||
color: darkred;
|
color: var(--danger);
|
||||||
}
|
}
|
||||||
|
|
||||||
.login {
|
.login {
|
||||||
@@ -12,9 +12,11 @@ p.error {
|
|||||||
padding: 20px;
|
padding: 20px;
|
||||||
width: 400px;
|
width: 400px;
|
||||||
margin: 100px 0;
|
margin: 100px 0;
|
||||||
background: #fffa;
|
background: var(--surface);
|
||||||
|
border: 1px solid var(--surface-border);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
color: var(--text);
|
||||||
position: relative;
|
position: relative;
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
@@ -33,11 +35,11 @@ button {
|
|||||||
|
|
||||||
.btn-password {
|
.btn-password {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
color: #888;
|
color: var(--text-soft);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-user {
|
.btn-user {
|
||||||
color: #888;
|
color: var(--text-soft);
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame {
|
.frame {
|
||||||
|
|||||||
@@ -4,5 +4,5 @@
|
|||||||
|
|
||||||
p.error {
|
p.error {
|
||||||
margin: 8px 10px;
|
margin: 8px 10px;
|
||||||
color: darkred;
|
color: var(--danger);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,13 +2,21 @@ import {Injectable} from '@angular/core';
|
|||||||
import {DbService} from './db.service';
|
import {DbService} from './db.service';
|
||||||
import {firstValueFrom, Observable} from 'rxjs';
|
import {firstValueFrom, Observable} from 'rxjs';
|
||||||
import {Config} from './config';
|
import {Config} from './config';
|
||||||
|
import {shareReplay} from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class ConfigService {
|
export class ConfigService {
|
||||||
|
private readonly config$ = this.db.doc$<Config>('global/config').pipe(
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
public constructor(private db: DbService) {}
|
public constructor(private db: DbService) {}
|
||||||
|
|
||||||
public get$ = (): Observable<Config | null> => this.db.doc$<Config>('global/config');
|
public get$ = (): Observable<Config | null> => this.config$;
|
||||||
public get = (): Promise<Config | null> => firstValueFrom(this.get$());
|
public get = (): Promise<Config | null> => firstValueFrom(this.get$());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ describe('Filter Helper', () => {
|
|||||||
const song: Song = {
|
const song: Song = {
|
||||||
title: 'Song Title',
|
title: 'Song Title',
|
||||||
text: "This is a songtext, aa?bb!cc,dd.ee'ff",
|
text: "This is a songtext, aa?bb!cc,dd.ee'ff",
|
||||||
legalOwner: '',
|
legalOwner: 'other',
|
||||||
label: '',
|
label: '',
|
||||||
id: '',
|
id: '',
|
||||||
legalType: '',
|
legalType: 'open',
|
||||||
artist: '',
|
artist: '',
|
||||||
comment: '',
|
comment: '',
|
||||||
edits: [],
|
edits: [],
|
||||||
@@ -18,9 +18,9 @@ describe('Filter Helper', () => {
|
|||||||
number: 1,
|
number: 1,
|
||||||
legalOwnerId: '',
|
legalOwnerId: '',
|
||||||
origin: '',
|
origin: '',
|
||||||
status: '',
|
status: 'draft',
|
||||||
tempo: 10,
|
tempo: 10,
|
||||||
type: '',
|
type: 'Misc',
|
||||||
termsOfUse: '',
|
termsOfUse: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -2,15 +2,23 @@ import {Injectable} from '@angular/core';
|
|||||||
import {DbService} from './db.service';
|
import {DbService} from './db.service';
|
||||||
import {GlobalSettings} from './global-settings';
|
import {GlobalSettings} from './global-settings';
|
||||||
import {Observable} from 'rxjs';
|
import {Observable} from 'rxjs';
|
||||||
|
import {shareReplay} from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class GlobalSettingsService {
|
export class GlobalSettingsService {
|
||||||
|
private readonly settings$ = this.db.doc$<GlobalSettings>('global/static').pipe(
|
||||||
|
shareReplay({
|
||||||
|
bufferSize: 1,
|
||||||
|
refCount: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
public constructor(private db: DbService) {}
|
public constructor(private db: DbService) {}
|
||||||
|
|
||||||
public get get$(): Observable<GlobalSettings | null> {
|
public get get$(): Observable<GlobalSettings | null> {
|
||||||
return this.db.doc$<GlobalSettings>('global/static');
|
return this.settings$;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async set(data: Partial<GlobalSettings>): Promise<void> {
|
public async set(data: Partial<GlobalSettings>): Promise<void> {
|
||||||
|
|||||||
@@ -1,19 +1,26 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {AngularFireAuth} from '@angular/fire/compat/auth';
|
import {AngularFireAuth} from '@angular/fire/compat/auth';
|
||||||
import {BehaviorSubject, firstValueFrom, Observable} from 'rxjs';
|
import {BehaviorSubject, firstValueFrom, Observable} from 'rxjs';
|
||||||
import {filter, map, switchMap, tap} from 'rxjs/operators';
|
import {filter, map, shareReplay, switchMap, take, tap} from 'rxjs/operators';
|
||||||
import {User} from './user';
|
import {User} from './user';
|
||||||
import {DbService} from '../db.service';
|
import {DbService} from '../db.service';
|
||||||
import {environment} from '../../../environments/environment';
|
import {environment} from '../../../environments/environment';
|
||||||
import {Router} from '@angular/router';
|
import {Router} from '@angular/router';
|
||||||
import {ShowDataService} from '../../modules/shows/services/show-data.service';
|
import {ShowDataService} from '../../modules/shows/services/show-data.service';
|
||||||
import {ShowSongDataService} from '../../modules/shows/services/show-song-data.service';
|
import {ShowSongDataService} from '../../modules/shows/services/show-song-data.service';
|
||||||
|
import firebase from 'firebase/compat/app';
|
||||||
|
|
||||||
|
export interface SongUsageMigrationResult {
|
||||||
|
usersProcessed: number;
|
||||||
|
showsProcessed: number;
|
||||||
|
showSongsProcessed: number;
|
||||||
|
}
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class UserService {
|
export class UserService {
|
||||||
public users$ = new BehaviorSubject<User[]>([]);
|
public users$ = this.db.col$<User>('users').pipe(shareReplay({bufferSize: 1, refCount: true}));
|
||||||
private iUserId$ = new BehaviorSubject<string | null>(null);
|
private iUserId$ = new BehaviorSubject<string | null>(null);
|
||||||
private iUser$ = new BehaviorSubject<User | null>(null);
|
private iUser$ = new BehaviorSubject<User | null>(null);
|
||||||
|
|
||||||
@@ -32,8 +39,6 @@ export class UserService {
|
|||||||
switchMap(uid => this.readUser$(uid))
|
switchMap(uid => this.readUser$(uid))
|
||||||
)
|
)
|
||||||
.subscribe(_ => this.iUser$.next(_));
|
.subscribe(_ => this.iUser$.next(_));
|
||||||
|
|
||||||
this.db.col$<User>('users/').subscribe(_ => this.users$.next(_));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public get userId$(): Observable<string | null> {
|
public get userId$(): Observable<string | null> {
|
||||||
@@ -53,6 +58,7 @@ export class UserService {
|
|||||||
const aUser = await this.afAuth.signInWithEmailAndPassword(user, password);
|
const aUser = await this.afAuth.signInWithEmailAndPassword(user, password);
|
||||||
if (!aUser.user) return null;
|
if (!aUser.user) return null;
|
||||||
const dUser = await this.readUser(aUser.user.uid);
|
const dUser = await this.readUser(aUser.user.uid);
|
||||||
|
if (!dUser) return null;
|
||||||
await this.initSongUsage(dUser);
|
await this.initSongUsage(dUser);
|
||||||
this.iUser$.next(dUser);
|
this.iUser$.next(dUser);
|
||||||
this.iUserId$.next(aUser.user.uid);
|
this.iUserId$.next(aUser.user.uid);
|
||||||
@@ -62,7 +68,7 @@ export class UserService {
|
|||||||
|
|
||||||
public loggedIn$: () => Observable<boolean> = () => this.afAuth.authState.pipe(map(_ => !!_));
|
public loggedIn$: () => Observable<boolean> = () => this.afAuth.authState.pipe(map(_ => !!_));
|
||||||
|
|
||||||
public list$: () => Observable<User[]> = (): Observable<User[]> => this.db.col$('users');
|
public list$: () => Observable<User[]> = (): Observable<User[]> => this.users$;
|
||||||
|
|
||||||
public async logout(): Promise<void> {
|
public async logout(): Promise<void> {
|
||||||
await this.afAuth.signOut();
|
await this.afAuth.signOut();
|
||||||
@@ -83,8 +89,9 @@ export class UserService {
|
|||||||
const aUser = await this.afAuth.createUserWithEmailAndPassword(user, password);
|
const aUser = await this.afAuth.createUserWithEmailAndPassword(user, password);
|
||||||
if (!aUser.user) return;
|
if (!aUser.user) return;
|
||||||
const userId = aUser.user.uid;
|
const userId = aUser.user.uid;
|
||||||
await this.db.doc('users/' + userId).set({name, chordMode: 'onlyFirst'});
|
await this.db.doc('users/' + userId).set({name, chordMode: 'onlyFirst', songUsage: {}});
|
||||||
const dUser = await this.readUser(aUser.user.uid);
|
const dUser = await this.readUser(aUser.user.uid);
|
||||||
|
if (!dUser) return;
|
||||||
this.iUser$.next(dUser);
|
this.iUser$.next(dUser);
|
||||||
await this.router.navigateByUrl('/brand/new-user');
|
await this.router.navigateByUrl('/brand/new-user');
|
||||||
}
|
}
|
||||||
@@ -92,35 +99,71 @@ export class UserService {
|
|||||||
public incSongCount = (songId: string) => this.updateSongUsage(songId, 1);
|
public incSongCount = (songId: string) => this.updateSongUsage(songId, 1);
|
||||||
public decSongCount = (songId: string) => this.updateSongUsage(songId, -1);
|
public decSongCount = (songId: string) => this.updateSongUsage(songId, -1);
|
||||||
|
|
||||||
|
public async rebuildSongUsage(): Promise<SongUsageMigrationResult> {
|
||||||
|
const currentUser = await firstValueFrom(this.iUser$.pipe(take(1)));
|
||||||
|
if (!currentUser || !this.hasAdminRole(currentUser.role)) {
|
||||||
|
throw new Error('Admin role required to rebuild songUsage.');
|
||||||
|
}
|
||||||
|
|
||||||
|
const [users, shows] = await Promise.all([firstValueFrom(this.users$), firstValueFrom(this.showDataService.listRaw$())]);
|
||||||
|
const songUsageByUserId: Record<string, Record<string, number>> = {};
|
||||||
|
|
||||||
|
users.forEach(user => {
|
||||||
|
songUsageByUserId[user.id] = {};
|
||||||
|
});
|
||||||
|
|
||||||
|
let showSongsProcessed = 0;
|
||||||
|
for (const show of shows) {
|
||||||
|
const ownerId = show.owner;
|
||||||
|
if (!ownerId) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const showSongs = await firstValueFrom(this.showSongDataService.list$(show.id));
|
||||||
|
const usage = songUsageByUserId[ownerId] ?? {};
|
||||||
|
songUsageByUserId[ownerId] = usage;
|
||||||
|
|
||||||
|
for (const showSong of showSongs) {
|
||||||
|
showSongsProcessed += 1;
|
||||||
|
usage[showSong.songId] = (usage[showSong.songId] ?? 0) + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await Promise.all(
|
||||||
|
users.map(user =>
|
||||||
|
this.update$(user.id, {
|
||||||
|
songUsage: songUsageByUserId[user.id] ?? {},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
usersProcessed: users.length,
|
||||||
|
showsProcessed: shows.length,
|
||||||
|
showSongsProcessed,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
private async updateSongUsage(songId: string, direction: number) {
|
private async updateSongUsage(songId: string, direction: number) {
|
||||||
const user = await firstValueFrom(this.user$);
|
const user = await firstValueFrom(this.user$);
|
||||||
if (!user) return null;
|
if (!user) return null;
|
||||||
|
|
||||||
const songUsage = user?.songUsage ?? {};
|
await this.db.doc<User>('users/' + user.id).update({
|
||||||
let currentSongCount = songUsage[songId];
|
[`songUsage.${songId}`]: firebase.firestore.FieldValue.increment(direction),
|
||||||
if (currentSongCount === null || currentSongCount === undefined) currentSongCount = 0;
|
});
|
||||||
else currentSongCount = currentSongCount + direction;
|
|
||||||
songUsage[songId] = Math.max(0, currentSongCount);
|
|
||||||
|
|
||||||
await this.update$(user.id, {songUsage});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async initSongUsage(user: User) {
|
private async initSongUsage(user: User) {
|
||||||
if (user.songUsage) return;
|
if (user.songUsage) return;
|
||||||
|
await this.update$(user.id, {songUsage: {}});
|
||||||
|
}
|
||||||
|
|
||||||
const shows = await firstValueFrom(this.showDataService.listRaw$());
|
private hasAdminRole(role: string | null | undefined): boolean {
|
||||||
const myShows = shows.filter(show => show.owner === user.id);
|
if (!role) {
|
||||||
const songUsage: {[songId: string]: number} = {};
|
return false;
|
||||||
for (const show of myShows) {
|
|
||||||
const showSongs = await firstValueFrom(this.showSongDataService.list$(show.id));
|
|
||||||
for (const showSong of showSongs) {
|
|
||||||
const current = songUsage[showSong.songId] ?? 0;
|
|
||||||
songUsage[showSong.songId] = current + 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await this.update$(user.id, {songUsage});
|
return role.split(';').includes('admin');
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private readUser$ = (uid: string) => this.db.doc$<User>('users/' + uid);
|
private readUser$ = (uid: string) => this.db.doc$<User>('users/' + uid);
|
||||||
|
|||||||
@@ -1,16 +1,15 @@
|
|||||||
@import "../../../../../../styles/styles";
|
|
||||||
|
|
||||||
input {
|
input {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid #888;
|
border-bottom: 1px solid var(--text-soft);
|
||||||
color: #888;
|
color: var(--text-soft);
|
||||||
transition: all 300ms ease-in-out;
|
transition: var(--transition);
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
border-bottom: 1px solid @primary-color;
|
border-bottom: 1px solid var(--primary-color);
|
||||||
|
color: var(--text-inverse);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 500px) {
|
@media screen and (max-width: 500px) {
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
@import "../../../../../../styles/styles";
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
display: block;
|
display: block;
|
||||||
@@ -10,13 +8,13 @@ a {
|
|||||||
padding: 15px;
|
padding: 15px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
transition: @transition;
|
transition: var(--transition);
|
||||||
border-color: #222;
|
border-color: transparent;
|
||||||
|
|
||||||
fa-icon {
|
fa-icon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
transition: @transition;
|
transition: var(--transition);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
@@ -26,8 +24,9 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
opacity: 0.9;
|
opacity: 1;
|
||||||
border-bottom: 5px solid #555;
|
color: var(--primary-hover);
|
||||||
|
border-bottom: 5px solid var(--hover-background);
|
||||||
|
|
||||||
fa-icon {
|
fa-icon {
|
||||||
transform: scale(1.2);
|
transform: scale(1.2);
|
||||||
@@ -35,8 +34,9 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
border-bottom: 5px solid @primary-color;
|
border-bottom: 5px solid var(--primary-color);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
color: var(--text-inverse);
|
||||||
|
|
||||||
fa-icon {
|
fa-icon {
|
||||||
transform: scale(1.3);
|
transform: scale(1.3);
|
||||||
|
|||||||
@@ -8,12 +8,12 @@ nav {
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
background: #222b;
|
background: var(--navigation-background);
|
||||||
color: #fff;
|
color: var(--text-inverse);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
box-shadow: 0px -5px 20px 4px rgba(0, 0, 0, 0.39), 1px 0px 6px 4px rgba(0, 0, 0, 0.53);
|
box-shadow: 0px -5px 20px 4px rgba(0, 0, 0, 0.39), 1px 0px 6px 4px rgba(0, 0, 0, 0.53);
|
||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(10px);
|
||||||
transition: all 300ms ease-in-out;
|
transition: var(--transition);
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
button {
|
button {
|
||||||
color: #373b44;
|
color: var(--text);
|
||||||
|
transition: var(--transition);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--primary-active);
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,18 +3,20 @@
|
|||||||
.card {
|
.card {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background: #fffc;
|
background: var(--surface);
|
||||||
backdrop-filter: blur(15px);
|
backdrop-filter: blur(15px);
|
||||||
|
border: 1px solid var(--surface-border);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 800px;
|
width: 800px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
color: var(--text);
|
||||||
|
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
background: #ffff;
|
background: var(--surface-strong);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: #000;
|
color: var(--text);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.padding {
|
&.padding {
|
||||||
@@ -25,9 +27,9 @@
|
|||||||
|
|
||||||
&.fullscreen {
|
&.fullscreen {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
background: #ffff;
|
background: var(--surface-strong);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: #000;
|
color: var(--text);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
@@ -44,6 +46,7 @@
|
|||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
color: var(--text);
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
@@ -54,6 +57,7 @@
|
|||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
color: var(--text-muted);
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
@@ -68,4 +72,5 @@
|
|||||||
right: 10px;
|
right: 10px;
|
||||||
top: 15px;
|
top: 15px;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
color: var(--text-muted);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,11 +10,11 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
color: #A6C4F5;
|
color: var(--primary-hover);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.filter-active {
|
.filter-active {
|
||||||
color: #a21;
|
color: var(--danger);
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,8 +54,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chord {
|
.chord {
|
||||||
color: #00b;
|
color: var(--primary-active);
|
||||||
text-shadow: 0 0 1px #00b;
|
text-shadow: 0 0 1px var(--primary-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
.offset {
|
.offset {
|
||||||
@@ -68,14 +68,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
color: red;
|
color: var(--danger);
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comment {
|
.comment {
|
||||||
color: #00b;
|
color: var(--primary-active);
|
||||||
border-left: 2px solid #00b;
|
border-left: 2px solid var(--primary-hover);
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,58 +1,22 @@
|
|||||||
@use '@angular/material' as mat;
|
@use '@angular/material' as mat;
|
||||||
|
|
||||||
|
// Include the common styles for Angular Material once.
|
||||||
|
|
||||||
// Custom Theming for Angular Material
|
|
||||||
// For more information: https://material.angular.io/guide/theming
|
|
||||||
// Plus imports for other components in your app.
|
|
||||||
|
|
||||||
// Include the common styles for Angular Material. We include this here so that you only
|
|
||||||
// have to load a single css file for Angular Material in your app.
|
|
||||||
// Be sure that you only ever include this mixin once!
|
|
||||||
// TODO(v15): As of v15 mat.legacy-core no longer includes default typography styles.
|
|
||||||
// The following line adds:
|
|
||||||
// 1. Default typography styles for all components
|
|
||||||
// 2. Styles for typography hierarchy classes (e.g. .mat-headline-1)
|
|
||||||
// If you specify typography styles for the components you use elsewhere, you should delete this line.
|
|
||||||
// If you don't need the default component typographies but still want the hierarchy styles,
|
|
||||||
// you can delete this line and instead use:
|
|
||||||
// `@include mat.legacy-typography-hierarchy(mat.define-typography-config());`
|
|
||||||
@include mat.all-component-typographies();
|
@include mat.all-component-typographies();
|
||||||
@include mat.elevation-classes();
|
@include mat.elevation-classes();
|
||||||
@include mat.app-background();
|
@include mat.app-background();
|
||||||
|
|
||||||
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
|
||||||
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
|
||||||
// hue. Available color palettes: https://material.io/design/color/
|
|
||||||
$wgenerator-primary: mat.m2-define-palette(mat.$m2-indigo-palette);
|
$wgenerator-primary: mat.m2-define-palette(mat.$m2-indigo-palette);
|
||||||
$wgenerator-accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
|
$wgenerator-accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
|
||||||
|
|
||||||
// The warn palette is optional (defaults to red).
|
|
||||||
$wgenerator-warn: mat.m2-define-palette(mat.$m2-red-palette);
|
$wgenerator-warn: mat.m2-define-palette(mat.$m2-red-palette);
|
||||||
|
|
||||||
// Create the theme object (a Sass map containing all of the palettes).
|
$wgenerator-theme: mat.m2-define-light-theme((
|
||||||
$wgenerator-theme: mat.m2-define-light-theme($wgenerator-primary, $wgenerator-accent, $wgenerator-warn);
|
color: (
|
||||||
|
primary: $wgenerator-primary,
|
||||||
|
accent: $wgenerator-accent,
|
||||||
|
warn: $wgenerator-warn,
|
||||||
|
),
|
||||||
|
typography: mat.m2-define-typography-config(),
|
||||||
|
density: 0,
|
||||||
|
));
|
||||||
|
|
||||||
// Include theme styles for core and each component used in your app.
|
|
||||||
// Alternatively, you can import and @include the theme mixins for each component
|
|
||||||
// that you are using.
|
|
||||||
@include mat.all-component-themes($wgenerator-theme);
|
@include mat.all-component-themes($wgenerator-theme);
|
||||||
|
|
||||||
// Custom Theming for Angular Material
|
|
||||||
// For more information: https://material.angular.io/guide/theming
|
|
||||||
// Plus imports for other components in your app.
|
|
||||||
|
|
||||||
// Include the common styles for Angular Material. We include this here so that you only
|
|
||||||
// have to load a single css file for Angular Material in your app.
|
|
||||||
// Be sure that you only ever include this mixin once!
|
|
||||||
// TODO(v15): As of v15 mat.legacy-core no longer includes default typography styles.
|
|
||||||
// The following line adds:
|
|
||||||
// 1. Default typography styles for all components
|
|
||||||
// 2. Styles for typography hierarchy classes (e.g. .mat-headline-1)
|
|
||||||
// If you specify typography styles for the components you use elsewhere, you should delete this line.
|
|
||||||
// If you don't need the default component typographies but still want the hierarchy styles,
|
|
||||||
// you can delete this line and instead use:
|
|
||||||
// `@include mat.legacy-typography-hierarchy(mat.define-typography-config());`
|
|
||||||
@include mat.all-component-typographies();
|
|
||||||
@include mat.elevation-classes();
|
|
||||||
@include mat.app-background();
|
|
||||||
|
|||||||
23
src/main.ts
23
src/main.ts
@@ -14,6 +14,17 @@ import {AngularFireAuthModule} from '@angular/fire/compat/auth';
|
|||||||
import {AngularFireAuthGuardModule} from '@angular/fire/compat/auth-guard';
|
import {AngularFireAuthGuardModule} from '@angular/fire/compat/auth-guard';
|
||||||
import {FontAwesomeModule} from '@fortawesome/angular-fontawesome';
|
import {FontAwesomeModule} from '@fortawesome/angular-fontawesome';
|
||||||
import {AppComponent} from './app/app.component';
|
import {AppComponent} from './app/app.component';
|
||||||
|
import {provideFirebaseApp, initializeApp} from '@angular/fire/app';
|
||||||
|
import {provideFirestore, getFirestore} from '@angular/fire/firestore';
|
||||||
|
import {UserService} from './app/services/user/user.service';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
wgeneratorAdmin?: {
|
||||||
|
rebuildSongUsage(): Promise<unknown>;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (environment.production) {
|
if (environment.production) {
|
||||||
enableProdMode();
|
enableProdMode();
|
||||||
@@ -35,8 +46,16 @@ bootstrapApplication(AppComponent, {
|
|||||||
AngularFireAuthGuardModule,
|
AngularFireAuthGuardModule,
|
||||||
FontAwesomeModule
|
FontAwesomeModule
|
||||||
),
|
),
|
||||||
|
provideFirebaseApp(() => initializeApp(environment.firebase)),
|
||||||
|
provideFirestore(() => getFirestore()),
|
||||||
{provide: MAT_DATE_LOCALE, useValue: 'de-DE'},
|
{provide: MAT_DATE_LOCALE, useValue: 'de-DE'},
|
||||||
provideAnimations(),
|
provideAnimations(),
|
||||||
provideAnimations(),
|
|
||||||
],
|
],
|
||||||
}).catch(err => console.error(err));
|
})
|
||||||
|
.then(appRef => {
|
||||||
|
const userService = appRef.injector.get(UserService);
|
||||||
|
window.wgeneratorAdmin = {
|
||||||
|
rebuildSongUsage: () => userService.rebuildSongUsage(),
|
||||||
|
};
|
||||||
|
})
|
||||||
|
.catch(err => console.error(err));
|
||||||
|
|||||||
@@ -1,12 +1,39 @@
|
|||||||
@primary-color: #4286f4;
|
|
||||||
|
|
||||||
@navigation-background: #fffffff1;
|
|
||||||
|
|
||||||
@transition: all 300ms ease-in-out;
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--color-primary: #4286f4;
|
--bg-deep: #292e49;
|
||||||
--color-primary-light: #639af3;
|
--bg-mid: #536976;
|
||||||
|
--bg-soft: #bbd2c5;
|
||||||
|
|
||||||
|
--surface: rgba(244, 247, 245, 0.88);
|
||||||
|
--surface-strong: rgba(255, 255, 255, 0.96);
|
||||||
|
--surface-dark: rgba(30, 36, 52, 0.72);
|
||||||
|
--surface-border: rgba(41, 46, 73, 0.16);
|
||||||
|
--surface-subtle: rgba(255, 255, 255, 0.38);
|
||||||
|
--surface-muted: rgba(41, 46, 73, 0.06);
|
||||||
|
|
||||||
|
--text: #1f2433;
|
||||||
|
--text-muted: #5f6b73;
|
||||||
|
--text-soft: #7a858c;
|
||||||
|
--text-inverse: #f7fbff;
|
||||||
|
|
||||||
|
--color-primary: #6f8f95;
|
||||||
|
--color-primary-light: #85a4aa;
|
||||||
|
--primary-color: #6f8f95;
|
||||||
|
--primary-hover: #85a4aa;
|
||||||
|
--primary-active: #5b797e;
|
||||||
|
--accent-color: #7fd1b9;
|
||||||
|
|
||||||
|
--success: #4e9b6f;
|
||||||
|
--warning: #d79a55;
|
||||||
|
--danger: #c96b72;
|
||||||
|
|
||||||
|
--navigation-background: rgba(30, 36, 52, 0.72);
|
||||||
|
--hover-background: rgba(111, 143, 149, 0.16);
|
||||||
|
--overlay: rgba(18, 24, 37, 0.62);
|
||||||
|
--overlay-strong: rgba(18, 24, 37, 0.88);
|
||||||
|
--divider: rgba(31, 36, 51, 0.12);
|
||||||
|
--link-color: var(--primary-active);
|
||||||
|
--focus-ring: 0 0 0 2px rgba(111, 143, 149, 0.28);
|
||||||
|
--transition: all 300ms ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
@@ -18,11 +45,9 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: Roboto, "Helvetica Neue", sans-serif;
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #333;
|
color: var(--text);
|
||||||
|
|
||||||
background-image: url("/assets/background.jpg");
|
background: linear-gradient(39deg, var(--bg-deep), var(--bg-mid), var(--bg-soft));
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,7 +69,14 @@ a {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mat-mdc-icon-button {
|
||||||
|
color: var(--primary-color) !important;
|
||||||
|
transition: var(--transition);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--primary-active) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.content > *:not(router-outlet) {
|
.content > *:not(router-outlet) {
|
||||||
@@ -60,7 +92,7 @@ a {
|
|||||||
|
|
||||||
.btn-icon {
|
.btn-icon {
|
||||||
opacity: 0.2;
|
opacity: 0.2;
|
||||||
transition: all 300ms ease-in-out;
|
transition: var(--transition);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user