]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/users/user-edit/user-update.component.ts
Upgrade Angular first step
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / users / user-edit / user-update.component.ts
CommitLineData
8094a898
C
1import { Component, OnDestroy, OnInit } from '@angular/core'
2import { FormBuilder, FormGroup } from '@angular/forms'
3import { ActivatedRoute, Router } from '@angular/router'
4import { Subscription } from 'rxjs/Subscription'
5
6import { NotificationsService } from 'angular2-notifications'
7
8import { UserService } from '../shared'
954605a8
C
9import {
10 USER_EMAIL,
11 USER_VIDEO_QUOTA,
12 USER_ROLE,
13 User
14} from '../../../shared'
6a84aafd 15import { ServerService } from '../../../core'
8094a898 16import { UserEdit } from './user-edit'
954605a8 17import { UserUpdate, UserRole } from '../../../../../../shared'
8094a898
C
18
19@Component({
20 selector: 'my-user-update',
6a84aafd
C
21 templateUrl: './user-edit.component.html',
22 styleUrls: [ './user-edit.component.scss' ]
8094a898
C
23})
24export class UserUpdateComponent extends UserEdit implements OnInit, OnDestroy {
25 error: string
26 userId: number
27 username: string
28
29 form: FormGroup
30 formErrors = {
31 'email': '',
954605a8 32 'role': '',
8094a898
C
33 'videoQuota': ''
34 }
35 validationMessages = {
36 'email': USER_EMAIL.MESSAGES,
954605a8 37 'role': USER_ROLE.MESSAGES,
8094a898
C
38 'videoQuota': USER_VIDEO_QUOTA.MESSAGES
39 }
40
41 private paramsSub: Subscription
42
43 constructor (
6a84aafd 44 protected serverService: ServerService,
8094a898
C
45 private route: ActivatedRoute,
46 private router: Router,
47 private notificationsService: NotificationsService,
6a84aafd 48 private formBuilder: FormBuilder,
8094a898
C
49 private userService: UserService
50 ) {
51 super()
52 }
53
54 buildForm () {
55 this.form = this.formBuilder.group({
56 email: [ '', USER_EMAIL.VALIDATORS ],
954605a8 57 role: [ '', USER_ROLE.VALIDATORS ],
8094a898
C
58 videoQuota: [ '-1', USER_VIDEO_QUOTA.VALIDATORS ]
59 })
60
61 this.form.valueChanges.subscribe(data => this.onValueChanged(data))
62 }
63
64 ngOnInit () {
65 this.buildForm()
66
67 this.paramsSub = this.route.params.subscribe(routeParams => {
68 const userId = routeParams['id']
69 this.userService.getUser(userId).subscribe(
70 user => this.onUserFetched(user),
71
f7354483 72 err => this.error = err.message
8094a898
C
73 )
74 })
75 }
76
77 ngOnDestroy () {
78 this.paramsSub.unsubscribe()
79 }
80
81 formValidated () {
82 this.error = undefined
83
84 const userUpdate: UserUpdate = this.form.value
85
86 // A select in HTML is always mapped as a string, we convert it to number
87 userUpdate.videoQuota = parseInt(this.form.value['videoQuota'], 10)
88
89 this.userService.updateUser(this.userId, userUpdate).subscribe(
90 () => {
91 this.notificationsService.success('Success', `User ${this.username} updated.`)
92 this.router.navigate([ '/admin/users/list' ])
93 },
94
f7354483 95 err => this.error = err.message
8094a898
C
96 )
97 }
98
99 isCreation () {
100 return false
101 }
102
103 getFormButtonTitle () {
104 return 'Update user'
105 }
106
107 private onUserFetched (userJson: User) {
108 this.userId = userJson.id
109 this.username = userJson.username
110
111 this.form.patchValue({
112 email: userJson.email,
954605a8 113 role: userJson.role,
8094a898
C
114 videoQuota: userJson.videoQuota
115 })
116 }
117}