import { Component, Input, OnInit } from '@angular/core'; import { FormGroup, FormControl, Validators, ReactiveFormsModule } from '@angular/forms'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { AgeRestriction } from 'src/app/_models/metadata/age-restriction'; import { Library } from 'src/app/_models/library/library'; import { Member } from 'src/app/_models/auth/member'; import { AccountService } from 'src/app/_services/account.service'; import { SentenceCasePipe } from '../../_pipes/sentence-case.pipe'; import { RestrictionSelectorComponent } from '../../user-settings/restriction-selector/restriction-selector.component'; import { LibrarySelectorComponent } from '../library-selector/library-selector.component'; import { RoleSelectorComponent } from '../role-selector/role-selector.component'; import { NgIf } from '@angular/common'; import {TranslocoDirective} from "@ngneat/transloco"; const AllowedUsernameCharacters = /^[\sa-zA-Z0-9\-._@+/\s]*$/; @Component({ selector: 'app-edit-user', templateUrl: './edit-user.component.html', styleUrls: ['./edit-user.component.scss'], standalone: true, imports: [ReactiveFormsModule, NgIf, RoleSelectorComponent, LibrarySelectorComponent, RestrictionSelectorComponent, SentenceCasePipe, TranslocoDirective] }) export class EditUserComponent implements OnInit { @Input({required: true}) member!: Member; selectedRoles: Array = []; selectedLibraries: Array = []; selectedRestriction!: AgeRestriction; isSaving: boolean = false; userForm: FormGroup = new FormGroup({}); allowedCharacters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+/'; public get email() { return this.userForm.get('email'); } public get username() { return this.userForm.get('username'); } public get password() { return this.userForm.get('password'); } public get hasAdminRoleSelected() { return this.selectedRoles.includes('Admin'); }; constructor(public modal: NgbActiveModal, private accountService: AccountService) { } ngOnInit(): void { this.userForm.addControl('email', new FormControl(this.member.email, [Validators.required, Validators.email])); this.userForm.addControl('username', new FormControl(this.member.username, [Validators.required, Validators.pattern(AllowedUsernameCharacters)])); this.userForm.get('email')?.disable(); this.selectedRestriction = this.member.ageRestriction; } updateRoleSelection(roles: Array) { this.selectedRoles = roles; } updateRestrictionSelection(restriction: AgeRestriction) { this.selectedRestriction = restriction; } updateLibrarySelection(libraries: Array) { this.selectedLibraries = libraries.map(l => l.id); } close() { this.modal.close(false); } save() { const model = this.userForm.getRawValue(); model.userId = this.member.id; model.roles = this.selectedRoles; model.libraries = this.selectedLibraries; model.ageRestriction = this.selectedRestriction; this.accountService.update(model).subscribe(() => { this.modal.close(true); }); } }