mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
import { FormControl, FormGroup } from '@angular/forms'
|
|
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
|
|
import { first } from 'rxjs'
|
|
import { EditDialogComponent } from 'src/app/components/common/edit-dialog/edit-dialog.component'
|
|
import { PaperlessGroup } from 'src/app/data/paperless-group'
|
|
import { PaperlessUser } from 'src/app/data/paperless-user'
|
|
import { GroupService } from 'src/app/services/rest/group.service'
|
|
import { UserService } from 'src/app/services/rest/user.service'
|
|
|
|
@Component({
|
|
selector: 'app-user-edit-dialog',
|
|
templateUrl: './user-edit-dialog.component.html',
|
|
styleUrls: ['./user-edit-dialog.component.scss'],
|
|
})
|
|
export class UserEditDialogComponent
|
|
extends EditDialogComponent<PaperlessUser>
|
|
implements OnInit
|
|
{
|
|
groups: PaperlessGroup[]
|
|
|
|
constructor(
|
|
service: UserService,
|
|
activeModal: NgbActiveModal,
|
|
groupsService: GroupService
|
|
) {
|
|
super(service, activeModal)
|
|
|
|
groupsService
|
|
.listAll()
|
|
.pipe(first())
|
|
.subscribe((result) => (this.groups = result.results))
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
super.ngOnInit()
|
|
this.onToggleSuperUser()
|
|
}
|
|
|
|
getCreateTitle() {
|
|
return $localize`Create new user account`
|
|
}
|
|
|
|
getEditTitle() {
|
|
return $localize`Edit user account`
|
|
}
|
|
|
|
getForm(): FormGroup {
|
|
return new FormGroup({
|
|
username: new FormControl(''),
|
|
first_name: new FormControl(''),
|
|
last_name: new FormControl(''),
|
|
is_active: new FormControl(true),
|
|
is_superuser: new FormControl(false),
|
|
groups: new FormControl(null),
|
|
user_permissions: new FormControl(null),
|
|
})
|
|
}
|
|
|
|
onToggleSuperUser() {
|
|
if (this.objectForm.get('is_superuser').value) {
|
|
this.objectForm.get('user_permissions').disable()
|
|
} else {
|
|
this.objectForm.get('user_permissions').enable()
|
|
}
|
|
}
|
|
|
|
get inheritedPermissions(): string[] {
|
|
const groupsVal: Array<number> = this.objectForm.get('groups').value
|
|
|
|
if (!groupsVal) return []
|
|
else
|
|
return groupsVal.flatMap(
|
|
(id) => this.groups.find((g) => g.id == id)?.permissions
|
|
)
|
|
}
|
|
}
|