]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/actor/actor.model.ts
Show default avatar on network error for comments
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / actor / actor.model.ts
1 import { Actor as ActorServer } from '../../../../../shared/models/actors/actor.model'
2 import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
3 import { getAbsoluteAPIUrl } from '@app/shared/misc/utils'
4
5 export abstract class Actor implements ActorServer {
6 id: number
7 url: string
8 name: string
9 host: string
10 followingCount: number
11 followersCount: number
12 createdAt: Date | string
13 updatedAt: Date | string
14 avatar: Avatar
15
16 avatarUrl: string
17
18 static GET_ACTOR_AVATAR_URL (actor: { avatar?: { path: string } }) {
19 const absoluteAPIUrl = getAbsoluteAPIUrl()
20
21 if (actor && actor.avatar) return absoluteAPIUrl + actor.avatar.path
22
23 this.GET_DEFAULT_AVATAR_URL()
24 }
25
26 static GET_DEFAULT_AVATAR_URL () {
27 return window.location.origin + '/client/assets/images/default-avatar.png'
28 }
29
30 static CREATE_BY_STRING (accountName: string, host: string, forceHostname = false) {
31 const absoluteAPIUrl = getAbsoluteAPIUrl()
32 const thisHost = new URL(absoluteAPIUrl).host
33
34 if (host.trim() === thisHost && !forceHostname) return accountName
35
36 return accountName + '@' + host
37 }
38
39 protected constructor (hash: ActorServer) {
40 this.id = hash.id
41 this.url = hash.url
42 this.name = hash.name
43 this.host = hash.host
44 this.followingCount = hash.followingCount
45 this.followersCount = hash.followersCount
46 this.createdAt = new Date(hash.createdAt.toString())
47 this.updatedAt = new Date(hash.updatedAt.toString())
48 this.avatar = hash.avatar
49
50 this.updateComputedAttributes()
51 }
52
53 updateAvatar (newAvatar: Avatar) {
54 this.avatar = newAvatar
55
56 this.updateComputedAttributes()
57 }
58
59 private updateComputedAttributes () {
60 this.avatarUrl = Actor.GET_ACTOR_AVATAR_URL(this)
61 }
62 }