diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-main/account/index.ts | 2 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/account/video-avatar-channel.component.html (renamed from client/src/app/shared/shared-main/account/avatar.component.html) | 0 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/account/video-avatar-channel.component.scss (renamed from client/src/app/shared/shared-main/account/avatar.component.scss) | 0 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/account/video-avatar-channel.component.ts (renamed from client/src/app/shared/shared-main/account/avatar.component.ts) | 10 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/shared-main.module.ts | 6 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/users/user-notification.model.ts | 10 | ||||
-rw-r--r-- | client/src/app/shared/shared-main/video/video.model.ts | 4 |
7 files changed, 19 insertions, 13 deletions
diff --git a/client/src/app/shared/shared-main/account/index.ts b/client/src/app/shared/shared-main/account/index.ts index f5b9f3634..61c800e56 100644 --- a/client/src/app/shared/shared-main/account/index.ts +++ b/client/src/app/shared/shared-main/account/index.ts | |||
@@ -2,4 +2,4 @@ export * from './account.model' | |||
2 | export * from './account.service' | 2 | export * from './account.service' |
3 | export * from './actor-avatar-info.component' | 3 | export * from './actor-avatar-info.component' |
4 | export * from './actor.model' | 4 | export * from './actor.model' |
5 | export * from './avatar.component' | 5 | export * from './video-avatar-channel.component' |
diff --git a/client/src/app/shared/shared-main/account/avatar.component.html b/client/src/app/shared/shared-main/account/video-avatar-channel.component.html index 310cc926f..310cc926f 100644 --- a/client/src/app/shared/shared-main/account/avatar.component.html +++ b/client/src/app/shared/shared-main/account/video-avatar-channel.component.html | |||
diff --git a/client/src/app/shared/shared-main/account/avatar.component.scss b/client/src/app/shared/shared-main/account/video-avatar-channel.component.scss index 37709fce6..37709fce6 100644 --- a/client/src/app/shared/shared-main/account/avatar.component.scss +++ b/client/src/app/shared/shared-main/account/video-avatar-channel.component.scss | |||
diff --git a/client/src/app/shared/shared-main/account/avatar.component.ts b/client/src/app/shared/shared-main/account/video-avatar-channel.component.ts index 2967828a0..440e2b522 100644 --- a/client/src/app/shared/shared-main/account/avatar.component.ts +++ b/client/src/app/shared/shared-main/account/video-avatar-channel.component.ts | |||
@@ -2,12 +2,14 @@ import { Component, Input, OnInit } from '@angular/core' | |||
2 | import { Video } from '../video/video.model' | 2 | import { Video } from '../video/video.model' |
3 | 3 | ||
4 | @Component({ | 4 | @Component({ |
5 | selector: 'avatar-channel', | 5 | selector: 'my-video-avatar-channel', |
6 | templateUrl: './avatar.component.html', | 6 | templateUrl: './video-avatar-channel.component.html', |
7 | styleUrls: [ './avatar.component.scss' ] | 7 | styleUrls: [ './video-avatar-channel.component.scss' ] |
8 | }) | 8 | }) |
9 | export class AvatarComponent implements OnInit { | 9 | export class VideoAvatarChannelComponent implements OnInit { |
10 | @Input() video: Video | 10 | @Input() video: Video |
11 | @Input() byAccount: string | ||
12 | |||
11 | @Input() size: 'md' | 'sm' = 'md' | 13 | @Input() size: 'md' | 'sm' = 'md' |
12 | @Input() genericChannel: boolean | 14 | @Input() genericChannel: boolean |
13 | 15 | ||
diff --git a/client/src/app/shared/shared-main/shared-main.module.ts b/client/src/app/shared/shared-main/shared-main.module.ts index be0630395..74bb4559a 100644 --- a/client/src/app/shared/shared-main/shared-main.module.ts +++ b/client/src/app/shared/shared-main/shared-main.module.ts | |||
@@ -14,7 +14,7 @@ import { | |||
14 | NgbTooltipModule | 14 | NgbTooltipModule |
15 | } from '@ng-bootstrap/ng-bootstrap' | 15 | } from '@ng-bootstrap/ng-bootstrap' |
16 | import { SharedGlobalIconModule } from '../shared-icons' | 16 | import { SharedGlobalIconModule } from '../shared-icons' |
17 | import { AccountService, ActorAvatarInfoComponent, AvatarComponent } from './account' | 17 | import { AccountService, ActorAvatarInfoComponent, VideoAvatarChannelComponent } from './account' |
18 | import { | 18 | import { |
19 | BytesPipe, | 19 | BytesPipe, |
20 | DurationFormatterPipe, | 20 | DurationFormatterPipe, |
@@ -57,7 +57,7 @@ import { VideoChannelService } from './video-channel' | |||
57 | ], | 57 | ], |
58 | 58 | ||
59 | declarations: [ | 59 | declarations: [ |
60 | AvatarComponent, | 60 | VideoAvatarChannelComponent, |
61 | ActorAvatarInfoComponent, | 61 | ActorAvatarInfoComponent, |
62 | 62 | ||
63 | FromNowPipe, | 63 | FromNowPipe, |
@@ -106,7 +106,7 @@ import { VideoChannelService } from './video-channel' | |||
106 | 106 | ||
107 | PrimeSharedModule, | 107 | PrimeSharedModule, |
108 | 108 | ||
109 | AvatarComponent, | 109 | VideoAvatarChannelComponent, |
110 | ActorAvatarInfoComponent, | 110 | ActorAvatarInfoComponent, |
111 | 111 | ||
112 | FromNowPipe, | 112 | FromNowPipe, |
diff --git a/client/src/app/shared/shared-main/users/user-notification.model.ts b/client/src/app/shared/shared-main/users/user-notification.model.ts index b1df4a584..1211995fd 100644 --- a/client/src/app/shared/shared-main/users/user-notification.model.ts +++ b/client/src/app/shared/shared-main/users/user-notification.model.ts | |||
@@ -1,14 +1,16 @@ | |||
1 | import { AuthUser } from '@app/core' | ||
2 | import { Account } from '@app/shared/shared-main/account/account.model' | ||
3 | import { Actor } from '@app/shared/shared-main/account/actor.model' | ||
4 | import { VideoChannel } from '@app/shared/shared-main/video-channel/video-channel.model' | ||
1 | import { | 5 | import { |
2 | AbuseState, | 6 | AbuseState, |
3 | ActorInfo, | 7 | ActorInfo, |
4 | FollowState, | 8 | FollowState, |
5 | UserNotification as UserNotificationServer, | 9 | UserNotification as UserNotificationServer, |
6 | UserNotificationType, | 10 | UserNotificationType, |
7 | VideoInfo, | 11 | UserRight, |
8 | UserRight | 12 | VideoInfo |
9 | } from '@shared/models' | 13 | } from '@shared/models' |
10 | import { Account, Actor, VideoChannel } from '@app/shared/shared-main' | ||
11 | import { AuthUser } from '@app/core' | ||
12 | 14 | ||
13 | export class UserNotification implements UserNotificationServer { | 15 | export class UserNotification implements UserNotificationServer { |
14 | id: number | 16 | id: number |
diff --git a/client/src/app/shared/shared-main/video/video.model.ts b/client/src/app/shared/shared-main/video/video.model.ts index 8e0e68020..04e7bd717 100644 --- a/client/src/app/shared/shared-main/video/video.model.ts +++ b/client/src/app/shared/shared-main/video/video.model.ts | |||
@@ -1,6 +1,9 @@ | |||
1 | import { AuthUser } from '@app/core' | 1 | import { AuthUser } from '@app/core' |
2 | import { User } from '@app/core/users/user.model' | 2 | import { User } from '@app/core/users/user.model' |
3 | import { durationToString, getAbsoluteAPIUrl, getAbsoluteEmbedUrl } from '@app/helpers' | 3 | import { durationToString, getAbsoluteAPIUrl, getAbsoluteEmbedUrl } from '@app/helpers' |
4 | import { Account } from '@app/shared/shared-main/account/account.model' | ||
5 | import { Actor } from '@app/shared/shared-main/account/actor.model' | ||
6 | import { VideoChannel } from '@app/shared/shared-main/video-channel/video-channel.model' | ||
4 | import { peertubeTranslate } from '@shared/core-utils/i18n' | 7 | import { peertubeTranslate } from '@shared/core-utils/i18n' |
5 | import { | 8 | import { |
6 | Avatar, | 9 | Avatar, |
@@ -12,7 +15,6 @@ import { | |||
12 | VideoScheduleUpdate, | 15 | VideoScheduleUpdate, |
13 | VideoState | 16 | VideoState |
14 | } from '@shared/models' | 17 | } from '@shared/models' |
15 | import { Account, Actor, VideoChannel } from '@app/shared/shared-main' | ||
16 | 18 | ||
17 | export class Video implements VideoServerModel { | 19 | export class Video implements VideoServerModel { |
18 | byVideoChannel: string | 20 | byVideoChannel: string |