]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-actor-image/actor-avatar.component.ts
Optimize feeds query
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-actor-image / actor-avatar.component.ts
CommitLineData
5b0ec7cd 1import { Component, Input, OnChanges } from '@angular/core'
746018f6
C
2import { VideoChannel } from '../shared-main'
3import { Account } from '../shared-main/account/account.model'
4
5type ActorInput = {
6 name: string
d0800f76 7 avatars: { width: number, url?: string, path: string }[]
746018f6
C
8 url: string
9}
10
d0800f76 11export type ActorAvatarSize = '18' | '25' | '28' | '32' | '34' | '35' | '36' | '40' | '48' | '75' | '80' | '100' | '120'
06ec4bdd 12
746018f6
C
13@Component({
14 selector: 'my-actor-avatar',
15 styleUrls: [ './actor-avatar.component.scss' ],
16 templateUrl: './actor-avatar.component.html'
17})
5b0ec7cd 18export class ActorAvatarComponent implements OnChanges {
9df52d66
C
19 private _title: string
20
746018f6
C
21 @Input() account: ActorInput
22 @Input() channel: ActorInput
23
0ea2f79d 24 @Input() previewImage: string
746018f6 25
4428ad54 26 @Input() size: ActorAvatarSize
746018f6
C
27
28 // Use an external link
29 @Input() href: string
30 // Use routerLink
31 @Input() internalHref: string | any[]
32
33 @Input() set title (value) {
34 this._title = value
35 }
36
746018f6
C
37 get title () {
38 if (this._title) return this._title
39 if (this.account) return $localize`${this.account.name} (account page)`
40 if (this.channel) return $localize`${this.channel.name} (channel page)`
41
42 return ''
43 }
44
5b0ec7cd
C
45 classes: string[] = []
46
746018f6
C
47 get alt () {
48 if (this.account) return $localize`Account avatar`
49 if (this.channel) return $localize`Channel avatar`
50
51 return ''
52 }
53
746018f6 54 get defaultAvatarUrl () {
4428ad54
C
55 if (this.account) return Account.GET_DEFAULT_AVATAR_URL(this.getSizeNumber())
56 if (this.channel) return VideoChannel.GET_DEFAULT_AVATAR_URL(this.getSizeNumber())
746018f6
C
57 }
58
59 get avatarUrl () {
4428ad54
C
60 if (this.account) return Account.GET_ACTOR_AVATAR_URL(this.account, this.getSizeNumber())
61 if (this.channel) return VideoChannel.GET_ACTOR_AVATAR_URL(this.channel, this.getSizeNumber())
746018f6
C
62
63 return ''
64 }
65
66 get initial () {
67 const name = this.account?.name
68 if (!name) return ''
69
70 return name.slice(0, 1)
71 }
72
5b0ec7cd
C
73 ngOnChanges () {
74 this.classes = [ 'avatar' ]
9df52d66 75
5b0ec7cd 76 if (this.size) this.classes.push(`avatar-${this.size}`)
9df52d66 77
5b0ec7cd
C
78 if (this.channel) this.classes.push('channel')
79 else this.classes.push('account')
9df52d66 80
5b0ec7cd
C
81 if (!this.avatarUrl && this.initial) {
82 this.classes.push('initial')
83 this.classes.push(this.getColorTheme())
9df52d66 84 }
9df52d66
C
85 }
86
746018f6
C
87 hasActor () {
88 return !!this.account || !!this.channel
89 }
90
4428ad54
C
91 private getSizeNumber () {
92 if (this.size) return +this.size
93
94 return undefined
95 }
96
746018f6 97 private getColorTheme () {
f41efa52
C
98 const initialLowercase = this.initial.toLowerCase()
99
746018f6
C
100 // Keep consistency with CSS
101 const themes = {
f41efa52 102 '0123456789abc': 'blue',
746018f6
C
103 def: 'green',
104 ghi: 'purple',
105 jkl: 'gray',
106 mno: 'yellow',
107 pqr: 'orange',
1fd61899 108 stvu: 'red',
746018f6
C
109 wxyz: 'dark-blue'
110 }
111
112 const theme = Object.keys(themes)
f41efa52 113 .find(chars => chars.includes(initialLowercase))
746018f6
C
114
115 return themes[theme]
116 }
117}