diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-17 14:42:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-18 08:35:06 +0200 |
commit | 9df52d660feb722404be00a50f3c8a612bec1c15 (patch) | |
tree | dde52880fa012874d24c60f64eb596b0a789cc8b /client/src/app/+signup | |
parent | adb8809d43648ea0a64d6845bb39aa3bd0e005a6 (diff) | |
download | PeerTube-9df52d660feb722404be00a50f3c8a612bec1c15.tar.gz PeerTube-9df52d660feb722404be00a50f3c8a612bec1c15.tar.zst PeerTube-9df52d660feb722404be00a50f3c8a612bec1c15.zip |
Migrate client to eslint
Diffstat (limited to 'client/src/app/+signup')
3 files changed, 11 insertions, 8 deletions
diff --git a/client/src/app/+signup/+register/custom-stepper.component.ts b/client/src/app/+signup/+register/custom-stepper.component.ts index 5a80895f9..3b7ba40e8 100644 --- a/client/src/app/+signup/+register/custom-stepper.component.ts +++ b/client/src/app/+signup/+register/custom-stepper.component.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { Component } from '@angular/core' | ||
2 | import { CdkStep, CdkStepper } from '@angular/cdk/stepper' | 1 | import { CdkStep, CdkStepper } from '@angular/cdk/stepper' |
2 | import { Component } from '@angular/core' | ||
3 | 3 | ||
4 | @Component({ | 4 | @Component({ |
5 | selector: 'my-custom-stepper', | 5 | selector: 'my-custom-stepper', |
@@ -14,13 +14,13 @@ export class CustomStepperComponent extends CdkStepper { | |||
14 | } | 14 | } |
15 | 15 | ||
16 | isCompleted (step: CdkStep) { | 16 | isCompleted (step: CdkStep) { |
17 | return step.stepControl && step.stepControl.dirty && step.stepControl.valid | 17 | return step.stepControl?.dirty && step.stepControl.valid |
18 | } | 18 | } |
19 | 19 | ||
20 | isAccessible (index: number) { | 20 | isAccessible (index: number) { |
21 | const stepsCompletedMap = this.steps.map(step => this.isCompleted(step)) | 21 | const stepsCompletedMap = this.steps.map(step => this.isCompleted(step)) |
22 | return index === 0 | 22 | return index === 0 |
23 | ? true | 23 | ? true |
24 | : stepsCompletedMap[ index - 1 ] | 24 | : stepsCompletedMap[index - 1] |
25 | } | 25 | } |
26 | } | 26 | } |
diff --git a/client/src/app/+signup/+register/register.component.ts b/client/src/app/+signup/+register/register.component.ts index 056442107..d8ac39c7c 100644 --- a/client/src/app/+signup/+register/register.component.ts +++ b/client/src/app/+signup/+register/register.component.ts | |||
@@ -49,8 +49,7 @@ export class RegisterComponent implements OnInit { | |||
49 | private authService: AuthService, | 49 | private authService: AuthService, |
50 | private userService: UserService, | 50 | private userService: UserService, |
51 | private hooks: HooksService | 51 | private hooks: HooksService |
52 | ) { | 52 | ) { } |
53 | } | ||
54 | 53 | ||
55 | get requiresEmailVerification () { | 54 | get requiresEmailVerification () { |
56 | return this.serverConfig.signup.requiresEmailVerification | 55 | return this.serverConfig.signup.requiresEmailVerification |
@@ -138,11 +137,15 @@ export class RegisterComponent implements OnInit { | |||
138 | this.success = $localize`You are now logged in as ${body.username}!` | 137 | this.success = $localize`You are now logged in as ${body.username}!` |
139 | }, | 138 | }, |
140 | 139 | ||
141 | error: err => this.error = err.message | 140 | error: err => { |
141 | this.error = err.message | ||
142 | } | ||
142 | }) | 143 | }) |
143 | }, | 144 | }, |
144 | 145 | ||
145 | error: err => this.error = err.message | 146 | error: err => { |
147 | this.error = err.message | ||
148 | } | ||
146 | }) | 149 | }) |
147 | } | 150 | } |
148 | } | 151 | } |
diff --git a/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts b/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts index 457a0abe0..827ec7652 100644 --- a/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts +++ b/client/src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts | |||
@@ -20,7 +20,7 @@ export class VerifyAccountEmailComponent implements OnInit { | |||
20 | private authService: AuthService, | 20 | private authService: AuthService, |
21 | private notifier: Notifier, | 21 | private notifier: Notifier, |
22 | private route: ActivatedRoute | 22 | private route: ActivatedRoute |
23 | ) { | 23 | ) { |
24 | } | 24 | } |
25 | 25 | ||
26 | ngOnInit () { | 26 | ngOnInit () { |