]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/account/account.component.ts
Try to optimize frontend
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account.component.ts
index a22738d3f509a6ce011db8a7140ea923ff22c266..929934f67adad77b38506205b0170e9cb86d2eb9 100644 (file)
@@ -1,47 +1,28 @@
-import {  } from '@angular/common';
-import { Component, OnInit } from '@angular/core';
-import { FormControl, FormGroup, Validators } from '@angular/forms';
-import { Router } from '@angular/router';
+import { Component, OnInit } from '@angular/core'
+import { FormBuilder, FormGroup } from '@angular/forms'
+import { Router } from '@angular/router'
 
-import { AccountService } from './account.service';
+import { NotificationsService } from 'angular2-notifications'
+
+import { AuthService } from '../core'
+import {
+  FormReactive,
+  User,
+  UserService,
+  USER_PASSWORD
+} from '../shared'
 
 @Component({
   selector: 'my-account',
-  template: require('./account.component.html')
+  templateUrl: './account.component.html',
+  styleUrls: [ './account.component.scss' ]
 })
-
 export class AccountComponent implements OnInit {
-  newPassword = '';
-  newConfirmedPassword = '';
-  changePasswordForm: FormGroup;
-  information: string = null;
-  error: string = null;
-
-  constructor(
-    private accountService: AccountService,
-    private router: Router
-  ) {}
-
-  ngOnInit() {
-    this.changePasswordForm = new FormGroup({
-      'new-password': new FormControl('', [ <any>Validators.required, <any>Validators.minLength(6) ]),
-      'new-confirmed-password': new FormControl('', [ <any>Validators.required, <any>Validators.minLength(6) ]),
-    });
-  }
-
-  changePassword() {
-    this.information = null;
-    this.error = null;
-
-    if (this.newPassword !== this.newConfirmedPassword) {
-      this.error = 'The new password and the confirmed password do not correspond.';
-      return;
-    }
+  user: User = null
 
-    this.accountService.changePassword(this.newPassword).subscribe(
-      ok => this.information = 'Password updated.',
+  constructor (private authService: AuthService) {}
 
-      err => this.error = err
-    );
+  ngOnInit () {
+    this.user = this.authService.getUser()
   }
 }