1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
import { Component, Input, OnChanges, OnInit } from '@angular/core'
import { VideoChannel } from '../shared-main'
import { Account } from '../shared-main/account/account.model'
import { objectKeysTyped } from '@shared/core-utils'
type ActorInput = {
name: string
avatars: { width: number, url?: string, path: string }[]
url: string
}
export type ActorAvatarSize = '18' | '25' | '28' | '32' | '34' | '35' | '36' | '40' | '48' | '75' | '80' | '100' | '120'
@Component({
selector: 'my-actor-avatar',
styleUrls: [ './actor-avatar.component.scss' ],
templateUrl: './actor-avatar.component.html'
})
export class ActorAvatarComponent implements OnInit, OnChanges {
private _title: string
@Input() actor: ActorInput
@Input() actorType: 'channel' | 'account' | 'unlogged'
@Input() previewImage: string
@Input() size: ActorAvatarSize
// Use an external link
@Input() href: string
// Use routerLink
@Input() internalHref: string | any[]
@Input() set title (value) {
this._title = value
}
get title () {
if (this._title) return this._title
if (this.isAccount()) return $localize`${this.actor.name} (account page)`
if (this.isChannel()) return $localize`${this.actor.name} (channel page)`
return ''
}
classes: string[] = []
defaultAvatarUrl: string
avatarUrl: string
ngOnInit () {
this.buildDefaultAvatarUrl()
this.buildAvatarUrl()
this.buildClasses()
}
ngOnChanges () {
this.buildAvatarUrl()
this.buildClasses()
}
private buildClasses () {
this.classes = [ 'avatar' ]
if (this.size) {
this.classes.push(`avatar-${this.size}`)
}
if (this.isChannel()) {
this.classes.push('channel')
} else {
this.classes.push('account')
}
// No avatar, use actor name initial
if (this.displayActorInitial()) {
this.classes.push('initial')
this.classes.push(this.getColorTheme())
}
}
private buildDefaultAvatarUrl () {
this.defaultAvatarUrl = this.isChannel()
? VideoChannel.GET_DEFAULT_AVATAR_URL(this.getSizeNumber())
: Account.GET_DEFAULT_AVATAR_URL(this.getSizeNumber())
}
private buildAvatarUrl () {
if (!this.actor) {
this.avatarUrl = ''
return
}
if (this.isAccount()) {
this.avatarUrl = Account.GET_ACTOR_AVATAR_URL(this.actor, this.getSizeNumber())
return
}
if (this.isChannel()) {
this.avatarUrl = VideoChannel.GET_ACTOR_AVATAR_URL(this.actor, this.getSizeNumber())
return
}
this.avatarUrl = ''
}
displayImage () {
if (this.actorType === 'unlogged') return true
if (this.previewImage) return true
return !!(this.actor && this.avatarUrl)
}
displayActorInitial () {
return !this.displayImage() && this.actor && !this.avatarUrl
}
displayPlaceholder () {
return this.actorType !== 'unlogged' && !this.actor
}
getActorInitial () {
const name = this.actor?.name
if (!name) return ''
return name.slice(0, 1)
}
private isAccount () {
return this.actorType === 'account'
}
private isChannel () {
return this.actorType === 'channel'
}
private getSizeNumber () {
if (this.size) return +this.size
return undefined
}
private getColorTheme () {
const initialLowercase = this.getActorInitial().toLowerCase()
// Keep consistency with CSS
const themes = {
'0123456789abc': 'blue',
'def': 'green',
'ghi': 'purple',
'jkl': 'gray',
'mno': 'yellow',
'pqr': 'orange',
'stvu': 'red',
'wxyz': 'dark-blue'
}
const theme = objectKeysTyped(themes)
.find(chars => chars.includes(initialLowercase))
return themes[theme] || 'blue'
}
}
|