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";
|
2016-07-09 21:08:36 +08:00
|
|
|
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";
|
2016-07-09 21:08:36 +08:00
|
|
|
|
|
|
|
@Component({
|
2017-06-11 04:32:56 +08:00
|
|
|
selector: 'settings-usermanager',
|
|
|
|
templateUrl: './usermanager.settings.component.html',
|
|
|
|
styleUrls: ['./usermanager.settings.component.css'],
|
|
|
|
providers: [UserManagerSettingsService],
|
2016-07-09 21:08:36 +08:00
|
|
|
})
|
|
|
|
export class UserMangerSettingsComponent implements OnInit {
|
2017-07-08 18:43:42 +08:00
|
|
|
@ViewChild('userModal') public childModal: ModalDirective;
|
2017-06-11 04:32:56 +08:00
|
|
|
public newUser = <UserDTO>{};
|
|
|
|
public userRoles: Array<any> = [];
|
|
|
|
public users: Array<UserDTO> = [];
|
2016-07-09 21:08:36 +08:00
|
|
|
|
2017-07-09 18:03:17 +08:00
|
|
|
constructor(private _authService: AuthenticationService, private _navigation: NavigationService, private _userSettings: UserManagerSettingsService) {
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
ngOnInit() {
|
2017-07-09 18:03:17 +08:00
|
|
|
if (!this._authService.isAuthenticated() ||
|
|
|
|
this._authService.user.value.role < UserRoles.Admin) {
|
|
|
|
this._navigation.toLogin();
|
2017-06-11 04:32:56 +08:00
|
|
|
return;
|
2016-07-09 21:08:36 +08:00
|
|
|
}
|
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);
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
this.getUsersList();
|
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
private async getUsersList() {
|
|
|
|
this.users = await this._userSettings.getUsers();
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
canModifyUser(user: UserDTO): boolean {
|
2017-07-04 01:17:49 +08:00
|
|
|
let currentUser = this._authService.user.value;
|
2017-06-11 04:32:56 +08:00
|
|
|
if (!currentUser) {
|
|
|
|
return false;
|
2016-07-09 21:08:36 +08:00
|
|
|
}
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
return currentUser.name != user.name && currentUser.role >= user.role;
|
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
initNewUser() {
|
|
|
|
this.newUser = <UserDTO>{role: UserRoles.User};
|
2017-07-08 18:43:42 +08:00
|
|
|
this.childModal.show();
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
|
2017-07-08 18:43:42 +08:00
|
|
|
async addNewUser() {
|
|
|
|
await this._userSettings.createUser(this.newUser);
|
|
|
|
await this.getUsersList();
|
|
|
|
this.childModal.hide();
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
|
2017-07-08 18:43:42 +08:00
|
|
|
async updateRole(user: UserDTO) {
|
|
|
|
await this._userSettings.updateRole(user);
|
|
|
|
await this.getUsersList();
|
|
|
|
this.childModal.hide();
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 18:43:42 +08:00
|
|
|
async deleteUser(user: UserDTO) {
|
|
|
|
await this._userSettings.deleteUser(user);
|
|
|
|
await this.getUsersList();
|
|
|
|
this.childModal.hide();
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-07-09 21:08:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|