X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Faccount%2Faccount.model.ts;h=6a3c6451c420fe0bee8690a4e04149b177987d5d;hb=5fcbd89841be29b373c6e4c8eeaa1f27414c8c7d;hp=0bdc76478264fc3743fd249df37e048f2b38e162;hpb=2422c46b27790d94fd29a7092170cee5a1b56008;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/account/account.model.ts b/client/src/app/shared/account/account.model.ts index 0bdc76478..6a3c6451c 100644 --- a/client/src/app/shared/account/account.model.ts +++ b/client/src/app/shared/account/account.model.ts @@ -1,35 +1,14 @@ import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model' -import { Avatar } from '../../../../../shared/models/avatars/avatar.model' -import { getAbsoluteAPIUrl } from '../misc/utils' +import { Actor } from '../actor/actor.model' -export class Account implements ServerAccount { - id: number - uuid: string - url: string - name: string +export class Account extends Actor implements ServerAccount { displayName: string description: string - host: string - followingCount: number - followersCount: number - createdAt: Date - updatedAt: Date - avatar: Avatar - static GET_ACCOUNT_AVATAR_URL (account: Account) { - const absoluteAPIUrl = getAbsoluteAPIUrl() + constructor (hash: ServerAccount) { + super(hash) - if (account && account.avatar) return absoluteAPIUrl + account.avatar.path - - return window.location.origin + '/client/assets/images/default-avatar.png' - } - - static CREATE_BY_STRING (accountName: string, host: string) { - const absoluteAPIUrl = getAbsoluteAPIUrl() - const thisHost = new URL(absoluteAPIUrl).host - - if (host.trim() === thisHost) return accountName - - return accountName + '@' + host + this.displayName = hash.displayName + this.description = hash.description } }