Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
7956 commits behind the upstream repository.
List.vue 2.51 KiB
<template>
  <div class="main pusher">
    <div class="ui vertical center aligned stripe segment">
      <div :class="['ui', {'active': isLoading}, 'inverted', 'dimmer']">
        <div class="ui text loader">Loading your favorites...</div>
      </div>
      <h2 v-if="results" class="ui center aligned icon header">
        <i class="circular inverted heart pink icon"></i>
        {{ favoriteTracks.count }} favorites
      </h2>
      <radio-button type="favorites"></radio-button>

    </div>
    <div class="ui vertical stripe segment">
      <track-table v-if="results" :tracks="results.results"></track-table>
      <div class="ui center aligned basic segment">
        <pagination
          v-if="results && results.count > 0"
          @page-changed="selectPage"
          :current="page"
          :total="results.count"
          ></pagination>
      </div>
    </div>
  </div>
</template>

<script>
import Vue from 'vue'
import logger from '@/logging'
import config from '@/config'
import favoriteTracks from '@/favorites/tracks'
import TrackTable from '@/components/audio/track/Table'
import RadioButton from '@/components/radios/Button'
import Pagination from '@/components/Pagination'

const FAVORITES_URL = config.API_URL + 'tracks/'

export default {
  components: {
    TrackTable,
    RadioButton,
    Pagination
  },
  data () {
    return {
      results: null,
      isLoading: false,
      nextLink: null,
      previousLink: null,
      page: 1,
      favoriteTracks
    }
  },
  created () {
    this.fetchFavorites(FAVORITES_URL)
  },
  methods: {
    fetchFavorites (url) {
      var self = this
      this.isLoading = true
      let params = {
        favorites: 'true',
        page: this.page
      }
      logger.default.time('Loading user favorites')
      this.$http.get(url, {params: params}).then((response) => {
        self.results = response.data
        self.nextLink = response.data.next
        self.previousLink = response.data.previous
        Vue.set(favoriteTracks, 'count', response.data.count)
        favoriteTracks.count = response.data.count
        self.results.results.forEach((track) => {
          Vue.set(favoriteTracks.objects, track.id, true)
        })
        logger.default.timeEnd('Loading user favorites')
        self.isLoading = false
      })
    },
    selectPage: function (page) {
      this.page = page
    }
  },
  watch: {
    page: function () {
      this.fetchFavorites(FAVORITES_URL)
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>