diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-06 14:01:30 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-06 14:03:23 +0200 |
commit | f375bb3db401e42b4317545a7e40dcfda692604d (patch) | |
tree | d2b978a63934f4cc0134674b00d678e8518e7e4f /client | |
parent | 86ab22921b3ea2660715d1db47fec7037b309d12 (diff) | |
download | PeerTube-f375bb3db401e42b4317545a7e40dcfda692604d.tar.gz PeerTube-f375bb3db401e42b4317545a7e40dcfda692604d.tar.zst PeerTube-f375bb3db401e42b4317545a7e40dcfda692604d.zip |
Add ability to override login signup message
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/core/plugins/hooks.service.ts | 10 | ||||
-rw-r--r-- | client/src/app/core/plugins/plugin.service.ts | 3 | ||||
-rw-r--r-- | client/src/app/login/login.component.html | 2 | ||||
-rw-r--r-- | client/src/app/login/login.component.ts | 4 |
4 files changed, 10 insertions, 9 deletions
diff --git a/client/src/app/core/plugins/hooks.service.ts b/client/src/app/core/plugins/hooks.service.ts index a6a444c32..2fbf406d1 100644 --- a/client/src/app/core/plugins/hooks.service.ts +++ b/client/src/app/core/plugins/hooks.service.ts | |||
@@ -1,9 +1,8 @@ | |||
1 | import { from, Observable } from 'rxjs' | ||
2 | import { mergeMap, switchMap } from 'rxjs/operators' | ||
1 | import { Injectable } from '@angular/core' | 3 | import { Injectable } from '@angular/core' |
2 | import { PluginService } from '@app/core/plugins/plugin.service' | 4 | import { PluginService } from '@app/core/plugins/plugin.service' |
3 | import { ClientActionHookName, ClientFilterHookName } from '@shared/models/plugins/client-hook.model' | 5 | import { ClientActionHookName, ClientFilterHookName } from '@shared/models/plugins/client-hook.model' |
4 | import { from, Observable } from 'rxjs' | ||
5 | import { mergeMap, switchMap } from 'rxjs/operators' | ||
6 | import { ServerService } from '@app/core/server' | ||
7 | import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type' | 6 | import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type' |
8 | 7 | ||
9 | type RawFunction<U, T> = (params: U) => T | 8 | type RawFunction<U, T> = (params: U) => T |
@@ -11,10 +10,7 @@ type ObservableFunction<U, T> = RawFunction<U, Observable<T>> | |||
11 | 10 | ||
12 | @Injectable() | 11 | @Injectable() |
13 | export class HooksService { | 12 | export class HooksService { |
14 | constructor ( | 13 | constructor (private pluginService: PluginService) { } |
15 | private server: ServerService, | ||
16 | private pluginService: PluginService | ||
17 | ) { } | ||
18 | 14 | ||
19 | wrapObsFun | 15 | wrapObsFun |
20 | <P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName> | 16 | <P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName> |
diff --git a/client/src/app/core/plugins/plugin.service.ts b/client/src/app/core/plugins/plugin.service.ts index 3ed23160d..c6efcac6d 100644 --- a/client/src/app/core/plugins/plugin.service.ts +++ b/client/src/app/core/plugins/plugin.service.ts | |||
@@ -47,7 +47,8 @@ export class PluginService implements ClientHook { | |||
47 | common: new ReplaySubject<boolean>(1), | 47 | common: new ReplaySubject<boolean>(1), |
48 | search: new ReplaySubject<boolean>(1), | 48 | search: new ReplaySubject<boolean>(1), |
49 | 'video-watch': new ReplaySubject<boolean>(1), | 49 | 'video-watch': new ReplaySubject<boolean>(1), |
50 | signup: new ReplaySubject<boolean>(1) | 50 | signup: new ReplaySubject<boolean>(1), |
51 | login: new ReplaySubject<boolean>(1) | ||
51 | } | 52 | } |
52 | 53 | ||
53 | translationsObservable: Observable<PluginTranslation> | 54 | translationsObservable: Observable<PluginTranslation> |
diff --git a/client/src/app/login/login.component.html b/client/src/app/login/login.component.html index a935c86c3..599b203ae 100644 --- a/client/src/app/login/login.component.html +++ b/client/src/app/login/login.component.html | |||
@@ -8,7 +8,7 @@ | |||
8 | </div> | 8 | </div> |
9 | 9 | ||
10 | <ng-container *ngIf="!externalAuthError && !isAuthenticatedWithExternalAuth"> | 10 | <ng-container *ngIf="!externalAuthError && !isAuthenticatedWithExternalAuth"> |
11 | <div class="alert alert-info" *ngIf="signupAllowed === false" role="alert"> | 11 | <div class="looking-for-account alert alert-info" *ngIf="signupAllowed === false" role="alert"> |
12 | <h6 class="alert-heading" i18n> | 12 | <h6 class="alert-heading" i18n> |
13 | If you are looking for an account… | 13 | If you are looking for an account… |
14 | </h6> | 14 | </h6> |
diff --git a/client/src/app/login/login.component.ts b/client/src/app/login/login.component.ts index 5d935cb49..fff4b43f6 100644 --- a/client/src/app/login/login.component.ts +++ b/client/src/app/login/login.component.ts | |||
@@ -10,6 +10,7 @@ import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' | |||
10 | import { ActivatedRoute } from '@angular/router' | 10 | import { ActivatedRoute } from '@angular/router' |
11 | import { ServerConfig, RegisteredExternalAuthConfig } from '@shared/models/server/server-config.model' | 11 | import { ServerConfig, RegisteredExternalAuthConfig } from '@shared/models/server/server-config.model' |
12 | import { environment } from 'src/environments/environment' | 12 | import { environment } from 'src/environments/environment' |
13 | import { HooksService } from '@app/core/plugins/hooks.service' | ||
13 | 14 | ||
14 | @Component({ | 15 | @Component({ |
15 | selector: 'my-login', | 16 | selector: 'my-login', |
@@ -40,6 +41,7 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni | |||
40 | private userService: UserService, | 41 | private userService: UserService, |
41 | private redirectService: RedirectService, | 42 | private redirectService: RedirectService, |
42 | private notifier: Notifier, | 43 | private notifier: Notifier, |
44 | private hooks: HooksService, | ||
43 | private i18n: I18n | 45 | private i18n: I18n |
44 | ) { | 46 | ) { |
45 | super() | 47 | super() |
@@ -78,6 +80,8 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni | |||
78 | if (this.usernameInput) { | 80 | if (this.usernameInput) { |
79 | this.usernameInput.nativeElement.focus() | 81 | this.usernameInput.nativeElement.focus() |
80 | } | 82 | } |
83 | |||
84 | this.hooks.runAction('action:login.init', 'login') | ||
81 | } | 85 | } |
82 | 86 | ||
83 | getExternalLogins () { | 87 | getExternalLogins () { |