1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/settings/usermanager/usermanager.settings.component.ts

79 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-07-08 18:43:42 +08:00
import {Component, OnInit, ViewChild} from "@angular/core";
2016-12-27 06:36:38 +08:00
import {AuthenticationService} from "../../model/network/authentication.service";
2016-12-27 23:09:47 +08:00
import {UserDTO, UserRoles} from "../../../../common/entities/UserDTO";
import {Utils} from "../../../../common/Utils";
import {UserManagerSettingsService} from "./usermanager.settings.service";
2017-07-08 18:43:42 +08:00
import {ModalDirective} from "ngx-bootstrap/modal";
2017-07-09 18:03:17 +08:00
import {NavigationService} from "../../model/navigation.service";
@Component({
selector: 'settings-usermanager',
templateUrl: './usermanager.settings.component.html',
styleUrls: ['./usermanager.settings.component.css'],
providers: [UserManagerSettingsService],
})
export class UserMangerSettingsComponent implements OnInit {
2017-07-08 18:43:42 +08:00
@ViewChild('userModal') public childModal: ModalDirective;
public newUser = <UserDTO>{};
public userRoles: Array<any> = [];
public users: Array<UserDTO> = [];
2017-07-09 18:03:17 +08:00
constructor(private _authService: AuthenticationService, private _navigation: NavigationService, private _userSettings: UserManagerSettingsService) {
}
ngOnInit() {
2017-07-09 18:03:17 +08:00
if (!this._authService.isAuthenticated() ||
this._authService.user.value.role < UserRoles.Admin) {
this._navigation.toLogin();
return;
}
2017-07-08 18:43:42 +08:00
this.userRoles = Utils
.enumToArray(UserRoles)
2017-07-09 18:03:17 +08:00
.filter(r => r.key != UserRoles.LimitedGuest)
2017-07-08 18:43:42 +08:00
.filter(r => r.key <= this._authService.user.value.role)
.sort((a, b) => a.key - b.key);
this.getUsersList();
}
2017-07-04 01:17:49 +08:00
private async getUsersList() {
this.users = await this._userSettings.getUsers();
}
canModifyUser(user: UserDTO): boolean {
2017-07-04 01:17:49 +08:00
let currentUser = this._authService.user.value;
if (!currentUser) {
return false;
}
return currentUser.name != user.name && currentUser.role >= user.role;
}
initNewUser() {
this.newUser = <UserDTO>{role: UserRoles.User};
2017-07-08 18:43:42 +08:00
this.childModal.show();
}
2017-07-08 18:43:42 +08:00
async addNewUser() {
await this._userSettings.createUser(this.newUser);
await this.getUsersList();
this.childModal.hide();
}
2017-07-08 18:43:42 +08:00
async updateRole(user: UserDTO) {
await this._userSettings.updateRole(user);
await this.getUsersList();
this.childModal.hide();
}
2017-07-08 18:43:42 +08:00
async deleteUser(user: UserDTO) {
await this._userSettings.deleteUser(user);
await this.getUsersList();
this.childModal.hide();
}
}