aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-16 22:13:07 +0100
committerRigel Kent <sendmemail@rigelk.eu>2019-12-16 22:13:07 +0100
commita0dedc02ca870a31298eb35d5105a1ebc34dbb4a (patch)
treeca4db4ff9aa0576e22cb3db853a3a4643f9a12b6 /client/src/app/+video-channels
parent2de7f588eb7185525cc8687872fed443a24fd27b (diff)
downloadPeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.tar.gz
PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.tar.zst
PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.zip
(consistency) channel nameWithHost copy button, comment avatar link
Diffstat (limited to 'client/src/app/+video-channels')
-rw-r--r--client/src/app/+video-channels/video-channels.component.html8
-rw-r--r--client/src/app/+video-channels/video-channels.component.scss6
-rw-r--r--client/src/app/+video-channels/video-channels.component.ts7
3 files changed, 19 insertions, 2 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.html b/client/src/app/+video-channels/video-channels.component.html
index 600b7a365..f8b7fa583 100644
--- a/client/src/app/+video-channels/video-channels.component.html
+++ b/client/src/app/+video-channels/video-channels.component.html
@@ -7,7 +7,13 @@
7 <div class="actor-info"> 7 <div class="actor-info">
8 <div class="actor-names"> 8 <div class="actor-names">
9 <div class="actor-display-name">{{ videoChannel.displayName }}</div> 9 <div class="actor-display-name">{{ videoChannel.displayName }}</div>
10 <div class="actor-name">{{ videoChannel.nameWithHost }}</div> 10 <div class="actor-name">{{ videoChannel.nameWithHost }}
11 <button ngxClipboard [cbContent]="videoChannel.nameWithHost" (click)="activateCopiedMessage()"
12 class="btn btn-outline-secondary btn-sm copy-button"
13 >
14 <span class="glyphicon glyphicon-copy"></span>
15 </button>
16 </div>
11 17
12 <my-subscribe-button #subscribeButton [videoChannel]="videoChannel"></my-subscribe-button> 18 <my-subscribe-button #subscribeButton [videoChannel]="videoChannel"></my-subscribe-button>
13 </div> 19 </div>
diff --git a/client/src/app/+video-channels/video-channels.component.scss b/client/src/app/+video-channels/video-channels.component.scss
index 711b1839d..d29575027 100644
--- a/client/src/app/+video-channels/video-channels.component.scss
+++ b/client/src/app/+video-channels/video-channels.component.scss
@@ -10,5 +10,11 @@
10 10
11 .actor-name { 11 .actor-name {
12 flex-grow: 1; 12 flex-grow: 1;
13
14 .copy-button {
15 border: none;
16 padding: 5px;
17 margin-top: -2px;
18 }
13 } 19 }
14} \ No newline at end of file 20} \ No newline at end of file
diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts
index d2975b67c..5ef46c58a 100644
--- a/client/src/app/+video-channels/video-channels.component.ts
+++ b/client/src/app/+video-channels/video-channels.component.ts
@@ -5,7 +5,7 @@ import { VideoChannelService } from '@app/shared/video-channel/video-channel.ser
5import { RestExtractor } from '@app/shared' 5import { RestExtractor } from '@app/shared'
6import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators' 6import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators'
7import { Subscription } from 'rxjs' 7import { Subscription } from 'rxjs'
8import { AuthService } from '@app/core' 8import { AuthService, Notifier } from '@app/core'
9import { Hotkey, HotkeysService } from 'angular2-hotkeys' 9import { Hotkey, HotkeysService } from 'angular2-hotkeys'
10import { SubscribeButtonComponent } from '@app/shared/user-subscription/subscribe-button.component' 10import { SubscribeButtonComponent } from '@app/shared/user-subscription/subscribe-button.component'
11import { I18n } from '@ngx-translate/i18n-polyfill' 11import { I18n } from '@ngx-translate/i18n-polyfill'
@@ -25,6 +25,7 @@ export class VideoChannelsComponent implements OnInit, OnDestroy {
25 constructor ( 25 constructor (
26 private i18n: I18n, 26 private i18n: I18n,
27 private route: ActivatedRoute, 27 private route: ActivatedRoute,
28 private notifier: Notifier,
28 private authService: AuthService, 29 private authService: AuthService,
29 private videoChannelService: VideoChannelService, 30 private videoChannelService: VideoChannelService,
30 private restExtractor: RestExtractor, 31 private restExtractor: RestExtractor,
@@ -62,4 +63,8 @@ export class VideoChannelsComponent implements OnInit, OnDestroy {
62 isUserLoggedIn () { 63 isUserLoggedIn () {
63 return this.authService.isLoggedIn() 64 return this.authService.isLoggedIn()
64 } 65 }
66
67 activateCopiedMessage () {
68 this.notifier.success(this.i18n('Username copied'))
69 }
65} 70}