import {Component, OnInit} from '@angular/core'; import {UserService} from '../../../services/user/user.service'; import {Observable} from 'rxjs'; import {User} from '../../../services/user/user'; import {ChordMode} from '../../../widget-modules/components/song-text/song-text.component'; import {faSignOutAlt} from '@fortawesome/free-solid-svg-icons/faSignOutAlt'; @Component({ selector: 'app-info', templateUrl: './info.component.html', styleUrls: ['./info.component.less'], }) export class InfoComponent implements OnInit { public user$: Observable; public faSignOut = faSignOutAlt; public constructor(private userService: UserService) {} public ngOnInit(): void { this.user$ = this.userService.user$; } public async onChordModeChanged(uid: string, value: ChordMode): Promise { await this.userService.update$(uid, {chordMode: value}); } public getUserRoles = (roles: string): string[] => roles?.split(';') ?? []; public transdormUserRoles = (roles: string): string => this.getUserRoles(roles).join(', '); }