280 lines
8.5 KiB
Vue
280 lines
8.5 KiB
Vue
<script setup lang="ts">
|
|
import type { SmartSearchProps } from '~/composables/navigation/useSmartSearch'
|
|
import type { OrderingProps } from '~/composables/navigation/useOrdering'
|
|
import type { RouteRecordName } from 'vue-router'
|
|
import type { OrderingField } from '~/store/ui'
|
|
|
|
import { ref, computed, watch } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import axios from 'axios'
|
|
|
|
import useSharedLabels from '~/composables/locale/useSharedLabels'
|
|
import ActionTable from '~/components/common/ActionTable.vue'
|
|
|
|
import useSmartSearch from '~/composables/navigation/useSmartSearch'
|
|
import useOrdering from '~/composables/navigation/useOrdering'
|
|
import useErrorHandler from '~/composables/useErrorHandler'
|
|
import usePage from '~/composables/navigation/usePage'
|
|
|
|
import Layout from '~/components/ui/Layout.vue'
|
|
import Spacer from '~/components/ui/Spacer.vue'
|
|
import Input from '~/components/ui/Input.vue'
|
|
import Link from '~/components/ui/Link.vue'
|
|
import Loader from '~/components/ui/Loader.vue'
|
|
import Pagination from '~/components/ui/Pagination.vue'
|
|
|
|
interface Props extends SmartSearchProps, OrderingProps {
|
|
filters?: object
|
|
|
|
// TODO(wvffle): Remove after https://github.com/vuejs/core/pull/4512 is merged
|
|
orderingConfigName?: RouteRecordName
|
|
defaultQuery?: string
|
|
updateUrl?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
defaultQuery: '',
|
|
updateUrl: false,
|
|
filters: () => ({}),
|
|
orderingConfigName: undefined
|
|
})
|
|
|
|
const search = ref()
|
|
|
|
const page = usePage()
|
|
type ResponseType = { count: number, results: any[] }
|
|
const result = ref<null | ResponseType>(null)
|
|
|
|
const { onSearch, query, addSearchToken } = useSmartSearch(props)
|
|
const { onOrderingUpdate, orderingString, paginateBy, ordering, orderingDirection } = useOrdering(props)
|
|
|
|
const orderingOptions: [OrderingField, keyof typeof sharedLabels.filters][] = [
|
|
['creation_date', 'creation_date']
|
|
]
|
|
|
|
const { t } = useI18n()
|
|
const actionFilters = computed(() => ({ q: query.value, ...props.filters }))
|
|
const actions = computed(() => [{
|
|
name: 'delete',
|
|
label: t('components.manage.library.TracksTable.action.delete.label'),
|
|
confirmationMessage: t('components.manage.library.TracksTable.action.delete.warning'),
|
|
isDangerous: true,
|
|
allowAll: false,
|
|
confirmColor: 'danger'
|
|
} as const ])
|
|
|
|
const isLoading = ref(false)
|
|
const fetchData = async () => {
|
|
isLoading.value = true
|
|
const params = {
|
|
page: page.value,
|
|
page_size: paginateBy.value,
|
|
q: query.value,
|
|
ordering: orderingString.value,
|
|
...props.filters
|
|
}
|
|
|
|
try {
|
|
const response = await axios.get('/manage/library/tracks/', {
|
|
params
|
|
})
|
|
|
|
result.value = response.data
|
|
} catch (error) {
|
|
useErrorHandler(error as Error)
|
|
result.value = null
|
|
} finally {
|
|
isLoading.value = false
|
|
}
|
|
}
|
|
|
|
onSearch(() => (page.value = 1))
|
|
watch(page, fetchData)
|
|
onOrderingUpdate(fetchData)
|
|
fetchData()
|
|
|
|
const sharedLabels = useSharedLabels()
|
|
const labels = computed(() => ({
|
|
searchPlaceholder: t('components.manage.library.TracksTable.placeholder.search')
|
|
}))
|
|
</script>
|
|
|
|
<template>
|
|
<div class="ui inline form">
|
|
<div class="fields">
|
|
<div class="ui six wide field">
|
|
<form @submit.prevent="query = search.value">
|
|
<Input
|
|
id="tracks-search"
|
|
ref="search"
|
|
v-model="query"
|
|
name="search"
|
|
search
|
|
:label="t('components.manage.library.TracksTable.label.search')"
|
|
:placeholder="labels.searchPlaceholder"
|
|
/>
|
|
</form>
|
|
</div>
|
|
<Spacer :size="16" />
|
|
<Layout flex>
|
|
<Spacer grow />
|
|
<div class="field">
|
|
<label for="tracks-ordering">{{ t('components.manage.library.TracksTable.ordering.label') }}</label>
|
|
<select
|
|
id="tracks-ordering"
|
|
v-model="ordering"
|
|
class="ui dropdown"
|
|
>
|
|
<option
|
|
v-for="(option, key) in orderingOptions"
|
|
:key="key"
|
|
:value="option[0]"
|
|
>
|
|
{{ sharedLabels.filters[option[1]] }}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<div class="field">
|
|
<label for="tracks-ordering-direction">{{ t('components.manage.library.TracksTable.ordering.direction.label') }}</label>
|
|
<select
|
|
id="tracks-ordering-direction"
|
|
v-model="orderingDirection"
|
|
class="ui dropdown"
|
|
>
|
|
<option value="+">
|
|
{{ t('components.manage.library.TracksTable.ordering.direction.ascending') }}
|
|
</option>
|
|
<option value="-">
|
|
{{ t('components.manage.library.TracksTable.ordering.direction.descending') }}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</Layout>
|
|
</div>
|
|
</div>
|
|
<Loader v-if="isLoading" />
|
|
<action-table
|
|
v-if="result"
|
|
:objects-data="result"
|
|
:actions="actions"
|
|
action-url="manage/library/tracks/action/"
|
|
:filters="actionFilters"
|
|
@action-launched="fetchData"
|
|
>
|
|
<template #header-cells>
|
|
<th>
|
|
{{ t('components.manage.library.TracksTable.table.track.header.title') }}
|
|
</th>
|
|
<th>
|
|
{{ t('components.manage.library.TracksTable.table.track.header.album') }}
|
|
</th>
|
|
<th>
|
|
{{ t('components.manage.library.TracksTable.table.track.header.artist') }}
|
|
</th>
|
|
<th>
|
|
{{ t('components.manage.library.TracksTable.table.track.header.domain') }}
|
|
</th>
|
|
<th>
|
|
{{ t('components.manage.library.TracksTable.table.track.header.license') }}
|
|
</th>
|
|
<th>
|
|
{{ t('components.manage.library.TracksTable.table.track.header.creationDate') }}
|
|
</th>
|
|
</template>
|
|
<template
|
|
#row-cells="scope"
|
|
>
|
|
<td>
|
|
<router-link :to="{name: 'manage.library.tracks.detail', params: {id: scope.obj.id }}">
|
|
{{ scope.obj.title }}
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
<template v-if="scope.obj.album">
|
|
<Link
|
|
solid
|
|
ghost
|
|
square-small
|
|
icon="bi-wrench"
|
|
:to="{name: 'manage.library.albums.detail', params: {id: scope.obj.album.id }}"
|
|
/>
|
|
<a
|
|
href=""
|
|
class="discrete link"
|
|
:title="scope.obj.album.title"
|
|
@click.prevent="addSearchToken('album_id', scope.obj.album.id)"
|
|
>{{ scope.obj.album.title }}</a>
|
|
</template>
|
|
</td>
|
|
<td>
|
|
<Link
|
|
solid
|
|
ghost
|
|
square-small
|
|
icon="bi-wrench"
|
|
:to="{name: 'manage.library.artists.detail', params: {id: scope.obj.artist_credit[0].artist.id }}"
|
|
/>
|
|
<a
|
|
href=""
|
|
class="discrete link"
|
|
:title="scope.obj.artist_credit[0].artist.name"
|
|
@click.prevent="addSearchToken('artist_id', scope.obj.artist_credit[0].artist.id)"
|
|
>{{ scope.obj.artist_credit[0].artist.name }}</a>
|
|
</td>
|
|
<td>
|
|
<template v-if="!scope.obj.is_local">
|
|
<Link
|
|
solid
|
|
ghost
|
|
square-small
|
|
icon="bi-wrench"
|
|
:to="{name: 'manage.moderation.domains.detail', params: {id: scope.obj.domain }}"
|
|
/>
|
|
<a
|
|
href=""
|
|
class="discrete link"
|
|
:title="scope.obj.domain"
|
|
@click.prevent="addSearchToken('domain', scope.obj.domain)"
|
|
>{{ scope.obj.domain }}</a>
|
|
</template>
|
|
<a
|
|
v-else
|
|
href=""
|
|
class="ui tiny accent icon link label"
|
|
@click.prevent="addSearchToken('domain', scope.obj.domain)"
|
|
>
|
|
<i class="bi bi-house-fill" />
|
|
{{ t('components.manage.library.TracksTable.link.local') }}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a
|
|
v-if="scope.obj.license"
|
|
href=""
|
|
class="discrete link"
|
|
:title="scope.obj.license"
|
|
@click.prevent="addSearchToken('license', scope.obj.license)"
|
|
>{{ scope.obj.license }}</a>
|
|
<span v-else>
|
|
{{ t('components.manage.library.TracksTable.notApplicable') }}
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<human-date :date="scope.obj.creation_date" />
|
|
</td>
|
|
</template>
|
|
</action-table>
|
|
<div>
|
|
<Pagination
|
|
v-if="page && result && result.count > paginateBy"
|
|
v-model:page="page"
|
|
:pages="Math.ceil(result.count / paginateBy)"
|
|
/>
|
|
|
|
<span v-if="page && result && result.results.length > 0">
|
|
{{ t('components.manage.library.TracksTable.pagination.results', { start: ((page-1) * paginateBy) + 1, end: ((page-1) * paginateBy) + result.results.length, total: result.count }) }}
|
|
</span>
|
|
</div>
|
|
</template>
|