352 lines
14 KiB
Vue
352 lines
14 KiB
Vue
<template>
|
|
<main>
|
|
<div v-if="isLoading" class="ui vertical segment">
|
|
<div :class="['ui', 'centered', 'active', 'inline', 'loader']"></div>
|
|
</div>
|
|
<template v-if="object">
|
|
<section :class="['ui', 'head', 'vertical', 'stripe', 'segment']" v-title="object.title">
|
|
<div class="ui stackable one column grid">
|
|
<div class="ui column">
|
|
<div class="segment-content">
|
|
<h2 class="ui header">
|
|
<img v-if="object.cover.original" v-lazy="$store.getters['instance/absoluteUrl'](object.cover.square_crop)">
|
|
<img v-else src="../../../assets/audio/default-cover.png">
|
|
<div class="content">
|
|
{{ object.title | truncate(100) }}
|
|
<div class="sub header">
|
|
<template v-if="object.is_local">
|
|
<span class="ui tiny teal label">
|
|
<i class="home icon"></i>
|
|
<translate translate-context="Content/Moderation/*/Short, Noun">Local</translate>
|
|
</span>
|
|
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</h2>
|
|
|
|
<template v-if="object.tags && object.tags.length > 0">
|
|
<tags-list :limit="5" detail-route="manage.library.tags.detail" :tags="object.tags"></tags-list>
|
|
<div class="ui hidden divider"></div>
|
|
</template>
|
|
|
|
<div class="header-buttons">
|
|
|
|
<div class="ui icon buttons">
|
|
<router-link class="ui labeled icon button" :to="{name: 'library.albums.detail', params: {id: object.id }}">
|
|
<i class="info icon"></i>
|
|
<translate translate-context="Content/Moderation/Link/Verb">Open local profile</translate>
|
|
</router-link>
|
|
<div class="ui floating dropdown icon button" v-dropdown>
|
|
<i class="dropdown icon"></i>
|
|
<div class="menu">
|
|
<a
|
|
v-if="$store.state.auth.profile && $store.state.auth.profile.is_superuser"
|
|
class="basic item"
|
|
:href="$store.getters['instance/absoluteUrl'](`/api/admin/music/album/${object.id}`)"
|
|
target="_blank" rel="noopener noreferrer">
|
|
<i class="wrench icon"></i>
|
|
<translate translate-context="Content/Moderation/Link/Verb">View in Django's admin</translate>
|
|
</a>
|
|
<a class="basic item" v-if="object.mbid" :href="`https://musicbrainz.org/release/${object.mbid}`" target="_blank" rel="noopener noreferrer">
|
|
<i class="external icon"></i>
|
|
<translate translate-context="Content/Moderation/Link/Verb">Open on MusicBrainz</translate>
|
|
</a>
|
|
<fetch-button @refresh="fetchData" v-if="!object.is_local" class="basic item" :url="`albums/${object.id}/fetches/`">
|
|
<i class="refresh icon"></i>
|
|
<translate translate-context="Content/Moderation/Button/Verb">Refresh from remote server</translate>
|
|
</fetch-button>
|
|
<a class="basic item" :href="object.url || object.fid" target="_blank" rel="noopener noreferrer">
|
|
<i class="external icon"></i>
|
|
<translate translate-context="Content/Moderation/Link/Verb">Open remote profile</translate>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ui buttons">
|
|
<router-link
|
|
v-if="object.is_local"
|
|
:to="{name: 'library.albums.edit', params: {id: object.id }}"
|
|
class="ui labeled icon button">
|
|
<i class="edit icon"></i>
|
|
<translate translate-context="Content/*/Button.Label/Verb">Edit</translate>
|
|
</router-link>
|
|
</div>
|
|
<div class="ui buttons">
|
|
<dangerous-button
|
|
:class="['ui', {loading: isLoading}, 'basic button']"
|
|
:action="remove">
|
|
<translate translate-context="*/*/*/Verb">Delete</translate>
|
|
<p slot="modal-header"><translate translate-context="Popup/Library/Title">Delete this album?</translate></p>
|
|
<div slot="modal-content">
|
|
<p><translate translate-context="Content/Moderation/Paragraph">The album will be removed, as well as associated uploads, tracks, favorites and listening history. This action is irreversible.</translate></p>
|
|
</div>
|
|
<p slot="modal-confirm"><translate translate-context="*/*/*/Verb">Delete</translate></p>
|
|
</dangerous-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<div class="ui vertical stripe segment">
|
|
<div class="ui stackable three column grid">
|
|
<div class="column">
|
|
<section>
|
|
<h3 class="ui header">
|
|
<i class="info icon"></i>
|
|
<div class="content">
|
|
<translate translate-context="Content/Moderation/Title">Album data</translate>
|
|
</div>
|
|
</h3>
|
|
<table class="ui very basic table">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="*/*/*/Noun">Title</translate>
|
|
</td>
|
|
<td>
|
|
{{ object.title }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<router-link :to="{name: 'manage.library.artists.detail', params: {id: object.artist.id }}">
|
|
<translate translate-context="*/*/*/Noun">Artist</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ object.artist.name }}
|
|
</td>
|
|
</tr>
|
|
<tr v-if="!object.is_local">
|
|
<td>
|
|
<router-link :to="{name: 'manage.moderation.domains.detail', params: {id: object.domain }}">
|
|
<translate translate-context="Content/Moderation/*/Noun">Domain</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ object.domain }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</div>
|
|
<div class="column">
|
|
<section>
|
|
<h3 class="ui header">
|
|
<i class="feed icon"></i>
|
|
<div class="content">
|
|
<translate translate-context="Content/Moderation/Title">Activity</translate>
|
|
<span :data-tooltip="labels.statsWarning"><i class="question circle icon"></i></span>
|
|
|
|
</div>
|
|
</h3>
|
|
<div v-if="isLoadingStats" class="ui placeholder">
|
|
<div class="full line"></div>
|
|
<div class="short line"></div>
|
|
<div class="medium line"></div>
|
|
<div class="long line"></div>
|
|
</div>
|
|
<table v-else class="ui very basic table">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="Content/Moderation/Table.Label/Short (Value is a date)">First seen</translate>
|
|
</td>
|
|
<td>
|
|
<human-date :date="object.creation_date"></human-date>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="*/*/*/Noun">Listenings</translate>
|
|
</td>
|
|
<td>
|
|
{{ stats.listenings }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="*/*/*">Favorited tracks</translate>
|
|
</td>
|
|
<td>
|
|
{{ stats.track_favorites }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="*/*/*">Playlists</translate>
|
|
</td>
|
|
<td>
|
|
{{ stats.playlists }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<router-link :to="{name: 'manage.moderation.reports.list', query: {q: getQuery('target', `album:${object.id}`) }}">
|
|
<translate translate-context="Content/Moderation/Table.Label/Noun">Linked reports</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ stats.reports }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<router-link :to="{name: 'manage.library.edits', query: {q: getQuery('target', 'album ' + object.id)}}">
|
|
<translate translate-context="*/Admin/*/Noun">Edits</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ stats.mutations }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</div>
|
|
<div class="column">
|
|
<section>
|
|
<h3 class="ui header">
|
|
<i class="music icon"></i>
|
|
<div class="content">
|
|
<translate translate-context="Content/Moderation/Title">Audio content</translate>
|
|
<span :data-tooltip="labels.statsWarning"><i class="question circle icon"></i></span>
|
|
|
|
</div>
|
|
</h3>
|
|
<div v-if="isLoadingStats" class="ui placeholder">
|
|
<div class="full line"></div>
|
|
<div class="short line"></div>
|
|
<div class="medium line"></div>
|
|
<div class="long line"></div>
|
|
</div>
|
|
<table v-else class="ui very basic table">
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="Content/Moderation/Table.Label/Noun">Cached size</translate>
|
|
</td>
|
|
<td>
|
|
{{ stats.media_downloaded_size | humanSize }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<translate translate-context="Content/Moderation/Table.Label">Total size</translate>
|
|
</td>
|
|
<td>
|
|
{{ stats.media_total_size | humanSize }}
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<router-link :to="{name: 'manage.library.libraries', query: {q: getQuery('album_id', object.id) }}">
|
|
<translate translate-context="*/*/*/Noun">Libraries</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ stats.libraries }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<router-link :to="{name: 'manage.library.uploads', query: {q: getQuery('album_id', object.id) }}">
|
|
<translate translate-context="*/*/*">Uploads</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ stats.uploads }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<router-link :to="{name: 'manage.library.tracks', query: {q: getQuery('album_id', object.id) }}">
|
|
<translate translate-context="*/*/*">Tracks</translate>
|
|
</router-link>
|
|
</td>
|
|
<td>
|
|
{{ object.tracks.length }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import axios from "axios"
|
|
import logger from "@/logging"
|
|
import FetchButton from "@/components/federation/FetchButton"
|
|
import TagsList from "@/components/tags/List"
|
|
|
|
export default {
|
|
props: ["id"],
|
|
components: {
|
|
FetchButton,
|
|
TagsList
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: true,
|
|
isLoadingStats: false,
|
|
object: null,
|
|
stats: null,
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
this.fetchStats()
|
|
},
|
|
methods: {
|
|
fetchData() {
|
|
var self = this
|
|
this.isLoading = true
|
|
let url = `manage/library/albums/${this.id}/`
|
|
axios.get(url).then(response => {
|
|
self.object = response.data
|
|
self.isLoading = false
|
|
})
|
|
},
|
|
fetchStats() {
|
|
var self = this
|
|
this.isLoadingStats = true
|
|
let url = `manage/library/albums/${this.id}/stats/`
|
|
axios.get(url).then(response => {
|
|
self.stats = response.data
|
|
self.isLoadingStats = false
|
|
})
|
|
},
|
|
remove () {
|
|
var self = this
|
|
this.isLoading = true
|
|
let url = `manage/library/albums/${this.id}/`
|
|
axios.delete(url).then(response => {
|
|
self.$router.push({name: 'manage.library.albums'})
|
|
})
|
|
},
|
|
getQuery (field, value) {
|
|
return `${field}:"${value}"`
|
|
}
|
|
},
|
|
computed: {
|
|
labels() {
|
|
return {
|
|
statsWarning: this.$pgettext('Content/Moderation/Help text', 'Statistics are computed from known activity and content on your instance, and do not reflect general activity for this object'),
|
|
}
|
|
},
|
|
}
|
|
}
|
|
</script>
|