Skip to content
Snippets Groups Projects
Artists.vue 5.09 KiB
Newer Older
  • Learn to ignore specific revisions
  • Eliot Berriot's avatar
    Eliot Berriot committed
    <template>
    
      <main v-title="labels.title">
        <section class="ui vertical stripe segment">
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          <h2 class="ui header">
    
            <translate>Browsing artists</translate>
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          </h2>
    
          <div :class="['ui', {'loading': isLoading}, 'form']">
            <div class="fields">
              <div class="field">
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                <label>
    
                  <translate>Search</translate>
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                </label>
    
                <input type="text" name="search" v-model="query" :placeholder="labels.searchPlaceholder"/>
    
                <label><translate>Ordering</translate></label>
    
                <select class="ui dropdown" v-model="ordering">
                  <option v-for="option in orderingOptions" :value="option[0]">
    
                    {{ sharedLabels.filters[option[1]] }}
    
                  </option>
                </select>
              </div>
              <div class="field">
    
                <label><translate>Ordering direction</translate></label>
    
                <select class="ui dropdown" v-model="orderingDirection">
    
    Eliot Berriot's avatar
    Eliot Berriot committed
                  <option value="+"><translate>Ascending</translate></option>
                  <option value="-"><translate>Descending</translate></option>
    
                </select>
              </div>
              <div class="field">
    
                <label><translate>Results per page</translate></label>
    
                <select class="ui dropdown" v-model="paginateBy">
                  <option :value="parseInt(12)">12</option>
                  <option :value="parseInt(25)">25</option>
                  <option :value="parseInt(50)">50</option>
                </select>
              </div>
            </div>
          </div>
          <div class="ui hidden divider"></div>
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          <div
            v-if="result"
            v-masonry
            transition-duration="0"
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            percent-position="true"
    
            stagger="0">
            <div v-if="result.results.length > 0" class="ui cards">
              <artist-card
                v-masonry-tile
                v-for="artist in result.results"
                :key="artist.id"
                :artist="artist"></artist-card>
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            </div>
          </div>
          <div class="ui center aligned basic segment">
            <pagination
    
              v-if="result && result.count > paginateBy"
    
    Eliot Berriot's avatar
    Eliot Berriot committed
              @page-changed="selectPage"
              :current="page"
              :paginate-by="paginateBy"
              :total="result.count"
              ></pagination>
          </div>
    
    Eliot Berriot's avatar
    Eliot Berriot committed
    </template>
    
    <script>
    
    import _ from "@/lodash"
    
    import OrderingMixin from "@/components/mixins/Ordering"
    import PaginationMixin from "@/components/mixins/Pagination"
    import TranslationsMixin from "@/components/mixins/Translations"
    import ArtistCard from "@/components/audio/artist/Card"
    import Pagination from "@/components/Pagination"
    
    Eliot Berriot's avatar
    Eliot Berriot committed
    
    export default {
    
      mixins: [OrderingMixin, PaginationMixin, TranslationsMixin],
    
        defaultQuery: { type: String, required: false, default: "" }
    
    Eliot Berriot's avatar
    Eliot Berriot committed
      components: {
        ArtistCard,
        Pagination
      },
    
      data() {
        let defaultOrdering = this.getOrderingFromString(
          this.defaultOrdering || "-creation_date"
        )
    
    Eliot Berriot's avatar
    Eliot Berriot committed
        return {
          isLoading: true,
          result: null,
    
          page: parseInt(this.defaultPage),
          query: this.defaultQuery,
    
          paginateBy: parseInt(this.defaultPaginateBy || 12),
    
          orderingDirection: defaultOrdering.direction || "+",
    
          ordering: defaultOrdering.field,
    
          orderingOptions: [["creation_date", "creation_date"], ["name", "name"]]
    
    Eliot Berriot's avatar
    Eliot Berriot committed
        this.fetchData()
      },
    
      mounted() {
        $(".ui.dropdown").dropdown()
    
    Eliot Berriot's avatar
    Eliot Berriot committed
      computed: {
    
    Allan Nordhøy's avatar
    Allan Nordhøy committed
          let searchPlaceholder = this.$gettext("Enter artist name…")
    
          let title = this.$gettext("Artists")
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          return {
            searchPlaceholder,
            title
          }
        }
      },
    
    Eliot Berriot's avatar
    Eliot Berriot committed
      methods: {
    
        updateQueryString: _.debounce(function() {
    
          this.$router.replace({
            query: {
              query: this.query,
              page: this.page,
              paginateBy: this.paginateBy,
    
              ordering: this.getOrderingAsString()
    
        }, 500),
    
        fetchData: _.debounce(function() {
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          var self = this
          this.isLoading = true
          let url = FETCH_URL
          let params = {
            page: this.page,
            page_size: this.paginateBy,
    
            name__icontains: this.query,
    
            ordering: this.getOrderingAsString(),
    
          logger.default.debug("Fetching artists")
          axios.get(url, { params: params }).then(response => {
    
    Eliot Berriot's avatar
    Eliot Berriot committed
            self.result = response.data
            self.isLoading = false
          })
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          this.page = page
        }
      },
      watch: {
    
          this.updateQueryString()
          this.fetchData()
        },
    
          this.updateQueryString()
          this.fetchData()
        },
    
          this.updateQueryString()
          this.fetchData()
        },
    
          this.updateQueryString()
          this.fetchData()
        },
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          this.fetchData()
        }
      }
    }
    </script>
    
    <!-- Add "scoped" attribute to limit CSS to this component only -->
    <style scoped>
    </style>