]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/comment/video-comment.model.ts
Lazy load all routes
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / comment / video-comment.model.ts
CommitLineData
67ed6552
C
1import { getAbsoluteAPIUrl } from '@app/helpers'
2import { Actor } from '@app/shared/shared-main'
3import { Account as AccountInterface, VideoComment as VideoCommentServerModel } from '@shared/models'
4635f59d
C
4
5export class VideoComment implements VideoCommentServerModel {
6 id: number
7 url: string
8 text: string
9 threadId: number
10 inReplyToCommentId: number
11 videoId: number
12 createdAt: Date | string
13 updatedAt: Date | string
69222afa
JM
14 deletedAt: Date | string
15 isDeleted: boolean
76d36e0b 16 account: AccountInterface
5b0413dd 17 totalRepliesFromVideoAuthor: number
4635f59d 18 totalReplies: number
4635f59d 19 by: string
244b4ae3 20 accountAvatarUrl: string
4635f59d 21
7e73f071
C
22 isLocal: boolean
23
4635f59d
C
24 constructor (hash: VideoCommentServerModel) {
25 this.id = hash.id
26 this.url = hash.url
27 this.text = hash.text
28 this.threadId = hash.threadId
29 this.inReplyToCommentId = hash.inReplyToCommentId
30 this.videoId = hash.videoId
31 this.createdAt = new Date(hash.createdAt.toString())
32 this.updatedAt = new Date(hash.updatedAt.toString())
69222afa
JM
33 this.deletedAt = hash.deletedAt ? new Date(hash.deletedAt.toString()) : null
34 this.isDeleted = hash.isDeleted
4635f59d 35 this.account = hash.account
5b0413dd 36 this.totalRepliesFromVideoAuthor = hash.totalRepliesFromVideoAuthor
4635f59d
C
37 this.totalReplies = hash.totalReplies
38
69222afa
JM
39 if (this.account) {
40 this.by = Actor.CREATE_BY_STRING(this.account.name, this.account.host)
41 this.accountAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.account)
7e73f071 42
69222afa
JM
43 const absoluteAPIUrl = getAbsoluteAPIUrl()
44 const thisHost = new URL(absoluteAPIUrl).host
45 this.isLocal = this.account.host.trim() === thisHost
46 }
4635f59d
C
47 }
48}