import { Component, OnInit } from '@angular/core' import { Router } from '@angular/router' import { Notifier, ServerService } from '@app/core' import { UserCreate, UserRole } from '../../../../../../shared' import { UserEdit } from './user-edit' import { I18n } from '@ngx-translate/i18n-polyfill' import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service' import { ConfigService } from '@app/+admin/config/shared/config.service' import { UserService } from '@app/shared' @Component({ selector: 'my-user-create', templateUrl: './user-edit.component.html', styleUrls: [ './user-edit.component.scss' ] }) export class UserCreateComponent extends UserEdit implements OnInit { error: string constructor ( protected serverService: ServerService, protected formValidatorService: FormValidatorService, protected configService: ConfigService, private userValidatorsService: UserValidatorsService, private router: Router, private notifier: Notifier, private userService: UserService, private i18n: I18n ) { super() this.buildQuotaOptions() } ngOnInit () { const defaultValues = { role: UserRole.USER.toString(), videoQuota: '-1', videoQuotaDaily: '-1' } this.buildForm({ username: this.userValidatorsService.USER_USERNAME, email: this.userValidatorsService.USER_EMAIL, password: this.userValidatorsService.USER_PASSWORD, role: this.userValidatorsService.USER_ROLE, videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA, videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY }, defaultValues) } formValidated () { this.error = undefined const userCreate: UserCreate = this.form.value // A select in HTML is always mapped as a string, we convert it to number userCreate.videoQuota = parseInt(this.form.value['videoQuota'], 10) this.userService.addUser(userCreate).subscribe( () => { this.notifier.success(this.i18n('User {{username}} created.', { username: userCreate.username })) this.router.navigate([ '/admin/users/list' ]) }, err => this.error = err.message ) } isCreation () { return true } getFormButtonTitle () { return this.i18n('Create user') } }