173 lines
5.5 KiB
Vue
173 lines
5.5 KiB
Vue
<template>
|
|
<main v-title="labels.playlists">
|
|
<section class="ui vertical stripe segment">
|
|
<h2 class="ui header"><translate :translate-context="'Content/Playlist/Title'">Browsing playlists</translate></h2>
|
|
<div :class="['ui', {'loading': isLoading}, 'form']">
|
|
<template v-if="$store.state.auth.authenticated">
|
|
<button
|
|
@click="$store.commit('playlists/chooseTrack', null)"
|
|
class="ui basic green button"><translate :translate-context="'Content/Playlist/Button.Label/Verb'">Manage your playlists</translate></button>
|
|
<div class="ui hidden divider"></div>
|
|
</template>
|
|
<div class="fields">
|
|
<div class="field">
|
|
<label><translate :translate-context="'Content/*/Form.Label/Short, Noun'">Search</translate></label>
|
|
<input type="text" name="search" v-model="query" :placeholder="labels.searchPlaceholder"/>
|
|
</div>
|
|
<div class="field">
|
|
<label><translate :translate-context="'Content/*/Dropdown.Label/Short, Noun'">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 :translate-context="'Content/*/Dropdown.Label/Short, Noun'">Order</translate></label>
|
|
<select class="ui dropdown" v-model="orderingDirection">
|
|
<option value="+"><translate :translate-context="'Content/*/Dropdown/Short'">Ascending</translate></option>
|
|
<option value="-"><translate :translate-context="'Content/*/Dropdown/Short'">Descending</translate></option>
|
|
</select>
|
|
</div>
|
|
<div class="field">
|
|
<label><translate :translate-context="'Content/*/Dropdown.Label/Short, Noun'">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>
|
|
<playlist-card-list v-if="result" :playlists="result.results"></playlist-card-list>
|
|
<div class="ui center aligned basic segment">
|
|
<pagination
|
|
v-if="result && result.results.length > 0"
|
|
@page-changed="selectPage"
|
|
:current="page"
|
|
:paginate-by="paginateBy"
|
|
:total="result.count"
|
|
></pagination>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import axios from "axios"
|
|
import _ from "@/lodash"
|
|
import $ from "jquery"
|
|
|
|
import OrderingMixin from "@/components/mixins/Ordering"
|
|
import PaginationMixin from "@/components/mixins/Pagination"
|
|
import TranslationsMixin from "@/components/mixins/Translations"
|
|
import PlaylistCardList from "@/components/playlists/CardList"
|
|
import Pagination from "@/components/Pagination"
|
|
|
|
const FETCH_URL = "playlists/"
|
|
|
|
export default {
|
|
mixins: [OrderingMixin, PaginationMixin, TranslationsMixin],
|
|
props: {
|
|
defaultQuery: { type: String, required: false, default: "" }
|
|
},
|
|
components: {
|
|
PlaylistCardList,
|
|
Pagination
|
|
},
|
|
data() {
|
|
let defaultOrdering = this.getOrderingFromString(
|
|
this.defaultOrdering || "-creation_date"
|
|
)
|
|
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"],
|
|
["modification_date", "modification_date"],
|
|
["name", "name"]
|
|
]
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
},
|
|
mounted() {
|
|
$(".ui.dropdown").dropdown()
|
|
},
|
|
computed: {
|
|
labels() {
|
|
let playlists = this.$pgettext('Head/Playlist/Title/Noun', 'Playlists')
|
|
let searchPlaceholder = this.$pgettext('Content/Playlist/Placeholder/Call to action', 'Enter playlist name…')
|
|
return {
|
|
playlists,
|
|
searchPlaceholder
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
updateQueryString: _.debounce(function() {
|
|
this.$router.replace({
|
|
query: {
|
|
query: this.query,
|
|
page: this.page,
|
|
paginateBy: this.paginateBy,
|
|
ordering: this.getOrderingAsString()
|
|
}
|
|
})
|
|
}, 250),
|
|
fetchData: _.debounce(function() {
|
|
var self = this
|
|
this.isLoading = true
|
|
let url = FETCH_URL
|
|
let params = {
|
|
page: this.page,
|
|
page_size: this.paginateBy,
|
|
q: this.query,
|
|
ordering: this.getOrderingAsString(),
|
|
playable: true
|
|
}
|
|
axios.get(url, { params: params }).then(response => {
|
|
self.result = response.data
|
|
self.isLoading = false
|
|
})
|
|
}, 500),
|
|
selectPage: function(page) {
|
|
this.page = page
|
|
}
|
|
},
|
|
watch: {
|
|
page() {
|
|
this.updateQueryString()
|
|
this.fetchData()
|
|
},
|
|
paginateBy() {
|
|
this.updateQueryString()
|
|
this.fetchData()
|
|
},
|
|
ordering() {
|
|
this.updateQueryString()
|
|
this.fetchData()
|
|
},
|
|
orderingDirection() {
|
|
this.updateQueryString()
|
|
this.fetchData()
|
|
},
|
|
query() {
|
|
this.updateQueryString()
|
|
this.fetchData()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped>
|
|
</style>
|