<template>
  <div class="card app-card">
    <div
      @click="$router.push({name: 'channels.detail', params: {id: urlId}})"
      :class="['ui', 'head-image', {'circular': object.artist.content_category != 'podcast'}, {'padded': object.artist.content_category === 'podcast'}, 'image', {'default-cover': !object.artist.cover}]" v-lazy:background-image="imageUrl">
      <play-button :icon-only="true" :is-playable="true" :button-classes="['ui', 'circular', 'large', 'orange', 'icon', 'button']" :artist="object.artist"></play-button>
    </div>
    <div class="content">
      <strong>
        <router-link class="discrete link" :title="object.artist.name" :to="{name: 'channels.detail', params: {id: urlId}}">
          {{ object.artist.name }}
        </router-link>
      </strong>
      <div class="description">
        <translate class="meta ellipsis" translate-context="Content/Channel/Paragraph"
          translate-plural="%{ count } episodes"
          :translate-n="object.artist.tracks_count"
          :translate-params="{count: object.artist.tracks_count}">
          %{ count } episode
        </translate>
        <tags-list label-classes="tiny" :truncate-size="20" :limit="2" :show-more="false" :tags="object.artist.tags"></tags-list>
      </div>

    </div>
    <div class="extra content">
      <time
        v-translate
        class="meta ellipsis"
        :datetime="object.artist.modification_date"
        :title="updatedTitle">
        {{ object.artist.modification_date | fromNow }}
      </time>
      <play-button
        class="right floated basic icon"
        :dropdown-only="true"
        :is-playable="true"
        :dropdown-icon-classes="['ellipsis', 'horizontal', 'large', 'grey']" :artist="object.artist" :channel="object" :account="object.attributed_to"></play-button>
    </div>
  </div>
</template>

<script>
import PlayButton from '@/components/audio/PlayButton'
import TagsList from "@/components/tags/List"

import {momentFormat} from '@/filters'

export default {
  props: {
    object: {type: Object},
  },
  components: {
    PlayButton,
    TagsList
  },
  computed: {
    imageUrl () {
      let url = '../../assets/audio/default-cover.png'

      if (this.object.artist.cover) {
        url = this.$store.getters['instance/absoluteUrl'](this.object.artist.cover.medium_square_crop)
      } else {
        return null
      }
      return url
    },
    urlId () {
      if (this.object.actor && this.object.actor.is_local) {
        return this.object.actor.preferred_username
      } else if (this.object.actor) {
        return this.object.actor.full_username
      } else {
        return this.object.uuid
      }
    },
    updatedTitle () {
      let d = momentFormat(this.object.artist.modification_date)
      let message = this.$pgettext('*/*/*', 'Updated on %{ date }')
      return this.$gettextInterpolate(message, {date: d})
    }
  }
}
</script>